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-06-06 19:02:38 +00:00
|
|
|
#ifndef _PCE_H
|
|
|
|
#define _PCE_H
|
|
|
|
|
|
|
|
#include "../dispatch.h"
|
2021-06-07 07:49:43 +00:00
|
|
|
#include <queue>
|
2021-06-06 19:02:38 +00:00
|
|
|
#include "../macroInt.h"
|
2022-04-08 07:11:33 +00:00
|
|
|
#include "../waveSynth.h"
|
2021-06-06 19:02:38 +00:00
|
|
|
#include "sound/pce_psg.h"
|
|
|
|
|
|
|
|
class DivPlatformPCE: public DivDispatch {
|
2022-12-04 10:58:58 +00:00
|
|
|
struct Channel: public SharedChannelFreq, public SharedChannelVolume<signed char> {
|
|
|
|
int antiClickPeriodCount, antiClickWavePos;
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
int dacPeriod, dacRate, dacOut;
|
2021-12-14 17:33:26 +00:00
|
|
|
unsigned int dacPos;
|
2022-12-04 10:58:58 +00:00
|
|
|
int dacSample;
|
2022-04-25 23:58:17 +00:00
|
|
|
unsigned char pan;
|
2022-12-04 10:58:58 +00:00
|
|
|
bool noise, pcm, furnaceDac, deferredWaveUpdate;
|
|
|
|
signed short wave;
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
int macroVolMul;
|
2021-06-06 19:02:38 +00:00
|
|
|
DivMacroInt std;
|
2022-04-08 07:11:33 +00:00
|
|
|
DivWaveSynth ws;
|
2022-04-28 06:31:16 +00:00
|
|
|
void macroInit(DivInstrument* which) {
|
|
|
|
std.init(which);
|
|
|
|
pitch2=0;
|
|
|
|
}
|
2021-06-06 19:02:38 +00:00
|
|
|
Channel():
|
2022-12-04 10:58:58 +00:00
|
|
|
SharedChannelFreq(),
|
|
|
|
SharedChannelVolume<signed char>(31),
|
2022-07-30 06:00:51 +00:00
|
|
|
antiClickPeriodCount(0),
|
|
|
|
antiClickWavePos(0),
|
2021-12-04 06:19:54 +00:00
|
|
|
dacPeriod(0),
|
|
|
|
dacRate(0),
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
dacOut(0),
|
2021-12-04 06:19:54 +00:00
|
|
|
dacPos(0),
|
2022-01-20 21:09:05 +00:00
|
|
|
dacSample(-1),
|
2021-06-07 07:49:43 +00:00
|
|
|
pan(255),
|
2021-06-09 01:45:38 +00:00
|
|
|
noise(false),
|
2021-06-09 04:16:29 +00:00
|
|
|
pcm(false),
|
2022-01-20 21:09:05 +00:00
|
|
|
furnaceDac(false),
|
2022-08-06 05:34:28 +00:00
|
|
|
deferredWaveUpdate(false),
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
wave(-1),
|
|
|
|
macroVolMul(31) {}
|
2021-06-06 19:02:38 +00:00
|
|
|
};
|
2021-06-07 07:49:43 +00:00
|
|
|
Channel chan[6];
|
per-channel oscilloscope, part 5
SAA1099 (SAASound and MAME), Lynx, MMC5, N163, PC Engine, PC Speaker,
PET, QSound, WonderSwan, VERA, VIC-20, VRC6 and X1-010!
2022-05-01 07:40:03 +00:00
|
|
|
DivDispatchOscBuffer* oscBuf[6];
|
2021-12-18 08:25:42 +00:00
|
|
|
bool isMuted[6];
|
2022-07-30 06:00:51 +00:00
|
|
|
bool antiClickEnabled;
|
2022-11-15 21:40:27 +00:00
|
|
|
bool updateLFO;
|
2021-06-07 07:49:43 +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-06-06 19:02:38 +00:00
|
|
|
unsigned char lastPan;
|
|
|
|
|
2022-01-13 03:14:20 +00:00
|
|
|
int cycles, curChan, delay;
|
|
|
|
int tempL[32];
|
|
|
|
int tempR[32];
|
2022-02-05 21:19:22 +00:00
|
|
|
unsigned char sampleBank, lfoMode, lfoSpeed;
|
2021-06-06 19:02:38 +00:00
|
|
|
PCE_PSG* pce;
|
2022-02-22 03:31:27 +00:00
|
|
|
unsigned char regPool[128];
|
2021-06-07 07:49:43 +00:00
|
|
|
void updateWave(int ch);
|
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);
|
2021-06-06 19:02:38 +00:00
|
|
|
public:
|
2021-12-06 21:51:18 +00:00
|
|
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
2021-06-06 19:02:38 +00:00
|
|
|
int dispatch(DivCommand c);
|
2022-01-27 05:29:16 +00:00
|
|
|
void* getChanState(int chan);
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* getChanMacroInt(int ch);
|
per-channel oscilloscope, part 5
SAA1099 (SAASound and MAME), Lynx, MMC5, N163, PC Engine, PC Speaker,
PET, QSound, WonderSwan, VERA, VIC-20, VRC6 and X1-010!
2022-05-01 07:40:03 +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);
|
2021-12-06 21:51:18 +00:00
|
|
|
bool isStereo();
|
2021-12-08 05:33:00 +00:00
|
|
|
bool keyOffAffectsArp(int ch);
|
2022-09-30 01:13:40 +00:00
|
|
|
void setFlags(const DivConfig& flags);
|
2022-01-18 05:25:10 +00:00
|
|
|
void notifyWaveChange(int wave);
|
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-15 05:37:27 +00:00
|
|
|
void quit();
|
|
|
|
~DivPlatformPCE();
|
2021-06-06 19:02:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|