2021-12-14 14:31:57 -05:00
|
|
|
#include "../dispatch.h"
|
|
|
|
|
|
|
|
#include "ym2610.h"
|
|
|
|
|
|
|
|
class DivPlatformYM2610Ext: public DivPlatformYM2610 {
|
|
|
|
struct OpChannel {
|
2022-01-23 13:19:19 -05:00
|
|
|
DivMacroInt std;
|
2021-12-14 14:31:57 -05:00
|
|
|
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 03:25:42 -05:00
|
|
|
bool isOpMuted[4];
|
2022-01-27 00:29:16 -05:00
|
|
|
friend void putDispatchChan(void*,int,int);
|
2021-12-14 14:31:57 -05:00
|
|
|
public:
|
|
|
|
int dispatch(DivCommand c);
|
2022-01-27 00:29:16 -05:00
|
|
|
void* getChanState(int chan);
|
2021-12-14 14:31:57 -05:00
|
|
|
void reset();
|
2021-12-21 01:29:07 -05:00
|
|
|
void forceIns();
|
2021-12-14 14:31:57 -05:00
|
|
|
void tick();
|
2021-12-18 03:25:42 -05:00
|
|
|
void muteChannel(int ch, bool mute);
|
2021-12-14 14:31:57 -05:00
|
|
|
bool keyOffAffectsArp(int ch);
|
2022-01-17 23:59:52 -05:00
|
|
|
void notifyInsChange(int ins);
|
2022-01-28 12:59:53 -05:00
|
|
|
int init(DivEngine* parent, int channels, int sugRate, unsigned int flags);
|
2021-12-15 00:37:27 -05:00
|
|
|
void quit();
|
|
|
|
~DivPlatformYM2610Ext();
|
2021-12-14 14:31:57 -05:00
|
|
|
};
|