furnace/src/engine/platform/nes.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
* Copyright (C) 2021-2022 tildearrow and contributors
*
* 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 "../macroInt.h"
#include "sound/nes_nsfplay/nes_apu.h"
2021-12-04 06:19:54 +00:00
class DivPlatformNES: public DivDispatch {
struct Channel {
2022-04-28 05:50:09 +00:00
int freq, baseFreq, pitch, pitch2, prevFreq, note, ins;
unsigned char duty, sweep;
bool active, insChanged, freqChanged, sweepChanged, keyOn, keyOff, inPorta, furnaceDac;
2021-12-04 06:19:54 +00:00
signed char vol, outVol, wave;
DivMacroInt std;
2022-04-28 06:31:16 +00:00
void macroInit(DivInstrument* which) {
std.init(which);
pitch2=0;
}
2021-12-04 06:19:54 +00:00
Channel():
freq(0),
baseFreq(0),
pitch(0),
2022-04-28 05:50:09 +00:00
pitch2(0),
2021-12-04 07:19:14 +00:00
prevFreq(65535),
2021-12-04 06:19:54 +00:00
note(0),
2022-01-20 21:56:35 +00:00
ins(-1),
2021-12-04 06:19:54 +00:00
duty(0),
2022-02-01 23:28:48 +00:00
sweep(8),
2021-12-04 06:19:54 +00:00
active(false),
insChanged(true),
freqChanged(false),
sweepChanged(false),
keyOn(false),
keyOff(false),
inPorta(false),
furnaceDac(false),
2021-12-04 06:19:54 +00:00
vol(15),
2021-12-08 06:31:35 +00:00
outVol(15),
2021-12-04 06:19:54 +00:00
wave(-1) {}
};
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;
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;
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);
void acquire_puNES(short* bufL, short* bufR, size_t start, size_t len);
void acquire_NSFPlay(short* bufL, short* bufR, size_t start, size_t len);
2021-12-04 06:19:54 +00:00
public:
void acquire(short* bufL, short* bufR, size_t start, 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);
void renderSamples();
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
void quit();
~DivPlatformNES();
2021-12-04 06:19:54 +00:00
};
#endif