mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-07 05:15:05 +00:00
dc5990a37e
fixes forest frolick, professional tracker, YZYX, Monday (kinda), MasterTracker and Ice Fields
29 lines
921 B
C++
29 lines
921 B
C++
#include "../dispatch.h"
|
|
|
|
#include "genesis.h"
|
|
|
|
class DivPlatformGenesisExt: public DivPlatformGenesis {
|
|
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];
|
|
bool isOpMuted[4];
|
|
public:
|
|
int dispatch(DivCommand c);
|
|
void reset();
|
|
void forceIns();
|
|
void tick();
|
|
void muteChannel(int ch, bool mute);
|
|
bool keyOffAffectsArp(int ch);
|
|
bool keyOffAffectsPorta(int ch);
|
|
int init(DivEngine* parent, int channels, int sugRate, bool pal);
|
|
void quit();
|
|
~DivPlatformGenesisExt();
|
|
};
|