furnace/src/engine/platform/c64.h

122 lines
3.6 KiB
C
Raw Normal View History

2022-02-15 03:12:20 +00:00
/**
* Furnace Tracker - multi-system chiptune tracker
2023-01-20 00:18:40 +00:00
* Copyright (C) 2021-2023 tildearrow and contributors
2022-02-15 03:12:20 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2021-12-05 04:55:28 +00:00
#ifndef _C64_H
#define _C64_H
#include "../dispatch.h"
2023-07-13 09:09:20 +00:00
#include "../fixedQueue.h"
2021-12-05 04:55:28 +00:00
#include "sound/c64/sid.h"
2022-08-29 08:26:49 +00:00
#include "sound/c64_fp/SID.h"
2023-07-05 22:09:02 +00:00
#include "sound/c64_d/dsid.h"
2021-12-05 04:55:28 +00:00
class DivPlatformC64: public DivDispatch {
struct Channel: public SharedChannel<signed char> {
int prevFreq, testWhen;
unsigned char sweep, wave, attack, decay, sustain, release;
2021-12-05 21:45:29 +00:00
short duty;
bool sweepChanged, filter;
bool resetMask, resetFilter, resetDuty, ring, sync, test;
2021-12-05 04:55:28 +00:00
Channel():
SharedChannel<signed char>(15),
2021-12-05 04:55:28 +00:00
prevFreq(65535),
testWhen(0),
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
sweepChanged(false),
filter(false),
resetMask(false),
resetFilter(false),
resetDuty(false),
ring(false),
sync(false),
test(false) {}
2021-12-05 04:55:28 +00:00
};
Channel chan[3];
DivDispatchOscBuffer* oscBuf[3];
2021-12-18 08:25:42 +00:00
bool isMuted[3];
2023-07-11 23:11:48 +00:00
float fakeLow[3];
float fakeBand[3];
2023-07-11 22:21:51 +00:00
float fakeCutTable[2048];
struct QueuedWrite {
unsigned char addr;
unsigned char val;
2023-07-13 09:09:20 +00:00
QueuedWrite(): addr(0), val(0) {}
QueuedWrite(unsigned char a, unsigned char v): addr(a), val(v) {}
};
2023-07-13 09:09:20 +00:00
FixedQueue<QueuedWrite,128> writes;
2021-12-05 04:55:28 +00:00
unsigned char filtControl, filtRes, vol;
unsigned char writeOscBuf;
2023-07-05 22:09:02 +00:00
unsigned char sidCore;
int filtCut, resetTime;
2023-07-06 01:12:08 +00:00
bool keyPriority, sidIs6581, needInitTables;
unsigned char chanOrder[3];
unsigned char testAD, testSR;
2023-07-06 01:31:31 +00:00
SID* sid;
reSIDfp::SID* sid_fp;
2023-07-05 22:09:02 +00:00
struct SID_chip* sid_d;
unsigned char regPool[32];
friend void putDispatchChip(void*,int);
2022-01-27 05:29:16 +00:00
friend void putDispatchChan(void*,int,int);
2023-07-11 23:11:48 +00:00
inline short runFakeFilter(unsigned char ch, int in);
2022-08-29 08:26:49 +00:00
void acquire_classic(short* bufL, short* bufR, size_t start, size_t len);
void acquire_fp(short* bufL, short* bufR, size_t start, size_t len);
void updateFilter();
2021-12-05 04:55:28 +00:00
public:
2023-01-02 09:53:37 +00:00
void acquire(short** buf, size_t len);
2021-12-05 04:55:28 +00:00
int dispatch(DivCommand c);
2022-01-27 05:29:16 +00:00
void* getChanState(int chan);
DivDispatchOscBuffer* getOscBuffer(int chan);
unsigned char* getRegisterPool();
int getRegisterPoolSize();
2021-12-11 18:14:38 +00:00
void reset();
void forceIns();
void tick(bool sysTick=true);
2021-12-18 08:25:42 +00:00
void muteChannel(int ch, bool mute);
void setFlags(const DivConfig& flags);
2022-01-18 04:59:52 +00:00
void notifyInsChange(int ins);
bool getDCOffRequired();
bool getWantPreNote();
2022-08-29 08:26:49 +00:00
float getPostAmp();
DivMacroInt* getChanMacroInt(int ch);
void notifyInsDeletion(void* ins);
2022-02-01 23:08:19 +00:00
void poke(unsigned int addr, unsigned short val);
void poke(std::vector<DivRegWrite>& wlist);
2022-02-03 23:38:57 +00:00
const char** getRegisterSheet();
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
2021-12-05 04:55:28 +00:00
void setChipModel(bool is6581);
2023-07-05 22:09:02 +00:00
void setCore(unsigned char which);
void quit();
~DivPlatformC64();
2021-12-05 04:55:28 +00:00
};
#endif