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"
|
2022-12-11 21:46:25 +00:00
|
|
|
#include <queue>
|
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 {
|
2022-12-13 07:22:48 +00:00
|
|
|
struct Channel: public SharedChannel<signed char> {
|
2022-12-04 10:58:58 +00:00
|
|
|
int prevFreq, testWhen;
|
2022-04-25 23:58:17 +00:00
|
|
|
unsigned char sweep, wave, attack, decay, sustain, release;
|
2021-12-05 21:45:29 +00:00
|
|
|
short duty;
|
2022-12-04 10:58:58 +00:00
|
|
|
bool sweepChanged, filter;
|
2022-04-28 04:54:45 +00:00
|
|
|
bool resetMask, resetFilter, resetDuty, ring, sync, test;
|
2021-12-05 04:55:28 +00:00
|
|
|
Channel():
|
2022-12-13 07:22:48 +00:00
|
|
|
SharedChannel<signed char>(15),
|
2021-12-05 04:55:28 +00:00
|
|
|
prevFreq(65535),
|
2021-12-05 21:11:12 +00:00
|
|
|
testWhen(0),
|
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
|
|
|
sweepChanged(false),
|
2021-12-07 06:23:57 +00:00
|
|
|
filter(false),
|
|
|
|
resetMask(false),
|
|
|
|
resetFilter(false),
|
|
|
|
resetDuty(false),
|
|
|
|
ring(false),
|
|
|
|
sync(false),
|
2022-12-04 10:58:58 +00:00
|
|
|
test(false) {}
|
2021-12-05 04:55:28 +00:00
|
|
|
};
|
|
|
|
Channel chan[3];
|
2022-04-30 19:36:12 +00:00
|
|
|
DivDispatchOscBuffer* oscBuf[3];
|
2021-12-18 08:25:42 +00:00
|
|
|
bool isMuted[3];
|
2022-12-11 21:46:25 +00:00
|
|
|
struct QueuedWrite {
|
|
|
|
unsigned char addr;
|
|
|
|
unsigned char val;
|
|
|
|
QueuedWrite(unsigned char a, unsigned char v): addr(a), val(v) {}
|
|
|
|
};
|
|
|
|
std::queue<QueuedWrite> writes;
|
2021-12-05 04:55:28 +00:00
|
|
|
|
2021-12-07 06:23:57 +00:00
|
|
|
unsigned char filtControl, filtRes, vol;
|
2022-04-30 19:36:12 +00:00
|
|
|
unsigned char writeOscBuf;
|
2023-07-05 22:09:02 +00:00
|
|
|
unsigned char sidCore;
|
2021-12-07 06:23:57 +00:00
|
|
|
int filtCut, resetTime;
|
|
|
|
|
2023-07-05 22:09:02 +00:00
|
|
|
bool keyPriority, sidIs6581;
|
2023-07-04 05:23:28 +00:00
|
|
|
unsigned char chanOrder[3];
|
|
|
|
unsigned char testAD, testSR;
|
|
|
|
|
2021-12-05 04:55:28 +00:00
|
|
|
SID sid;
|
2022-08-29 08:26:49 +00:00
|
|
|
reSIDfp::SID sid_fp;
|
2023-07-05 22:09:02 +00:00
|
|
|
struct SID_chip* sid_d;
|
2022-02-22 03:31:27 +00:00
|
|
|
unsigned char regPool[32];
|
2022-09-23 14:24:02 +00:00
|
|
|
|
|
|
|
friend void putDispatchChip(void*,int);
|
2022-01-27 05:29:16 +00:00
|
|
|
friend void putDispatchChan(void*,int,int);
|
|
|
|
|
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);
|
|
|
|
|
2021-12-07 06:23:57 +00:00
|
|
|
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);
|
2022-04-30 19:36:12 +00:00
|
|
|
DivDispatchOscBuffer* getOscBuffer(int chan);
|
2022-02-22 03:31:27 +00:00
|
|
|
unsigned char* getRegisterPool();
|
|
|
|
int getRegisterPoolSize();
|
2021-12-11 18:14:38 +00:00
|
|
|
void reset();
|
2021-12-21 06:29:07 +00:00
|
|
|
void forceIns();
|
2022-04-15 20:01:11 +00:00
|
|
|
void tick(bool sysTick=true);
|
2021-12-18 08:25:42 +00:00
|
|
|
void muteChannel(int ch, bool mute);
|
2022-09-30 01:13:40 +00:00
|
|
|
void setFlags(const DivConfig& flags);
|
2022-01-18 04:59:52 +00:00
|
|
|
void notifyInsChange(int ins);
|
2022-04-15 06:20:09 +00:00
|
|
|
bool getDCOffRequired();
|
2022-08-03 21:21:30 +00:00
|
|
|
bool getWantPreNote();
|
2022-08-29 08:26:49 +00:00
|
|
|
float getPostAmp();
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* getChanMacroInt(int ch);
|
2022-01-14 00:36:02 +00:00
|
|
|
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();
|
2022-09-30 01:13:40 +00:00
|
|
|
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);
|
2021-12-15 05:37:27 +00:00
|
|
|
void quit();
|
|
|
|
~DivPlatformC64();
|
2021-12-05 04:55:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|