mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 22:11:09 +00:00
a8de4fc2da
everything that was new for XP. - Swapped snes_spc out for the full Game Music Emu library. SVN r1631 (trunk)
47 lines
902 B
C++
47 lines
902 B
C++
#include "critsec.h"
|
|
#include "muslib.h"
|
|
|
|
class OPLmusicBlock : public musicBlock
|
|
{
|
|
public:
|
|
OPLmusicBlock();
|
|
virtual ~OPLmusicBlock();
|
|
|
|
bool ServiceStream(void *buff, int numbytes);
|
|
void ResetChips();
|
|
|
|
virtual void Restart();
|
|
|
|
protected:
|
|
virtual int PlayTick() = 0;
|
|
void OffsetSamples(float *buff, int count);
|
|
|
|
double NextTickIn;
|
|
double SamplesPerTick;
|
|
bool TwoChips;
|
|
bool Looping;
|
|
double LastOffset;
|
|
|
|
FCriticalSection ChipAccess;
|
|
};
|
|
|
|
class OPLmusicFile : public OPLmusicBlock
|
|
{
|
|
public:
|
|
OPLmusicFile(FILE *file, BYTE *musiccache, int len);
|
|
OPLmusicFile(const OPLmusicFile *source, const char *filename);
|
|
virtual ~OPLmusicFile();
|
|
|
|
bool IsValid() const;
|
|
void SetLooping(bool loop);
|
|
void Restart();
|
|
void Dump();
|
|
|
|
protected:
|
|
OPLmusicFile() {}
|
|
int PlayTick();
|
|
|
|
enum { RDosPlay, IMF, DosBox } RawPlayer;
|
|
int ScoreLen;
|
|
int WhichChip;
|
|
};
|