furnace/src/engine/platform/arcade.cpp

816 lines
22 KiB
C++
Raw Normal View History

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-08 22:40:35 +00:00
#include "arcade.h"
#include "../engine.h"
#include <string.h>
#include <math.h>
2022-01-27 07:17:09 +00:00
#include "fmshared_OPM.h"
2021-12-08 22:40:35 +00:00
static unsigned short chanOffs[8]={
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
};
static unsigned short opOffs[4]={
0x00, 0x08, 0x10, 0x18
};
static bool isOutput[8][4]={
// 1 3 2 4
{false,false,false,true},
{false,false,false,true},
{false,false,false,true},
{false,false,false,true},
{false,false,true ,true},
{false,true ,true ,true},
{false,true ,true ,true},
{true ,true ,true ,true},
};
static unsigned char dtTable[8]={
2022-03-08 03:28:20 +00:00
7,6,5,0,1,2,3,4
2021-12-08 22:40:35 +00:00
};
static int orderedOps[4]={
0,2,1,3
};
#define rWrite(a,v) if (!skipRegisterWrites) {pendingWrites[a]=v;}
2022-01-17 18:29:35 +00:00
#define immWrite(a,v) if (!skipRegisterWrites) {writes.emplace(a,v); if (dumpWrites) {addWrite(a,v);} }
2021-12-08 22:40:35 +00:00
2022-03-24 03:16:25 +00:00
#define NOTE_LINEAR(x) (((x)<<6)+baseFreqOff+log2(parent->song.tuning/440.0)*12.0*64.0)
2022-02-02 07:14:42 +00:00
const char* regCheatSheetOPM[]={
"Test", "00",
"NoteCtl", "08",
"NoiseCtl", "0F",
"ClockA1", "10",
"ClockA2", "11",
"ClockB", "12",
"Control", "14",
"LFOFreq", "18",
"AMD_PMD", "19",
"LFOWave", "1B",
"L_R_FB_ALG", "20",
"KC", "28",
"KF", "30",
"PMS_AMS", "38",
"DT_MULT", "40",
"TL", "60",
"KS_AR", "80",
"AM_DR", "A0",
"DT2_SR", "C0",
"SL_RR", "E0",
NULL
};
2022-02-03 23:38:57 +00:00
const char** DivPlatformArcade::getRegisterSheet() {
return regCheatSheetOPM;
}
2022-02-15 06:46:03 +00:00
const char* DivPlatformArcade::getEffectName(unsigned char effect) {
switch (effect) {
case 0x10:
return "10xx: Set noise frequency (xx: value; 0 disables noise)";
break;
case 0x11:
return "11xx: Set feedback (0 to 7)";
break;
case 0x12:
return "12xx: Set level of operator 1 (0 highest, 7F lowest)";
break;
case 0x13:
return "13xx: Set level of operator 2 (0 highest, 7F lowest)";
break;
case 0x14:
return "14xx: Set level of operator 3 (0 highest, 7F lowest)";
break;
case 0x15:
return "15xx: Set level of operator 4 (0 highest, 7F lowest)";
break;
case 0x16:
return "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)";
break;
case 0x17:
return "17xx: Set LFO speed";
break;
case 0x18:
return "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)";
break;
case 0x19:
return "19xx: Set attack of all operators (0 to 1F)";
break;
case 0x1a:
return "1Axx: Set attack of operator 1 (0 to 1F)";
break;
case 0x1b:
return "1Bxx: Set attack of operator 2 (0 to 1F)";
break;
case 0x1c:
return "1Cxx: Set attack of operator 3 (0 to 1F)";
break;
case 0x1d:
return "1Dxx: Set attack of operator 4 (0 to 1F)";
break;
case 0x1e:
return "1Exx: Set AM depth (0 to 7F)";
break;
case 0x1f:
return "1Fxx: Set PM depth (0 to 7F)";
break;
case 0x30:
return "30xx: Toggle hard envelope reset on new notes";
break;
2022-02-15 06:46:03 +00:00
}
return NULL;
}
void DivPlatformArcade::acquire_nuked(short* bufL, short* bufR, size_t start, size_t len) {
2021-12-08 22:40:35 +00:00
static int o[2];
for (size_t h=start; h<start+len; h++) {
if (!writes.empty() && !fm.write_busy) {
QueuedWrite& w=writes.front();
if (w.addrOrVal) {
OPM_Write(&fm,1,w.val);
regPool[w.addr&0xff]=w.val;
2021-12-08 22:54:14 +00:00
//printf("write: %x = %.2x\n",w.addr,w.val);
2021-12-08 22:40:35 +00:00
writes.pop();
} else {
OPM_Write(&fm,0,w.addr);
w.addrOrVal=true;
}
}
2021-12-09 06:03:05 +00:00
OPM_Clock(&fm,NULL,NULL,NULL,NULL);
OPM_Clock(&fm,NULL,NULL,NULL,NULL);
OPM_Clock(&fm,NULL,NULL,NULL,NULL);
2021-12-08 22:40:35 +00:00
OPM_Clock(&fm,o,NULL,NULL,NULL);
if (o[0]<-32768) o[0]=-32768;
if (o[0]>32767) o[0]=32767;
2021-12-08 22:40:35 +00:00
if (o[1]<-32768) o[1]=-32768;
if (o[1]>32767) o[1]=32767;
2021-12-08 22:40:35 +00:00
bufL[h]=o[0];
bufR[h]=o[1];
}
}
void DivPlatformArcade::acquire_ymfm(short* bufL, short* bufR, size_t start, size_t len) {
static int os[2];
for (size_t h=start; h<start+len; h++) {
os[0]=0; os[1]=0;
if (!writes.empty()) {
if (--delay<1) {
QueuedWrite& w=writes.front();
fm_ymfm->write(0x0+((w.addr>>8)<<1),w.addr);
fm_ymfm->write(0x1+((w.addr>>8)<<1),w.val);
regPool[w.addr&0xff]=w.val;
writes.pop();
delay=1;
}
}
fm_ymfm->generate(&out_ymfm);
os[0]=out_ymfm.data[0];
if (os[0]<-32768) os[0]=-32768;
if (os[0]>32767) os[0]=32767;
os[1]=out_ymfm.data[1];
if (os[1]<-32768) os[1]=-32768;
if (os[1]>32767) os[1]=32767;
bufL[h]=os[0];
bufR[h]=os[1];
}
}
void DivPlatformArcade::acquire(short* bufL, short* bufR, size_t start, size_t len) {
if (useYMFM) {
acquire_ymfm(bufL,bufR,start,len);
} else {
acquire_nuked(bufL,bufR,start,len);
}
}
static unsigned char noteMap[12]={
2021-12-08 22:40:35 +00:00
0, 1, 2, 4, 5, 6, 8, 9, 10, 12, 13, 14
};
inline int hScale(int note) {
2021-12-08 22:40:35 +00:00
return ((note/12)<<4)+(noteMap[note%12]);
}
void DivPlatformArcade::tick(bool sysTick) {
2021-12-08 22:40:35 +00:00
for (int i=0; i<8; i++) {
2022-01-27 07:17:09 +00:00
chan[i].std.next();
2022-04-10 05:01:55 +00:00
if (chan[i].std.vol.had) {
chan[i].outVol=(chan[i].vol*MIN(127,chan[i].std.vol.val))/127;
2022-01-27 07:17:09 +00:00
for (int j=0; j<4; j++) {
unsigned short baseAddr=chanOffs[i]|opOffs[j];
DivInstrumentFM::Operator& op=chan[i].state.op[j];
if (isOutput[chan[i].state.alg][j]) {
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[i].outVol&0x7f))/127));
} else {
rWrite(baseAddr+ADDR_TL,op.tl);
}
}
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.arp.had) {
2022-01-27 07:17:09 +00:00
if (!chan[i].inPorta) {
2022-04-10 05:01:55 +00:00
if (chan[i].std.arp.mode) {
chan[i].baseFreq=NOTE_LINEAR(chan[i].std.arp.val);
2022-01-27 07:17:09 +00:00
} else {
2022-04-10 05:01:55 +00:00
chan[i].baseFreq=NOTE_LINEAR(chan[i].note+(signed char)chan[i].std.arp.val);
2022-01-27 07:17:09 +00:00
}
}
chan[i].freqChanged=true;
} else {
2022-04-10 05:01:55 +00:00
if (chan[i].std.arp.mode && chan[i].std.arp.finished) {
2022-03-24 03:16:25 +00:00
chan[i].baseFreq=NOTE_LINEAR(chan[i].note);
2022-01-27 07:17:09 +00:00
chan[i].freqChanged=true;
}
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.duty.had) {
if (chan[i].std.duty.val>0) {
rWrite(0x0f,0x80|(0x20-chan[i].std.duty.val));
2022-01-27 20:42:31 +00:00
} else {
rWrite(0x0f,0);
}
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.wave.had) {
rWrite(0x1b,chan[i].std.wave.val&3);
2022-02-06 07:25:32 +00:00
}
2022-04-16 06:39:40 +00:00
if (chan[i].std.pitch.had) {
chan[i].freqChanged=true;
}
if (chan[i].std.phaseReset.had) {
if (chan[i].std.phaseReset.val==1) {
chan[i].keyOn=true;
}
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.ex1.had) {
amDepth=chan[i].std.ex1.val;
2022-01-29 09:37:53 +00:00
immWrite(0x19,amDepth);
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.ex2.had) {
pmDepth=chan[i].std.ex2.val;
2022-01-29 09:37:53 +00:00
immWrite(0x19,0x80|pmDepth);
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.ex3.had) {
immWrite(0x18,chan[i].std.ex3.val);
2022-02-05 21:40:03 +00:00
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.alg.had) {
chan[i].state.alg=chan[i].std.alg.val;
2022-01-27 07:17:09 +00:00
if (isMuted[i]) {
rWrite(chanOffs[i]+ADDR_LR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3));
} else {
rWrite(chanOffs[i]+ADDR_LR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3)|((chan[i].chVolL&1)<<6)|((chan[i].chVolR&1)<<7));
}
if (!parent->song.algMacroBehavior) for (int j=0; j<4; j++) {
2022-02-09 17:43:27 +00:00
unsigned short baseAddr=chanOffs[i]|opOffs[j];
DivInstrumentFM::Operator& op=chan[i].state.op[j];
if (isMuted[i]) {
rWrite(baseAddr+ADDR_TL,127);
} else {
if (isOutput[chan[i].state.alg][j]) {
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[i].outVol&0x7f))/127));
} else {
rWrite(baseAddr+ADDR_TL,op.tl);
}
}
}
2022-01-27 07:17:09 +00:00
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.fb.had) {
chan[i].state.fb=chan[i].std.fb.val;
2022-01-27 07:17:09 +00:00
if (isMuted[i]) {
rWrite(chanOffs[i]+ADDR_LR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3));
} else {
rWrite(chanOffs[i]+ADDR_LR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3)|((chan[i].chVolL&1)<<6)|((chan[i].chVolR&1)<<7));
}
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.fms.had) {
chan[i].state.fms=chan[i].std.fms.val;
2022-01-27 07:17:09 +00:00
rWrite(chanOffs[i]+ADDR_FMS_AMS,((chan[i].state.fms&7)<<4)|(chan[i].state.ams&3));
}
2022-04-10 05:01:55 +00:00
if (chan[i].std.ams.had) {
chan[i].state.ams=chan[i].std.ams.val;
2022-01-27 07:17:09 +00:00
rWrite(chanOffs[i]+ADDR_FMS_AMS,((chan[i].state.fms&7)<<4)|(chan[i].state.ams&3));
}
for (int j=0; j<4; j++) {
unsigned short baseAddr=chanOffs[i]|opOffs[j];
DivInstrumentFM::Operator& op=chan[i].state.op[j];
DivMacroInt::IntOp& m=chan[i].std.op[j];
2022-04-10 05:01:55 +00:00
if (m.am.had) {
op.am=m.am.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
}
2022-04-10 05:01:55 +00:00
if (m.ar.had) {
op.ar=m.ar.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
}
2022-04-10 05:01:55 +00:00
if (m.dr.had) {
op.dr=m.dr.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
}
2022-04-10 05:01:55 +00:00
if (m.mult.had) {
op.mult=m.mult.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
}
2022-04-10 05:01:55 +00:00
if (m.rr.had) {
op.rr=m.rr.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
}
2022-04-10 05:01:55 +00:00
if (m.sl.had) {
op.sl=m.sl.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
}
2022-04-10 05:01:55 +00:00
if (m.tl.had) {
op.tl=127-m.tl.val;
2022-01-27 07:17:09 +00:00
if (isOutput[chan[i].state.alg][j]) {
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[i].outVol&0x7f))/127));
} else {
rWrite(baseAddr+ADDR_TL,op.tl);
}
}
2022-04-10 05:01:55 +00:00
if (m.rs.had) {
op.rs=m.rs.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
}
2022-04-10 05:01:55 +00:00
if (m.dt.had) {
op.dt=m.dt.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
}
2022-04-10 05:01:55 +00:00
if (m.d2r.had) {
op.d2r=m.d2r.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_DT2_D2R,(op.d2r&31)|(op.dt2<<6));
}
2022-04-10 05:01:55 +00:00
if (m.dt2.had) {
op.dt2=m.dt2.val;
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_DT2_D2R,(op.d2r&31)|(op.dt2<<6));
}
}
2021-12-08 22:40:35 +00:00
if (chan[i].keyOn || chan[i].keyOff) {
2022-04-10 08:04:31 +00:00
if (chan[i].hardReset && chan[i].keyOn) {
for (int j=0; j<4; j++) {
unsigned short baseAddr=chanOffs[i]|opOffs[j];
immWrite(baseAddr+ADDR_SL_RR,0x0f);
immWrite(baseAddr+ADDR_TL,0x7f);
oldWrites[baseAddr+ADDR_SL_RR]=-1;
oldWrites[baseAddr+ADDR_TL]=-1;
}
}
immWrite(0x08,i);
2022-04-10 08:04:31 +00:00
if (chan[i].hardReset && chan[i].keyOn) {
for (int j=0; j<4; j++) {
unsigned short baseAddr=chanOffs[i]|opOffs[j];
for (int k=0; k<9; k++) {
immWrite(baseAddr+ADDR_SL_RR,0x0f);
}
}
}
2021-12-08 22:40:35 +00:00
chan[i].keyOff=false;
}
}
for (int i=0; i<256; i++) {
if (pendingWrites[i]!=oldWrites[i]) {
immWrite(i,pendingWrites[i]&0xff);
2021-12-08 22:40:35 +00:00
oldWrites[i]=pendingWrites[i];
}
}
for (int i=0; i<8; i++) {
if (chan[i].freqChanged) {
2022-04-15 08:37:16 +00:00
chan[i].freq=chan[i].baseFreq+(chan[i].pitch>>1)-64+chan[i].std.pitch.val;
2022-02-03 07:30:21 +00:00
if (chan[i].freq<0) chan[i].freq=0;
if (chan[i].freq>=(95<<6)) chan[i].freq=(95<<6)-1;
immWrite(i+0x28,hScale(chan[i].freq>>6));
immWrite(i+0x30,chan[i].freq<<2);
2021-12-08 22:40:35 +00:00
chan[i].freqChanged=false;
}
if (chan[i].keyOn) {
immWrite(0x08,0x78|i);
2021-12-08 22:40:35 +00:00
chan[i].keyOn=false;
}
}
}
2021-12-18 08:25:42 +00:00
void DivPlatformArcade::muteChannel(int ch, bool mute) {
isMuted[ch]=mute;
if (isMuted[ch]) {
rWrite(chanOffs[ch]+ADDR_LR_FB_ALG,(chan[ch].state.alg&7)|(chan[ch].state.fb<<3));
} else {
rWrite(chanOffs[ch]+ADDR_LR_FB_ALG,(chan[ch].state.alg&7)|(chan[ch].state.fb<<3)|((chan[ch].chVolL&1)<<6)|((chan[ch].chVolR&1)<<7));
2021-12-18 08:25:42 +00:00
}
}
2021-12-08 22:40:35 +00:00
int DivPlatformArcade::dispatch(DivCommand c) {
switch (c.cmd) {
case DIV_CMD_NOTE_ON: {
DivInstrument* ins=parent->getIns(chan[c.chan].ins);
2021-12-08 22:40:35 +00:00
2022-01-27 07:17:09 +00:00
if (chan[c.chan].insChanged) {
chan[c.chan].state=ins->fm;
}
chan[c.chan].std.init(ins);
2022-04-10 05:01:55 +00:00
if (!chan[c.chan].std.vol.will) {
2022-01-27 07:17:09 +00:00
chan[c.chan].outVol=chan[c.chan].vol;
}
2021-12-08 22:40:35 +00:00
for (int i=0; i<4; i++) {
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
2022-01-27 07:17:09 +00:00
DivInstrumentFM::Operator op=chan[c.chan].state.op[i];
if (isOutput[chan[c.chan].state.alg][i]) {
2021-12-08 22:40:35 +00:00
if (!chan[c.chan].active || chan[c.chan].insChanged) {
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[c.chan].outVol&0x7f))/127));
2021-12-08 22:40:35 +00:00
}
} else {
if (chan[c.chan].insChanged) {
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_TL,op.tl);
2021-12-08 22:40:35 +00:00
}
}
if (chan[c.chan].insChanged) {
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
rWrite(baseAddr+ADDR_DT2_D2R,(op.d2r&31)|(op.dt2<<6));
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
2021-12-08 22:40:35 +00:00
}
}
if (chan[c.chan].insChanged) {
2021-12-18 08:25:42 +00:00
if (isMuted[c.chan]) {
2022-01-27 07:17:09 +00:00
rWrite(chanOffs[c.chan]+ADDR_LR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3));
2021-12-18 08:25:42 +00:00
} else {
2022-01-27 07:17:09 +00:00
rWrite(chanOffs[c.chan]+ADDR_LR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3)|((chan[c.chan].chVolL&1)<<6)|((chan[c.chan].chVolR&1)<<7));
2021-12-18 08:25:42 +00:00
}
2022-01-27 07:17:09 +00:00
rWrite(chanOffs[c.chan]+ADDR_FMS_AMS,((chan[c.chan].state.fms&7)<<4)|(chan[c.chan].state.ams&3));
2021-12-08 22:40:35 +00:00
}
chan[c.chan].insChanged=false;
if (c.value!=DIV_NOTE_NULL) {
2022-03-24 03:16:25 +00:00
chan[c.chan].baseFreq=NOTE_LINEAR(c.value);
2022-01-27 07:35:16 +00:00
chan[c.chan].note=c.value;
chan[c.chan].freqChanged=true;
}
2021-12-08 22:40:35 +00:00
chan[c.chan].keyOn=true;
chan[c.chan].active=true;
break;
}
case DIV_CMD_NOTE_OFF:
chan[c.chan].keyOff=true;
chan[c.chan].keyOn=false;
2021-12-08 22:40:35 +00:00
chan[c.chan].active=false;
break;
case DIV_CMD_NOTE_OFF_ENV:
chan[c.chan].keyOff=true;
chan[c.chan].keyOn=false;
chan[c.chan].active=false;
chan[c.chan].std.release();
break;
case DIV_CMD_ENV_RELEASE:
chan[c.chan].std.release();
break;
2021-12-08 22:40:35 +00:00
case DIV_CMD_VOLUME: {
chan[c.chan].vol=c.value;
2022-04-10 05:01:55 +00:00
if (!chan[c.chan].std.vol.has) {
2022-01-27 07:17:09 +00:00
chan[c.chan].outVol=c.value;
}
2021-12-08 22:40:35 +00:00
for (int i=0; i<4; i++) {
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
2022-01-27 07:17:09 +00:00
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
if (isOutput[chan[c.chan].state.alg][i]) {
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[c.chan].outVol&0x7f))/127));
2021-12-08 22:40:35 +00:00
} else {
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_TL,op.tl);
2021-12-08 22:40:35 +00:00
}
}
break;
}
case DIV_CMD_GET_VOLUME: {
return chan[c.chan].vol;
break;
}
case DIV_CMD_INSTRUMENT:
if (chan[c.chan].ins!=c.value || c.value2==1) {
2021-12-08 22:40:35 +00:00
chan[c.chan].insChanged=true;
}
chan[c.chan].ins=c.value;
break;
case DIV_CMD_PANNING: {
chan[c.chan].chVolL=((c.value>>4)>0);
chan[c.chan].chVolR=((c.value&15)>0);
if (isMuted[c.chan]) {
rWrite(chanOffs[c.chan]+ADDR_LR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3));
} else {
rWrite(chanOffs[c.chan]+ADDR_LR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3)|((chan[c.chan].chVolL&1)<<6)|((chan[c.chan].chVolR&1)<<7));
}
2021-12-08 22:40:35 +00:00
break;
}
case DIV_CMD_PITCH: {
chan[c.chan].pitch=c.value;
chan[c.chan].freqChanged=true;
break;
}
case DIV_CMD_NOTE_PORTA: {
2022-03-24 03:16:25 +00:00
int destFreq=NOTE_LINEAR(c.value2);
2021-12-08 22:40:35 +00:00
int newFreq;
bool return2=false;
if (destFreq>chan[c.chan].baseFreq) {
newFreq=chan[c.chan].baseFreq+c.value;
if (newFreq>=destFreq) {
newFreq=destFreq;
return2=true;
}
} else {
newFreq=chan[c.chan].baseFreq-c.value;
if (newFreq<=destFreq) {
newFreq=destFreq;
return2=true;
}
}
chan[c.chan].baseFreq=newFreq;
chan[c.chan].freqChanged=true;
2022-01-27 07:17:09 +00:00
if (return2) {
chan[c.chan].inPorta=false;
return 2;
}
2021-12-08 22:40:35 +00:00
break;
}
case DIV_CMD_LEGATO: {
2022-03-24 03:16:25 +00:00
chan[c.chan].baseFreq=NOTE_LINEAR(c.value);
2021-12-08 22:40:35 +00:00
chan[c.chan].freqChanged=true;
break;
}
case DIV_CMD_FM_LFO: {
rWrite(0x18,c.value);
break;
}
case DIV_CMD_FM_LFO_WAVE: {
rWrite(0x1b,c.value&3);
2021-12-08 22:40:35 +00:00
break;
}
case DIV_CMD_FM_FB: {
chan[c.chan].state.fb=c.value&7;
if (isMuted[c.chan]) {
rWrite(chanOffs[c.chan]+ADDR_LR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3));
} else {
rWrite(chanOffs[c.chan]+ADDR_LR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3)|((chan[c.chan].chVolL&1)<<6)|((chan[c.chan].chVolR&1)<<7));
}
break;
}
2021-12-08 22:40:35 +00:00
case DIV_CMD_FM_MULT: {
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
2022-01-27 07:17:09 +00:00
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
op.mult=c.value2&15;
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
2021-12-08 22:40:35 +00:00
break;
}
case DIV_CMD_FM_TL: {
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
2022-01-27 07:17:09 +00:00
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
op.tl=c.value2;
if (isOutput[chan[c.chan].state.alg][c.value]) {
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[c.chan].outVol&0x7f))/127));
2021-12-08 22:40:35 +00:00
} else {
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_TL,op.tl);
2021-12-08 22:40:35 +00:00
}
break;
}
case DIV_CMD_FM_AR: {
if (c.value<0) {
for (int i=0; i<4; i++) {
2022-01-27 07:17:09 +00:00
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
op.ar=c.value2&31;
2021-12-08 22:40:35 +00:00
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
2021-12-08 22:40:35 +00:00
}
} else {
2022-01-27 07:17:09 +00:00
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
op.ar=c.value2&31;
2021-12-08 22:40:35 +00:00
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
2022-01-27 07:17:09 +00:00
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
2021-12-08 22:40:35 +00:00
}
break;
}
2022-01-20 22:54:11 +00:00
case DIV_CMD_FM_AM_DEPTH: {
amDepth=c.value;
immWrite(0x19,amDepth);
break;
}
case DIV_CMD_FM_PM_DEPTH: {
pmDepth=c.value;
immWrite(0x19,0x80|pmDepth);
break;
}
2022-04-10 08:04:31 +00:00
case DIV_CMD_FM_HARD_RESET:
chan[c.chan].hardReset=c.value;
break;
case DIV_CMD_STD_NOISE_FREQ: {
if (c.chan!=7) break;
if (c.value) {
if (c.value>0x1f) {
rWrite(0x0f,0x80);
} else {
rWrite(0x0f,0x80|(0x1f-c.value));
}
} else {
rWrite(0x0f,0);
}
2021-12-14 17:40:26 +00:00
break;
}
2021-12-08 22:40:35 +00:00
case DIV_ALWAYS_SET_VOLUME:
return 0;
break;
case DIV_CMD_GET_VOLMAX:
return 127;
break;
case DIV_CMD_PRE_PORTA:
2022-01-27 07:17:09 +00:00
chan[c.chan].inPorta=c.value;
2021-12-08 22:40:35 +00:00
break;
case DIV_CMD_PRE_NOTE:
break;
default:
//printf("WARNING: unimplemented command %d\n",c.cmd);
break;
}
return 1;
}
void DivPlatformArcade::forceIns() {
2022-01-27 07:17:09 +00:00
for (int i=0; i<8; i++) {
for (int j=0; j<4; j++) {
unsigned short baseAddr=chanOffs[i]|opOffs[j];
DivInstrumentFM::Operator op=chan[i].state.op[j];
if (isOutput[chan[i].state.alg][j]) {
rWrite(baseAddr+ADDR_TL,127-(((127-op.tl)*(chan[i].outVol&0x7f))/127));
} else {
rWrite(baseAddr+ADDR_TL,op.tl);
}
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
rWrite(baseAddr+ADDR_DT2_D2R,(op.d2r&31)|(op.dt2<<6));
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
}
if (isMuted[i]) {
rWrite(chanOffs[i]+ADDR_LR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3));
} else {
rWrite(chanOffs[i]+ADDR_LR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3)|((chan[i].chVolL&1)<<6)|((chan[i].chVolR&1)<<7));
}
rWrite(chanOffs[i]+ADDR_FMS_AMS,((chan[i].state.fms&7)<<4)|(chan[i].state.ams&3));
if (chan[i].active) {
chan[i].keyOn=true;
chan[i].freqChanged=true;
}
2022-01-27 07:17:09 +00:00
}
2022-01-20 22:54:11 +00:00
immWrite(0x19,amDepth);
immWrite(0x19,0x80|pmDepth);
}
2022-01-18 04:59:52 +00:00
void DivPlatformArcade::notifyInsChange(int ins) {
for (int i=0; i<8; i++) {
if (chan[i].ins==ins) {
chan[i].insChanged=true;
}
}
}
2022-01-27 05:29:16 +00:00
void* DivPlatformArcade::getChanState(int ch) {
return &chan[ch];
}
unsigned char* DivPlatformArcade::getRegisterPool() {
return regPool;
}
int DivPlatformArcade::getRegisterPoolSize() {
return 256;
}
2022-02-01 23:08:19 +00:00
void DivPlatformArcade::poke(unsigned int addr, unsigned short val) {
immWrite(addr,val);
}
void DivPlatformArcade::poke(std::vector<DivRegWrite>& wlist) {
for (DivRegWrite& i: wlist) immWrite(i.addr,i.val);
}
2021-12-11 18:14:38 +00:00
void DivPlatformArcade::reset() {
while (!writes.empty()) writes.pop();
memset(regPool,0,256);
if (useYMFM) {
fm_ymfm->reset();
} else {
memset(&fm,0,sizeof(opm_t));
OPM_Reset(&fm);
}
if (dumpWrites) {
addWrite(0xffffffff,0);
}
for (int i=0; i<8; i++) {
2021-12-11 18:14:38 +00:00
chan[i]=DivPlatformArcade::Channel();
chan[i].std.setEngine(parent);
2021-12-08 22:40:35 +00:00
chan[i].vol=0x7f;
2022-01-27 07:17:09 +00:00
chan[i].outVol=0x7f;
2021-12-08 22:40:35 +00:00
}
for (int i=0; i<256; i++) {
oldWrites[i]=-1;
pendingWrites[i]=-1;
}
lastBusy=60;
pcmCycles=0;
pcmL=0;
pcmR=0;
delay=0;
2022-01-20 22:54:11 +00:00
amDepth=0x7f;
pmDepth=0x7f;
//rWrite(0x18,0x10);
2022-01-20 22:54:11 +00:00
immWrite(0x19,amDepth);
immWrite(0x19,0x80|pmDepth);
//rWrite(0x1b,0x00);
2021-12-08 22:40:35 +00:00
extMode=false;
2021-12-11 18:14:38 +00:00
}
2022-01-29 05:20:27 +00:00
void DivPlatformArcade::setFlags(unsigned int flags) {
if (flags==2) {
chipClock=4000000.0;
baseFreqOff=-122;
} else if (flags==1) {
chipClock=COLOR_PAL*4.0/5.0;
baseFreqOff=12;
} else {
chipClock=COLOR_NTSC;
baseFreqOff=0;
}
if (useYMFM) {
rate=chipClock/64;
} else {
rate=chipClock/8;
}
}
2021-12-11 18:14:38 +00:00
bool DivPlatformArcade::isStereo() {
return true;
}
void DivPlatformArcade::setYMFM(bool use) {
useYMFM=use;
}
2022-01-28 17:59:53 +00:00
int DivPlatformArcade::init(DivEngine* p, int channels, int sugRate, unsigned int flags) {
2021-12-11 18:14:38 +00:00
parent=p;
2022-01-17 04:21:27 +00:00
dumpWrites=false;
2021-12-21 21:02:31 +00:00
skipRegisterWrites=false;
for (int i=0; i<8; i++) {
2021-12-18 08:25:42 +00:00
isMuted[i]=false;
}
2022-01-29 05:20:27 +00:00
setFlags(flags);
if (useYMFM) fm_ymfm=new ymfm::ym2151(iface);
2021-12-11 18:14:38 +00:00
reset();
2021-12-08 22:40:35 +00:00
return 8;
2021-12-08 22:40:35 +00:00
}
void DivPlatformArcade::quit() {
if (useYMFM) {
delete fm_ymfm;
}
}
DivPlatformArcade::~DivPlatformArcade() {
2022-01-17 18:29:35 +00:00
}