mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-11 13:01:19 +00:00
53 lines
940 B
C++
53 lines
940 B
C++
#include "critsec.h"
|
|
#include "musicblock.h"
|
|
|
|
class FileReader;
|
|
|
|
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);
|
|
|
|
uint8_t *score;
|
|
uint8_t *scoredata;
|
|
int playingcount;
|
|
double NextTickIn;
|
|
double SamplesPerTick;
|
|
int NumChips;
|
|
bool Looping;
|
|
double LastOffset;
|
|
bool FullPan;
|
|
|
|
FCriticalSection ChipAccess;
|
|
};
|
|
|
|
class OPLmusicFile : public OPLmusicBlock
|
|
{
|
|
public:
|
|
OPLmusicFile(FileReader *reader);
|
|
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, DosBox1, DosBox2 } RawPlayer;
|
|
int ScoreLen;
|
|
int WhichChip;
|
|
};
|