furnace/src/engine/platform/c64.h

149 lines
4.3 KiB
C
Raw Normal View History

2022-02-14 22:12:20 -05:00
/**
* Furnace Tracker - multi-system chiptune tracker
2025-01-28 18:49:19 -05:00
* Copyright (C) 2021-2025 tildearrow and contributors
2022-02-14 22:12:20 -05: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-04 23:55:28 -05:00
#ifndef _C64_H
#define _C64_H
#include "../dispatch.h"
2023-09-13 03:46:02 -04:00
#include "../../fixedQueue.h"
2021-12-04 23:55:28 -05:00
#include "sound/c64/sid.h"
2022-08-29 04:26:49 -04:00
#include "sound/c64_fp/SID.h"
2023-07-05 18:09:02 -04:00
#include "sound/c64_d/dsid.h"
2021-12-04 23:55:28 -05:00
// TODO:
// - ex3 (special) unify with ex4 (gate/test)
// - ex4 (test) compatibility
2021-12-04 23:55:28 -05:00
class DivPlatformC64: public DivDispatch {
struct Channel: public SharedChannel<signed char> {
int prevFreq, testWhen;
unsigned int audPos;
int pcmPos, sample, pcmPeriod, pcmRate, pcmOut;
unsigned char sweep, wave, attack, decay, sustain, release;
2021-12-05 16:45:29 -05:00
short duty;
2025-01-28 04:59:12 -05:00
bool sweepChanged, filter, setPos, pcm;
bool resetMask, resetFilter, resetDuty, gate, ring, sync, test;
short pw_slide;
2021-12-04 23:55:28 -05:00
Channel():
SharedChannel<signed char>(15),
2021-12-04 23:55:28 -05:00
prevFreq(65535),
testWhen(0),
2025-01-28 04:59:12 -05:00
audPos(0),
pcmPos(0),
sample(-1),
pcmPeriod(0),
pcmRate(0),
pcmOut(15),
2021-12-04 23:55:28 -05:00
sweep(0),
2021-12-05 16:45:29 -05:00
wave(0),
attack(0),
decay(0),
sustain(0),
release(0),
2021-12-05 16:45:29 -05:00
duty(0),
2021-12-04 23:55:28 -05:00
sweepChanged(false),
filter(false),
2025-01-28 04:59:12 -05:00
setPos(false),
pcm(false),
resetMask(false),
resetFilter(false),
resetDuty(false),
gate(true),
ring(false),
sync(false),
test(false),
pw_slide(0) {}
2021-12-04 23:55:28 -05:00
};
2025-01-28 04:59:12 -05:00
Channel chan[4];
DivDispatchOscBuffer* oscBuf[4];
bool isMuted[4];
float fakeLow[4];
float fakeBand[4];
2023-07-11 18:21:51 -04:00
float fakeCutTable[2048];
struct QueuedWrite {
unsigned char addr;
unsigned char val;
2023-07-13 05:09:20 -04:00
QueuedWrite(): addr(0), val(0) {}
QueuedWrite(unsigned char a, unsigned char v): addr(a), val(v) {}
};
2023-07-13 05:09:20 -04:00
FixedQueue<QueuedWrite,128> writes;
2021-12-04 23:55:28 -05:00
unsigned char filtControl, filtRes, vol;
unsigned char writeOscBuf;
2023-07-05 18:09:02 -04:00
unsigned char sidCore;
int filtCut, resetTime, initResetTime;
int pcmCycle, lineRate;
short cutoff_slide;
2025-02-05 04:10:16 -05:00
bool keyPriority, sidIs6581, needInitTables, no1EUpdate, multiplyRel, macroRace, noSoftPCM;
unsigned char chanOrder[3];
unsigned char testAD, testSR;
2023-07-05 21:31:31 -04:00
SID* sid;
reSIDfp::SID* sid_fp;
2023-07-05 18:09:02 -04:00
struct SID_chip* sid_d;
int coreQuality;
unsigned char regPool[32];
friend void putDispatchChip(void*,int);
2022-01-27 00:29:16 -05:00
friend void putDispatchChan(void*,int,int);
2023-07-11 19:11:48 -04:00
inline short runFakeFilter(unsigned char ch, int in);
void processDAC(int sRate);
2022-08-29 04:26:49 -04: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();
void updateVolume();
2021-12-04 23:55:28 -05:00
public:
2023-01-02 04:53:37 -05:00
void acquire(short** buf, size_t len);
2021-12-04 23:55:28 -05:00
int dispatch(DivCommand c);
2022-01-27 00:29:16 -05:00
void* getChanState(int chan);
DivDispatchOscBuffer* getOscBuffer(int chan);
unsigned char* getRegisterPool();
int getRegisterPoolSize();
2021-12-11 13:14:38 -05:00
void reset();
void forceIns();
void tick(bool sysTick=true);
2021-12-18 03:25:42 -05:00
void muteChannel(int ch, bool mute);
void setFlags(const DivConfig& flags);
2022-01-17 23:59:52 -05:00
void notifyInsChange(int ins);
bool getDCOffRequired();
bool getWantPreNote();
bool isVolGlobal();
2022-08-29 04:26:49 -04:00
float getPostAmp();
DivMacroInt* getChanMacroInt(int ch);
2024-08-14 15:09:07 -04:00
void getPaired(int ch, std::vector<DivChannelPair>& ret);
2023-10-29 03:25:35 -04:00
DivChannelModeHints getModeHints(int chan);
void notifyInsDeletion(void* ins);
2022-02-01 18:08:19 -05:00
void poke(unsigned int addr, unsigned short val);
void poke(std::vector<DivRegWrite>& wlist);
2022-02-03 18:38:57 -05:00
const char** getRegisterSheet();
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
2021-12-04 23:55:28 -05:00
void setChipModel(bool is6581);
2023-07-05 18:09:02 -04:00
void setCore(unsigned char which);
void setCoreQuality(unsigned char q);
2025-02-05 04:10:16 -05:00
void setSoftPCM(bool isSoft);
void quit();
~DivPlatformC64();
2021-12-04 23:55:28 -05:00
};
#endif