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-14 19:31:57 +00:00
|
|
|
#include "../dispatch.h"
|
|
|
|
|
|
|
|
#include "ym2610.h"
|
|
|
|
|
|
|
|
class DivPlatformYM2610Ext: public DivPlatformYM2610 {
|
|
|
|
struct OpChannel {
|
2022-01-23 18:19:19 +00:00
|
|
|
DivMacroInt std;
|
2021-12-14 19:31:57 +00:00
|
|
|
unsigned char freqH, freqL;
|
|
|
|
int freq, baseFreq, pitch;
|
|
|
|
unsigned char ins;
|
|
|
|
signed char konCycles;
|
|
|
|
bool active, insChanged, freqChanged, keyOn, keyOff, portaPause;
|
|
|
|
int vol;
|
|
|
|
unsigned char pan;
|
|
|
|
OpChannel(): freqH(0), freqL(0), freq(0), baseFreq(0), pitch(0), ins(-1), active(false), insChanged(true), freqChanged(false), keyOn(false), keyOff(false), portaPause(false), vol(0), pan(3) {}
|
|
|
|
};
|
|
|
|
OpChannel opChan[4];
|
2021-12-18 08:25:42 +00:00
|
|
|
bool isOpMuted[4];
|
2022-01-27 05:29:16 +00:00
|
|
|
friend void putDispatchChan(void*,int,int);
|
2021-12-14 19:31:57 +00:00
|
|
|
public:
|
|
|
|
int dispatch(DivCommand c);
|
2022-01-27 05:29:16 +00:00
|
|
|
void* getChanState(int chan);
|
2021-12-14 19:31:57 +00:00
|
|
|
void reset();
|
2021-12-21 06:29:07 +00:00
|
|
|
void forceIns();
|
2021-12-14 19:31:57 +00:00
|
|
|
void tick();
|
2021-12-18 08:25:42 +00:00
|
|
|
void muteChannel(int ch, bool mute);
|
2021-12-14 19:31:57 +00:00
|
|
|
bool keyOffAffectsArp(int ch);
|
2022-01-18 04:59:52 +00:00
|
|
|
void notifyInsChange(int ins);
|
2022-01-28 17:59:53 +00:00
|
|
|
int init(DivEngine* parent, int channels, int sugRate, unsigned int flags);
|
2021-12-15 05:37:27 +00:00
|
|
|
void quit();
|
|
|
|
~DivPlatformYM2610Ext();
|
2021-12-14 19:31:57 +00:00
|
|
|
};
|