2022-03-06 16:13:47 +00:00
|
|
|
/**
|
|
|
|
* Furnace Tracker - multi-system chiptune tracker
|
2023-01-20 00:18:40 +00:00
|
|
|
* Copyright (C) 2021-2023 tildearrow and contributors
|
2022-03-06 16:13:47 +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.
|
|
|
|
*/
|
|
|
|
|
2022-03-07 12:04:20 +00:00
|
|
|
#ifndef _SWAN_H
|
|
|
|
#define _SWAN_H
|
2022-03-06 16:13:47 +00:00
|
|
|
|
|
|
|
#include "../dispatch.h"
|
2022-04-08 09:34:39 +00:00
|
|
|
#include "../waveSynth.h"
|
2022-03-07 12:04:20 +00:00
|
|
|
#include "sound/swan.h"
|
2022-03-06 16:13:47 +00:00
|
|
|
#include <queue>
|
|
|
|
|
2022-03-07 12:04:20 +00:00
|
|
|
class DivPlatformSwan: public DivDispatch {
|
2022-12-13 07:22:48 +00:00
|
|
|
struct Channel: public SharedChannel<int> {
|
2022-04-25 23:58:17 +00:00
|
|
|
unsigned char pan;
|
2022-12-04 10:58:58 +00:00
|
|
|
int wave;
|
2022-04-08 09:34:39 +00:00
|
|
|
DivWaveSynth ws;
|
2022-03-06 16:13:47 +00:00
|
|
|
Channel():
|
2022-12-13 07:22:48 +00:00
|
|
|
SharedChannel<int>(15),
|
2022-03-06 16:13:47 +00:00
|
|
|
pan(255),
|
|
|
|
wave(-1) {}
|
|
|
|
};
|
|
|
|
Channel chan[4];
|
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[4];
|
2022-03-06 16:13:47 +00:00
|
|
|
bool isMuted[4];
|
|
|
|
bool pcm, sweep, furnaceDac;
|
|
|
|
unsigned char sampleBank, noise;
|
|
|
|
int dacPeriod, dacRate;
|
|
|
|
unsigned int dacPos;
|
|
|
|
int dacSample;
|
|
|
|
|
|
|
|
unsigned char regPool[0x80];
|
|
|
|
struct QueuedWrite {
|
|
|
|
unsigned char addr;
|
|
|
|
unsigned char val;
|
|
|
|
QueuedWrite(unsigned char a, unsigned char v): addr(a), val(v) {}
|
|
|
|
};
|
|
|
|
std::queue<QueuedWrite> writes;
|
2023-01-15 06:46:34 +00:00
|
|
|
std::queue<DivRegWrite> postDACWrites;
|
2022-03-06 16:13:47 +00:00
|
|
|
WSwan* ws;
|
|
|
|
void updateWave(int ch);
|
2022-09-23 14:24:02 +00:00
|
|
|
friend void putDispatchChip(void*,int);
|
2022-03-06 16:13:47 +00:00
|
|
|
friend void putDispatchChan(void*,int,int);
|
|
|
|
public:
|
2023-01-02 09:53:37 +00:00
|
|
|
void acquire(short** buf, size_t len);
|
2022-03-06 16:13:47 +00:00
|
|
|
int dispatch(DivCommand c);
|
|
|
|
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-03-06 16:13:47 +00:00
|
|
|
unsigned char* getRegisterPool();
|
|
|
|
int getRegisterPoolSize();
|
|
|
|
void reset();
|
|
|
|
void forceIns();
|
2022-04-15 20:01:11 +00:00
|
|
|
void tick(bool sysTick=true);
|
2022-03-06 16:13:47 +00:00
|
|
|
void muteChannel(int ch, bool mute);
|
2023-07-08 19:40:35 +00:00
|
|
|
void setFlags(const DivConfig& flags);
|
2022-03-06 16:13:47 +00:00
|
|
|
void notifyWaveChange(int wave);
|
|
|
|
void notifyInsDeletion(void* ins);
|
2023-01-02 00:46:08 +00:00
|
|
|
int getOutputCount();
|
2022-03-06 16:13:47 +00:00
|
|
|
void poke(unsigned int addr, unsigned short val);
|
|
|
|
void poke(std::vector<DivRegWrite>& wlist);
|
|
|
|
const char** getRegisterSheet();
|
2022-09-30 01:13:40 +00:00
|
|
|
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
|
2022-03-06 16:13:47 +00:00
|
|
|
void quit();
|
2022-03-07 12:04:20 +00:00
|
|
|
~DivPlatformSwan();
|
2022-03-06 16:13:47 +00:00
|
|
|
private:
|
|
|
|
void calcAndWriteOutVol(int ch, int env);
|
|
|
|
void writeOutVol(int ch);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|