furnace/src/engine/platform/amiga.h

91 lines
2.5 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.
*/
2022-01-15 22:28:33 +00:00
#ifndef _AMIGA_H
#define _AMIGA_H
2022-01-15 20:50:53 +00:00
#include "../dispatch.h"
#include <queue>
#include "../waveSynth.h"
2022-01-15 20:50:53 +00:00
class DivPlatformAmiga: public DivDispatch {
struct Channel: public SharedChannel<signed char> {
2022-01-15 20:50:53 +00:00
unsigned int audLoc;
unsigned short audLen;
unsigned int audPos;
2022-01-15 22:28:33 +00:00
int audSub;
2022-01-15 20:50:53 +00:00
signed char audDat;
2022-01-15 22:28:33 +00:00
int sample, wave;
int busClock;
bool useWave, setPos, useV, useP;
DivWaveSynth ws;
2022-01-15 20:50:53 +00:00
Channel():
SharedChannel<signed char>(64),
2022-01-15 20:50:53 +00:00
audLoc(0),
audLen(0),
audPos(0),
2022-01-15 22:28:33 +00:00
audSub(0),
2022-01-15 20:50:53 +00:00
audDat(0),
sample(-1),
wave(-1),
busClock(0),
2022-01-15 22:28:33 +00:00
useWave(false),
2022-03-14 14:50:52 +00:00
setPos(false),
2022-03-27 05:02:17 +00:00
useV(false),
useP(false) {}
2022-01-15 20:50:53 +00:00
};
Channel chan[4];
DivDispatchOscBuffer* oscBuf[4];
2022-01-15 20:50:53 +00:00
bool isMuted[4];
bool bypassLimits;
bool amigaModel;
2022-03-27 04:39:20 +00:00
bool filterOn;
int filter[2][4];
int filtConst;
int filtConstOff, filtConstOn;
2022-01-15 20:50:53 +00:00
2022-02-04 22:59:55 +00:00
int sep1, sep2;
friend void putDispatchChip(void*,int);
2022-01-27 05:29:16 +00:00
friend void putDispatchChan(void*,int,int);
2022-01-15 20:50:53 +00:00
public:
2023-01-02 09:53:37 +00:00
void acquire(short** buf, size_t len);
2022-01-15 20:50:53 +00:00
int dispatch(DivCommand c);
2022-01-27 05:29:16 +00:00
void* getChanState(int chan);
DivDispatchOscBuffer* getOscBuffer(int chan);
2022-01-15 20:50:53 +00:00
void reset();
void forceIns();
void tick(bool sysTick=true);
2022-01-15 20:50:53 +00:00
void muteChannel(int ch, bool mute);
int getOutputCount();
2022-01-15 20:50:53 +00:00
bool keyOffAffectsArp(int ch);
DivMacroInt* getChanMacroInt(int ch);
void setFlags(const DivConfig& flags);
2022-01-18 04:59:52 +00:00
void notifyInsChange(int ins);
2022-01-18 05:25:10 +00:00
void notifyWaveChange(int wave);
2022-01-15 20:50:53 +00:00
void notifyInsDeletion(void* ins);
2022-02-03 23:38:57 +00:00
const char** getRegisterSheet();
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
2022-01-15 20:50:53 +00:00
void quit();
};
#endif