furnace/src/engine/platform/c64.h

65 lines
1.4 KiB
C
Raw Normal View History

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 {
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;
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),
testWhen(0),
2021-12-05 04:55:28 +00:00
note(0),
ins(-1),
2021-12-05 04:55:28 +00:00
sweep(0),
2021-12-05 21:45:29 +00:00
wave(0),
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),
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];
unsigned char filtControl, filtRes, vol;
int filtCut, resetTime;
2021-12-05 04:55:28 +00:00
SID sid;
void updateFilter();
2021-12-05 04:55:28 +00:00
public:
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-05 04:55:28 +00:00
void tick();
int init(DivEngine* parent, int channels, int sugRate, bool pal);
2021-12-05 04:55:28 +00:00
void setChipModel(bool is6581);
};
#endif