2022-05-14 05:22:23 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "zxbeeper.h"
|
|
|
|
#include "../engine.h"
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define CHIP_FREQBASE 8192*6
|
|
|
|
|
|
|
|
const char** DivPlatformZXBeeper::getRegisterSheet() {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* DivPlatformZXBeeper::getEffectName(unsigned char effect) {
|
|
|
|
switch (effect) {
|
|
|
|
case 0x12:
|
2022-05-15 17:02:00 +00:00
|
|
|
return "12xx: Set pulse width";
|
2022-05-14 05:22:23 +00:00
|
|
|
break;
|
|
|
|
case 0x17:
|
2022-05-15 17:02:00 +00:00
|
|
|
return "17xx: Trigger overlay drum";
|
2022-05-14 05:22:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
2022-05-19 22:02:16 +00:00
|
|
|
bool o=false;
|
2022-05-14 05:22:23 +00:00
|
|
|
for (size_t h=start; h<start+len; h++) {
|
|
|
|
// clock here
|
2022-05-19 16:10:00 +00:00
|
|
|
if (curSample>=0 && curSample<parent->song.sampleLen) {
|
|
|
|
if (--curSamplePeriod<0) {
|
|
|
|
DivSample* s=parent->getSample(curSample);
|
2022-05-19 22:02:16 +00:00
|
|
|
if (s->samples>0) {
|
|
|
|
sampleOut=(s->data8[curSamplePos++]>0);
|
|
|
|
if (curSamplePos>=s->samples) curSample=-1;
|
|
|
|
// 256 bits
|
|
|
|
if (curSamplePos>2047) curSample=-1;
|
|
|
|
|
|
|
|
curSamplePeriod=15;
|
|
|
|
} else {
|
2022-05-19 16:10:00 +00:00
|
|
|
curSample=-1;
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 22:02:16 +00:00
|
|
|
o=sampleOut;
|
|
|
|
bufL[h]=o?16384:0;
|
2022-06-20 23:48:10 +00:00
|
|
|
oscBuf[0]->data[oscBuf[0]->needle++]=o?16384:-16384;
|
2022-05-19 16:10:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-05-14 05:22:23 +00:00
|
|
|
unsigned short oldPos=chan[curChan].sPosition;
|
2022-05-19 22:02:16 +00:00
|
|
|
o=false;
|
2022-05-14 05:22:23 +00:00
|
|
|
|
|
|
|
if (sOffTimer) {
|
|
|
|
sOffTimer--;
|
|
|
|
o=true;
|
|
|
|
}
|
|
|
|
chan[curChan].sPosition+=chan[curChan].freq;
|
|
|
|
if (oldPos>chan[curChan].sPosition) {
|
|
|
|
if (!isMuted[curChan] && chan[curChan].outVol) sOffTimer+=chan[curChan].duty;
|
|
|
|
}
|
|
|
|
if (++curChan>=6) curChan=0;
|
|
|
|
|
|
|
|
bufL[h]=o?16384:0;
|
2022-06-20 23:48:10 +00:00
|
|
|
oscBuf[0]->data[oscBuf[0]->needle++]=o?16384:-16384;
|
2022-05-14 05:22:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::tick(bool sysTick) {
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
chan[i].std.next();
|
|
|
|
if (chan[i].std.vol.had) {
|
|
|
|
chan[i].outVol=((chan[i].vol&1)*MIN(1,chan[i].std.vol.val));
|
|
|
|
}
|
|
|
|
if (chan[i].std.duty.had) {
|
|
|
|
chan[i].duty=chan[i].std.duty.val;
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
if (chan[i].std.arp.had) {
|
|
|
|
if (!chan[i].inPorta) {
|
|
|
|
if (chan[i].std.arp.mode) {
|
|
|
|
chan[i].baseFreq=NOTE_FREQUENCY(chan[i].std.arp.val);
|
|
|
|
} else {
|
|
|
|
chan[i].baseFreq=NOTE_FREQUENCY(chan[i].note+chan[i].std.arp.val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
} else {
|
|
|
|
if (chan[i].std.arp.mode && chan[i].std.arp.finished) {
|
|
|
|
chan[i].baseFreq=NOTE_FREQUENCY(chan[i].note);
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chan[i].std.pitch.had) {
|
|
|
|
if (chan[i].std.pitch.mode) {
|
|
|
|
chan[i].pitch2+=chan[i].std.pitch.val;
|
2022-05-23 03:47:40 +00:00
|
|
|
CLAMP_VAR(chan[i].pitch2,-32768,32767);
|
2022-05-14 05:22:23 +00:00
|
|
|
} else {
|
|
|
|
chan[i].pitch2=chan[i].std.pitch.val;
|
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
if (chan[i].freqChanged || chan[i].keyOn || chan[i].keyOff) {
|
|
|
|
if (chan[i].active) {
|
2022-05-20 04:18:18 +00:00
|
|
|
chan[i].freq=parent->calcFreq(chan[i].baseFreq,chan[i].pitch,false,2,chan[i].pitch2,chipClock,CHIP_FREQBASE);
|
2022-05-14 05:22:23 +00:00
|
|
|
if (chan[i].freq>65535) chan[i].freq=65535;
|
|
|
|
}
|
|
|
|
if (chan[i].keyOn) {
|
|
|
|
//rWrite(16+i*5,0x80);
|
|
|
|
//chWrite(i,0x04,0x80|chan[i].vol);
|
|
|
|
}
|
|
|
|
if (chan[i].keyOff) {
|
|
|
|
chan[i].freq=0;
|
|
|
|
}
|
|
|
|
if (chan[i].keyOn) chan[i].keyOn=false;
|
|
|
|
if (chan[i].keyOff) chan[i].keyOff=false;
|
|
|
|
chan[i].freqChanged=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformZXBeeper::dispatch(DivCommand c) {
|
|
|
|
switch (c.cmd) {
|
|
|
|
case DIV_CMD_NOTE_ON: {
|
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_BEEPER);
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].baseFreq=NOTE_FREQUENCY(c.value);
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
chan[c.chan].macroInit(ins);
|
|
|
|
chan[c.chan].insChanged=false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_OFF:
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
|
|
|
chan[c.chan].active=false;
|
|
|
|
chan[c.chan].keyOff=true;
|
|
|
|
chan[c.chan].macroInit(NULL);
|
|
|
|
break;
|
|
|
|
case DIV_CMD_NOTE_OFF_ENV:
|
|
|
|
case DIV_CMD_ENV_RELEASE:
|
|
|
|
chan[c.chan].std.release();
|
|
|
|
break;
|
|
|
|
case DIV_CMD_INSTRUMENT:
|
|
|
|
if (chan[c.chan].ins!=c.value || c.value2==1) {
|
|
|
|
chan[c.chan].ins=c.value;
|
|
|
|
chan[c.chan].insChanged=true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_VOLUME:
|
|
|
|
if (chan[c.chan].vol!=c.value) {
|
|
|
|
chan[c.chan].vol=c.value;
|
|
|
|
if (!chan[c.chan].std.vol.has) {
|
|
|
|
chan[c.chan].outVol=c.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLUME:
|
|
|
|
if (chan[c.chan].std.vol.has) {
|
|
|
|
return chan[c.chan].vol;
|
|
|
|
}
|
|
|
|
return chan[c.chan].outVol;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PITCH:
|
|
|
|
chan[c.chan].pitch=c.value;
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_NOTE_PORTA: {
|
|
|
|
int destFreq=NOTE_FREQUENCY(c.value2);
|
|
|
|
bool return2=false;
|
|
|
|
if (destFreq>chan[c.chan].baseFreq) {
|
|
|
|
chan[c.chan].baseFreq+=c.value;
|
|
|
|
if (chan[c.chan].baseFreq>=destFreq) {
|
|
|
|
chan[c.chan].baseFreq=destFreq;
|
|
|
|
return2=true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
chan[c.chan].baseFreq-=c.value;
|
|
|
|
if (chan[c.chan].baseFreq<=destFreq) {
|
|
|
|
chan[c.chan].baseFreq=destFreq;
|
|
|
|
return2=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
if (return2) {
|
|
|
|
chan[c.chan].inPorta=false;
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_STD_NOISE_MODE:
|
|
|
|
chan[c.chan].duty=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_SAMPLE_MODE:
|
2022-05-30 05:07:24 +00:00
|
|
|
if (isMuted[c.chan]) break;
|
2022-05-19 16:10:00 +00:00
|
|
|
curSample=c.value;
|
|
|
|
curSamplePos=0;
|
|
|
|
curSamplePeriod=0;
|
2022-05-14 05:22:23 +00:00
|
|
|
break;
|
|
|
|
case DIV_CMD_LEGATO:
|
|
|
|
chan[c.chan].baseFreq=NOTE_FREQUENCY(c.value+((chan[c.chan].std.arp.will && !chan[c.chan].std.arp.mode)?(chan[c.chan].std.arp.val):(0)));
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_PORTA:
|
|
|
|
if (chan[c.chan].active && c.value2) {
|
|
|
|
if (parent->song.resetMacroOnPorta) chan[c.chan].macroInit(parent->getIns(chan[c.chan].ins,DIV_INS_BEEPER));
|
|
|
|
}
|
|
|
|
chan[c.chan].inPorta=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLMAX:
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
case DIV_ALWAYS_SET_VOLUME:
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::muteChannel(int ch, bool mute) {
|
|
|
|
isMuted[ch]=mute;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::forceIns() {
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* DivPlatformZXBeeper::getChanState(int ch) {
|
|
|
|
return &chan[ch];
|
|
|
|
}
|
|
|
|
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* DivPlatformZXBeeper::getChanMacroInt(int ch) {
|
|
|
|
return &chan[ch].std;
|
|
|
|
}
|
|
|
|
|
2022-05-14 05:22:23 +00:00
|
|
|
DivDispatchOscBuffer* DivPlatformZXBeeper::getOscBuffer(int ch) {
|
2022-06-20 23:48:10 +00:00
|
|
|
return (ch<1)?oscBuf[ch]:NULL;
|
2022-05-14 05:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* DivPlatformZXBeeper::getRegisterPool() {
|
2022-05-14 05:36:45 +00:00
|
|
|
ulaOut=sOffTimer?0x10:0x08;
|
|
|
|
return &ulaOut;
|
2022-05-14 05:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformZXBeeper::getRegisterPoolSize() {
|
2022-05-14 05:36:45 +00:00
|
|
|
return 1;
|
2022-05-14 05:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::reset() {
|
|
|
|
while (!writes.empty()) writes.pop();
|
|
|
|
memset(regPool,0,128);
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
chan[i]=DivPlatformZXBeeper::Channel();
|
|
|
|
chan[i].std.setEngine(parent);
|
|
|
|
}
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0xffffffff,0);
|
|
|
|
}
|
|
|
|
lastPan=0xff;
|
|
|
|
memset(tempL,0,32*sizeof(int));
|
|
|
|
memset(tempR,0,32*sizeof(int));
|
|
|
|
cycles=0;
|
|
|
|
curChan=0;
|
|
|
|
sOffTimer=0;
|
2022-05-14 05:36:45 +00:00
|
|
|
ulaOut=0;
|
2022-05-19 16:10:00 +00:00
|
|
|
curSample=-1;
|
|
|
|
curSamplePos=0;
|
|
|
|
curSamplePeriod=0;
|
2022-05-19 22:02:16 +00:00
|
|
|
sampleOut=false;
|
2022-05-14 05:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformZXBeeper::keyOffAffectsArp(int ch) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::notifyWaveChange(int wave) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::notifyInsDeletion(void* ins) {
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
chan[i].std.notifyInsDeletion((DivInstrument*)ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::setFlags(unsigned int flags) {
|
|
|
|
if (flags&1) { // technically there is no PAL PC Engine but oh well...
|
|
|
|
chipClock=COLOR_PAL*4.0/5.0;
|
|
|
|
} else {
|
|
|
|
chipClock=COLOR_NTSC;
|
|
|
|
}
|
|
|
|
rate=chipClock/4;
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
oscBuf[i]->rate=rate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::poke(unsigned int addr, unsigned short val) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::poke(std::vector<DivRegWrite>& wlist) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformZXBeeper::init(DivEngine* p, int channels, int sugRate, unsigned int flags) {
|
|
|
|
parent=p;
|
|
|
|
dumpWrites=false;
|
|
|
|
skipRegisterWrites=false;
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
isMuted[i]=false;
|
|
|
|
oscBuf[i]=new DivDispatchOscBuffer;
|
|
|
|
}
|
|
|
|
setFlags(flags);
|
|
|
|
reset();
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformZXBeeper::quit() {
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
delete oscBuf[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DivPlatformZXBeeper::~DivPlatformZXBeeper() {
|
|
|
|
}
|