2021-12-05 04:55:28 +00:00
|
|
|
#ifndef _C64_H
|
|
|
|
#define _C64_H
|
|
|
|
|
|
|
|
#include "../dispatch.h"
|
|
|
|
#include "../macroInt.h"
|
|
|
|
#include "sound/c64/sid.h"
|
|
|
|
|
|
|
|
class DivPlatformC64: public DivDispatch {
|
|
|
|
struct Channel {
|
2021-12-07 06:23:57 +00:00
|
|
|
int freq, baseFreq, pitch, prevFreq, testWhen, note;
|
|
|
|
unsigned char ins, sweep, wave, attack, decay, sustain, release;
|
2021-12-05 21:45:29 +00:00
|
|
|
short duty;
|
2021-12-07 06:23:57 +00:00
|
|
|
bool active, insChanged, freqChanged, sweepChanged, keyOn, keyOff, inPorta, filter;
|
|
|
|
bool resetMask, resetFilter, resetDuty, ring, sync;
|
2021-12-05 21:45:29 +00:00
|
|
|
signed char vol, outVol;
|
2021-12-05 04:55:28 +00:00
|
|
|
DivMacroInt std;
|
|
|
|
Channel():
|
|
|
|
freq(0),
|
|
|
|
baseFreq(0),
|
|
|
|
pitch(0),
|
|
|
|
prevFreq(65535),
|
2021-12-05 21:11:12 +00:00
|
|
|
testWhen(0),
|
2021-12-05 04:55:28 +00:00
|
|
|
note(0),
|
2021-12-07 06:23:57 +00:00
|
|
|
ins(-1),
|
2021-12-05 04:55:28 +00:00
|
|
|
sweep(0),
|
2021-12-05 21:45:29 +00:00
|
|
|
wave(0),
|
2021-12-07 06:23:57 +00:00
|
|
|
attack(0),
|
|
|
|
decay(0),
|
|
|
|
sustain(0),
|
|
|
|
release(0),
|
2021-12-05 21:45:29 +00:00
|
|
|
duty(0),
|
2021-12-05 04:55:28 +00:00
|
|
|
active(false),
|
|
|
|
insChanged(true),
|
|
|
|
freqChanged(false),
|
|
|
|
sweepChanged(false),
|
|
|
|
keyOn(false),
|
|
|
|
keyOff(false),
|
|
|
|
inPorta(false),
|
2021-12-07 06:23:57 +00:00
|
|
|
filter(false),
|
|
|
|
resetMask(false),
|
|
|
|
resetFilter(false),
|
|
|
|
resetDuty(false),
|
|
|
|
ring(false),
|
|
|
|
sync(false),
|
2021-12-05 21:45:29 +00:00
|
|
|
vol(15) {}
|
2021-12-05 04:55:28 +00:00
|
|
|
};
|
|
|
|
Channel chan[3];
|
2021-12-18 08:25:42 +00:00
|
|
|
bool isMuted[3];
|
2021-12-05 04:55:28 +00:00
|
|
|
|
2021-12-07 06:23:57 +00:00
|
|
|
unsigned char filtControl, filtRes, vol;
|
|
|
|
int filtCut, resetTime;
|
|
|
|
|
2021-12-05 04:55:28 +00:00
|
|
|
SID sid;
|
|
|
|
|
2021-12-07 06:23:57 +00:00
|
|
|
void updateFilter();
|
2021-12-05 04:55:28 +00:00
|
|
|
public:
|
2021-12-06 21:51:18 +00:00
|
|
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
2021-12-05 04:55:28 +00:00
|
|
|
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-12-05 04:55:28 +00:00
|
|
|
void tick();
|
2021-12-18 08:25:42 +00:00
|
|
|
void muteChannel(int ch, bool mute);
|
2021-12-15 22:32:08 +00:00
|
|
|
void setPAL(bool pal);
|
2021-12-08 06:56:40 +00:00
|
|
|
int init(DivEngine* parent, int channels, int sugRate, bool pal);
|
2021-12-05 04:55:28 +00:00
|
|
|
void setChipModel(bool is6581);
|
2021-12-15 05:37:27 +00:00
|
|
|
void quit();
|
|
|
|
~DivPlatformC64();
|
2021-12-05 04:55:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|