furnace/src/engine/platform/nes.h

106 lines
3.2 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 _NES_H
#define _NES_H
2021-12-04 06:19:54 +00:00
#include "../dispatch.h"
#include "sound/nes_nsfplay/nes_apu.h"
2021-12-04 06:19:54 +00:00
class DivPlatformNES: public DivDispatch {
struct Channel: public SharedChannel<signed char> {
int prevFreq;
unsigned char duty, sweep, envMode, len;
bool sweepChanged, furnaceDac;
2021-12-04 06:19:54 +00:00
Channel():
SharedChannel<signed char>(15),
2021-12-04 07:19:14 +00:00
prevFreq(65535),
2021-12-04 06:19:54 +00:00
duty(0),
2022-02-01 23:28:48 +00:00
sweep(8),
envMode(3),
len(0x1f),
2021-12-04 06:19:54 +00:00
sweepChanged(false),
2022-12-13 18:23:48 +00:00
furnaceDac(false) {}
2021-12-04 06:19:54 +00:00
};
Channel chan[5];
DivDispatchOscBuffer* oscBuf[5];
2021-12-18 08:25:42 +00:00
bool isMuted[5];
2021-12-14 17:33:26 +00:00
int dacPeriod, dacRate;
2022-04-09 23:25:25 +00:00
unsigned int dacPos, dacAntiClick;
2021-12-14 17:33:26 +00:00
int dacSample;
unsigned char* dpcmMem;
size_t dpcmMemLen;
bool sampleLoaded[256];
unsigned char dpcmBank;
2021-12-14 17:33:26 +00:00
unsigned char sampleBank;
unsigned char writeOscBuf;
2022-01-26 21:07:55 +00:00
unsigned char apuType;
bool dpcmMode;
2022-04-09 23:25:25 +00:00
bool dacAntiClickOn;
bool useNP;
2022-09-22 23:43:48 +00:00
bool goingToLoop;
bool countMode;
struct NESAPU* nes;
xgm::NES_APU* nes1_NP;
xgm::NES_DMC* nes2_NP;
unsigned char regPool[128];
unsigned int sampleOffDPCM[256];
2021-12-04 06:19:54 +00:00
friend void putDispatchChip(void*,int);
2022-01-27 05:29:16 +00:00
friend void putDispatchChan(void*,int,int);
void doWrite(unsigned short addr, unsigned char data);
2022-05-02 08:42:40 +00:00
unsigned char calcDPCMRate(int inRate);
2023-01-03 06:09:46 +00:00
void acquire_puNES(short** buf, size_t len);
void acquire_NSFPlay(short** buf, size_t len);
2021-12-04 06:19:54 +00:00
public:
2023-01-02 09:53:37 +00:00
void acquire(short** buf, size_t len);
2021-12-04 06:19:54 +00:00
int dispatch(DivCommand c);
2022-01-27 05:29:16 +00:00
void* getChanState(int chan);
DivMacroInt* getChanMacroInt(int ch);
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);
2021-12-08 05:33:00 +00:00
bool keyOffAffectsArp(int ch);
2022-04-09 23:25:25 +00:00
float getPostAmp();
2022-05-02 07:12:14 +00:00
unsigned char readDMC(unsigned short addr);
void setNSFPlay(bool use);
void setFlags(const DivConfig& flags);
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();
const void* getSampleMem(int index);
size_t getSampleMemCapacity(int index);
size_t getSampleMemUsage(int index);
bool isSampleLoaded(int index, int sample);
void renderSamples(int chipID);
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
void quit();
~DivPlatformNES();
2021-12-04 06:19:54 +00:00
};
#endif