furnace/src/engine/platform/ym2610ext.h

29 lines
880 B
C
Raw Normal View History

2021-12-14 19:31:57 +00:00
#include "../dispatch.h"
#include "ym2610.h"
class DivPlatformYM2610Ext: public DivPlatformYM2610 {
struct OpChannel {
unsigned char freqH, freqL;
int freq, baseFreq, pitch;
unsigned char ins;
signed char konCycles;
bool active, insChanged, freqChanged, keyOn, keyOff, portaPause;
int vol;
unsigned char pan;
OpChannel(): freqH(0), freqL(0), freq(0), baseFreq(0), pitch(0), ins(-1), active(false), insChanged(true), freqChanged(false), keyOn(false), keyOff(false), portaPause(false), vol(0), pan(3) {}
};
OpChannel opChan[4];
2021-12-18 08:25:42 +00:00
bool isOpMuted[4];
2021-12-14 19:31:57 +00:00
public:
int dispatch(DivCommand c);
void reset();
void forceIns();
2021-12-14 19:31:57 +00:00
void tick();
2021-12-18 08:25:42 +00:00
void muteChannel(int ch, bool mute);
2021-12-14 19:31:57 +00:00
bool keyOffAffectsArp(int ch);
int init(DivEngine* parent, int channels, int sugRate, bool pal);
void quit();
~DivPlatformYM2610Ext();
2021-12-14 19:31:57 +00:00
};