2021-05-16 22:43:10 +00:00
|
|
|
#include "../dispatch.h"
|
|
|
|
|
|
|
|
#include "genesis.h"
|
|
|
|
|
|
|
|
class DivPlatformGenesisExt: public DivPlatformGenesis {
|
2021-05-18 21:02:49 +00:00
|
|
|
struct OpChannel {
|
2021-05-17 01:49:54 +00:00
|
|
|
unsigned char freqH, freqL;
|
|
|
|
int freq, baseFreq, pitch;
|
|
|
|
unsigned char ins;
|
|
|
|
signed char konCycles;
|
2021-05-19 19:39:39 +00:00
|
|
|
bool active, insChanged, freqChanged, keyOn, keyOff, portaPause;
|
2021-05-18 21:02:49 +00:00
|
|
|
int vol;
|
2021-05-17 01:49:54 +00:00
|
|
|
unsigned char pan;
|
2021-05-19 19:39:39 +00:00
|
|
|
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) {}
|
2021-05-17 01:49:54 +00:00
|
|
|
};
|
2021-05-18 21:02:49 +00:00
|
|
|
OpChannel opChan[4];
|
2021-12-18 08:25:42 +00:00
|
|
|
bool isOpMuted[4];
|
2021-05-16 22:43:10 +00:00
|
|
|
public:
|
|
|
|
int dispatch(DivCommand c);
|
2021-12-11 18:14:38 +00:00
|
|
|
void reset();
|
2021-12-21 06:29:07 +00:00
|
|
|
void forceIns();
|
2021-05-16 22:43:10 +00:00
|
|
|
void tick();
|
2021-12-18 08:25:42 +00:00
|
|
|
void muteChannel(int ch, bool mute);
|
2021-12-08 05:33:00 +00:00
|
|
|
bool keyOffAffectsArp(int ch);
|
2021-12-29 07:08:50 +00:00
|
|
|
bool keyOffAffectsPorta(int ch);
|
2021-12-08 06:56:40 +00:00
|
|
|
int init(DivEngine* parent, int channels, int sugRate, bool pal);
|
2021-12-15 05:37:27 +00:00
|
|
|
void quit();
|
|
|
|
~DivPlatformGenesisExt();
|
2021-05-16 22:43:10 +00:00
|
|
|
};
|