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