2022-03-27 16:06:56 +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 "vrc6.h"
|
|
|
|
#include "../engine.h"
|
|
|
|
#include <cstddef>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define rWrite(a,v) if (!skipRegisterWrites) {writes.emplace(a,v); if (dumpWrites) {addWrite(a,v);} }
|
|
|
|
#define chWrite(c,a,v) rWrite(0x9000+(c<<12)+(a&3),v)
|
|
|
|
|
|
|
|
const char* regCheatSheetVRC6[]={
|
|
|
|
"S0DutyVol", "9000",
|
|
|
|
"S0PeriodL", "9001",
|
|
|
|
"S0PeriodH", "9002",
|
|
|
|
"GlobalCtl", "9003",
|
|
|
|
"S1DutyVol", "A000",
|
|
|
|
"S1PeriodL", "A001",
|
|
|
|
"S1PeriodH", "A002",
|
|
|
|
"SawVolume", "B000",
|
|
|
|
"SawPeriodL", "B001",
|
|
|
|
"SawPeriodH", "B002",
|
|
|
|
"TimerLatch", "F000",
|
|
|
|
"TimerCtl", "F001",
|
|
|
|
"IRQAck", "F002",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char** DivPlatformVRC6::getRegisterSheet() {
|
|
|
|
return regCheatSheetVRC6;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
|
|
|
for (size_t i=start; i<start+len; i++) {
|
|
|
|
// PCM part
|
|
|
|
for (int i=0; i<2; i++) {
|
|
|
|
if (chan[i].pcm && chan[i].dacSample!=-1) {
|
|
|
|
chan[i].dacPeriod+=chan[i].dacRate;
|
|
|
|
if (chan[i].dacPeriod>rate) {
|
|
|
|
DivSample* s=parent->getSample(chan[i].dacSample);
|
2022-08-28 00:59:56 +00:00
|
|
|
if (s->samples<=0) {
|
2022-03-27 16:06:56 +00:00
|
|
|
chan[i].dacSample=-1;
|
|
|
|
chWrite(i,0,0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
unsigned char dacData=(((unsigned char)s->data8[chan[i].dacPos]^0x80)>>4);
|
|
|
|
chan[i].dacOut=MAX(0,MIN(15,(dacData*chan[i].outVol)>>4));
|
|
|
|
if (!isMuted[i]) {
|
|
|
|
chWrite(i,0,0x80|chan[i].dacOut);
|
|
|
|
}
|
|
|
|
chan[i].dacPos++;
|
2022-08-28 01:50:57 +00:00
|
|
|
if (s->isLoopable() && chan[i].dacPos>=(unsigned int)s->loopEnd) {
|
|
|
|
chan[i].dacPos=s->loopStart;
|
|
|
|
} else if (chan[i].dacPos>=s->samples) {
|
2022-07-22 04:36:42 +00:00
|
|
|
chan[i].dacSample=-1;
|
|
|
|
chWrite(i,0,0);
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
|
|
|
chan[i].dacPeriod-=rate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// VRC6 part
|
|
|
|
vrc6.tick();
|
|
|
|
int sample=vrc6.out()<<9; // scale to 16 bit
|
|
|
|
if (sample>32767) sample=32767;
|
|
|
|
if (sample<-32768) sample=-32768;
|
|
|
|
bufL[i]=bufR[i]=sample;
|
|
|
|
|
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
|
|
|
// Oscilloscope buffer part
|
|
|
|
if (++writeOscBuf>=32) {
|
|
|
|
writeOscBuf=0;
|
2022-09-16 14:48:06 +00:00
|
|
|
for (int i=0; i<2; i++) {
|
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=vrc6.pulse_out(i)<<10;
|
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
|
|
|
}
|
2022-09-16 14:48:06 +00:00
|
|
|
oscBuf[2]->data[oscBuf[2]->needle++]=vrc6.sawtooth_out()<<10;
|
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
|
|
|
}
|
|
|
|
|
2022-03-27 16:06:56 +00:00
|
|
|
// Command part
|
|
|
|
while (!writes.empty()) {
|
|
|
|
QueuedWrite w=writes.front();
|
|
|
|
switch (w.addr&0xf000) {
|
|
|
|
case 0x9000: // Pulse 1
|
|
|
|
if (w.addr<=0x9003) {
|
|
|
|
if (w.addr==0x9003) {
|
|
|
|
vrc6.control_w(w.val);
|
|
|
|
} else if (w.addr<=0x9002) {
|
|
|
|
vrc6.pulse_w(0,w.addr&3,w.val);
|
|
|
|
}
|
|
|
|
regPool[w.addr-0x9000]=w.val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0xa000: // Pulse 2
|
|
|
|
if (w.addr<=0xa002) {
|
|
|
|
vrc6.pulse_w(1,w.addr&3,w.val);
|
|
|
|
regPool[(w.addr-0xa000)+4]=w.val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0xb000: // Sawtooth
|
|
|
|
if (w.addr<=0xb002) {
|
|
|
|
vrc6.saw_w(w.addr&3,w.val);
|
|
|
|
regPool[(w.addr-0xb000)+7]=w.val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0xf000: // IRQ/Timer
|
|
|
|
if (w.addr<=0xf002) {
|
|
|
|
vrc6.timer_w(w.addr&3,w.val);
|
|
|
|
regPool[(w.addr-0xf000)+10]=w.val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
writes.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-15 20:01:11 +00:00
|
|
|
void DivPlatformVRC6::tick(bool sysTick) {
|
2022-03-27 16:06:56 +00:00
|
|
|
for (int i=0; i<3; i++) {
|
2022-03-28 03:30:29 +00:00
|
|
|
// 16 for pulse; 14 for saw
|
|
|
|
int CHIP_DIVIDER=(i==2)?14:16;
|
2022-03-27 16:06:56 +00:00
|
|
|
chan[i].std.next();
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.vol.had) {
|
2022-03-27 16:06:56 +00:00
|
|
|
if (i==2) { // sawtooth
|
2022-04-10 05:01:55 +00:00
|
|
|
chan[i].outVol=((chan[i].vol&63)*MIN(63,chan[i].std.vol.val))/63;
|
2022-03-27 16:06:56 +00:00
|
|
|
if (chan[i].outVol<0) chan[i].outVol=0;
|
|
|
|
if (chan[i].outVol>63) chan[i].outVol=63;
|
|
|
|
if (!isMuted[i]) {
|
|
|
|
chWrite(i,0,chan[i].outVol);
|
|
|
|
}
|
|
|
|
} else { // pulse
|
2022-04-10 05:01:55 +00:00
|
|
|
chan[i].outVol=((chan[i].vol&15)*MIN(15,chan[i].std.vol.val))/15;
|
2022-03-27 16:06:56 +00:00
|
|
|
if (chan[i].outVol<0) chan[i].outVol=0;
|
|
|
|
if (chan[i].outVol>15) chan[i].outVol=15;
|
|
|
|
if ((!isMuted[i]) && (!chan[i].pcm)) {
|
|
|
|
chWrite(i,0,(chan[i].outVol&0xf)|((chan[i].duty&7)<<4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.arp.had) {
|
2022-03-27 16:06:56 +00:00
|
|
|
if (!chan[i].inPorta) {
|
2022-08-22 20:59:45 +00:00
|
|
|
chan[i].baseFreq=NOTE_PERIODIC(parent->calcArp(chan[i].note,chan[i].std.arp.val));
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.duty.had) {
|
|
|
|
chan[i].duty=chan[i].std.duty.val;
|
2022-03-27 16:06:56 +00:00
|
|
|
if ((!isMuted[i]) && (i!=2) && (!chan[i].pcm)) { // pulse
|
|
|
|
chWrite(i,0,(chan[i].outVol&0xf)|((chan[i].duty&7)<<4));
|
|
|
|
}
|
|
|
|
}
|
2022-04-16 06:39:40 +00:00
|
|
|
if (chan[i].std.pitch.had) {
|
2022-04-28 06:31:16 +00:00
|
|
|
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-04-28 06:31:16 +00:00
|
|
|
} else {
|
|
|
|
chan[i].pitch2=chan[i].std.pitch.val;
|
|
|
|
}
|
2022-04-16 06:39:40 +00:00
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
if (chan[i].std.phaseReset.had) {
|
|
|
|
if (chan[i].std.phaseReset.val && chan[i].active) {
|
|
|
|
if ((i!=2) && (!chan[i].pcm)) {
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(i<<8),0);
|
|
|
|
DivInstrument* ins=parent->getIns(chan[i].ins,DIV_INS_VRC6);
|
|
|
|
chan[i].dacSample=ins->amiga.getSample(chan[i].note);
|
|
|
|
if (chan[i].dacSample<0 || chan[i].dacSample>=parent->song.sampleLen) {
|
|
|
|
if (dumpWrites) {
|
|
|
|
chWrite(i,2,0x80);
|
|
|
|
chWrite(i,0,isMuted[i]?0:0x80);
|
|
|
|
addWrite(0xffff0000+(i<<8),chan[i].dacSample);
|
|
|
|
}
|
|
|
|
chan[i].dacPos=0;
|
|
|
|
chan[i].dacPeriod=0;
|
|
|
|
chan[i].keyOn=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-27 16:06:56 +00:00
|
|
|
if (chan[i].freqChanged || chan[i].keyOn || chan[i].keyOff) {
|
|
|
|
if (i==2) { // sawtooth
|
2022-05-10 08:51:18 +00:00
|
|
|
chan[i].freq=parent->calcFreq(chan[i].baseFreq,chan[i].pitch,true,0,chan[i].pitch2,chipClock,14)-1;
|
2022-03-27 16:06:56 +00:00
|
|
|
} else { // pulse
|
2022-05-10 08:51:18 +00:00
|
|
|
chan[i].freq=parent->calcFreq(chan[i].baseFreq,chan[i].pitch,true,0,chan[i].pitch2,chipClock,16)-1;
|
2022-03-27 16:06:56 +00:00
|
|
|
if (chan[i].furnaceDac) {
|
|
|
|
double off=1.0;
|
|
|
|
if (chan[i].dacSample>=0 && chan[i].dacSample<parent->song.sampleLen) {
|
|
|
|
DivSample* s=parent->getSample(chan[i].dacSample);
|
|
|
|
if (s->centerRate<1) {
|
|
|
|
off=1.0;
|
|
|
|
} else {
|
|
|
|
off=8363.0/(double)s->centerRate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[i].dacRate=((double)chipClock)/MAX(1,off*chan[i].freq);
|
|
|
|
if (dumpWrites) addWrite(0xffff0001+(i<<8),chan[i].dacRate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chan[i].freq>4095) chan[i].freq=4095;
|
|
|
|
if (chan[i].freq<0) chan[i].freq=0;
|
|
|
|
if (chan[i].keyOff) {
|
2022-03-27 16:22:24 +00:00
|
|
|
chWrite(i,2,0);
|
2022-09-09 20:31:38 +00:00
|
|
|
} else if (chan[i].active) {
|
2022-03-27 16:06:56 +00:00
|
|
|
chWrite(i,1,chan[i].freq&0xff);
|
2022-03-27 16:22:24 +00:00
|
|
|
chWrite(i,2,0x80|((chan[i].freq>>8)&0xf));
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
|
|
|
if (chan[i].keyOn) chan[i].keyOn=false;
|
|
|
|
if (chan[i].keyOff) chan[i].keyOff=false;
|
|
|
|
chan[i].freqChanged=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformVRC6::dispatch(DivCommand c) {
|
2022-03-28 03:30:29 +00:00
|
|
|
int CHIP_DIVIDER=(c.chan==2)?14:16;
|
2022-03-27 16:06:56 +00:00
|
|
|
switch (c.cmd) {
|
|
|
|
case DIV_CMD_NOTE_ON:
|
|
|
|
if (c.chan!=2) { // pulse wave
|
2022-04-21 07:24:06 +00:00
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_VRC6);
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
if (ins->type==DIV_INS_AMIGA || ins->amiga.useSample) {
|
2022-03-27 16:06:56 +00:00
|
|
|
chan[c.chan].pcm=true;
|
|
|
|
} else if (chan[c.chan].furnaceDac) {
|
|
|
|
chan[c.chan].pcm=false;
|
|
|
|
}
|
|
|
|
if (chan[c.chan].pcm) {
|
|
|
|
if (skipRegisterWrites) break;
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
if (ins->type==DIV_INS_AMIGA || ins->amiga.useSample) {
|
2022-05-14 04:04:40 +00:00
|
|
|
chan[c.chan].dacSample=ins->amiga.getSample(c.value);
|
2022-03-27 16:06:56 +00:00
|
|
|
if (chan[c.chan].dacSample<0 || chan[c.chan].dacSample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].dacSample=-1;
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if (dumpWrites) {
|
2022-03-27 16:22:24 +00:00
|
|
|
chWrite(c.chan,2,0x80);
|
2022-03-27 16:06:56 +00:00
|
|
|
chWrite(c.chan,0,isMuted[c.chan]?0:0x80);
|
|
|
|
addWrite(0xffff0000+(c.chan<<8),chan[c.chan].dacSample);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[c.chan].dacPos=0;
|
|
|
|
chan[c.chan].dacPeriod=0;
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].baseFreq=NOTE_PERIODIC(c.value);
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].active=true;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(ins);
|
2022-06-01 00:03:31 +00:00
|
|
|
if (!parent->song.brokenOutVol && !chan[c.chan].std.vol.will) {
|
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
}
|
2022-03-27 16:06:56 +00:00
|
|
|
//chan[c.chan].keyOn=true;
|
|
|
|
chan[c.chan].furnaceDac=true;
|
|
|
|
} else {
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].dacSample=12*sampleBank+chan[c.chan].note%12;
|
|
|
|
if (chan[c.chan].dacSample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].dacSample=-1;
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if (dumpWrites) addWrite(0xffff0000+(c.chan<<8),chan[c.chan].dacSample);
|
|
|
|
}
|
|
|
|
chan[c.chan].dacPos=0;
|
|
|
|
chan[c.chan].dacPeriod=0;
|
|
|
|
chan[c.chan].dacRate=parent->getSample(chan[c.chan].dacSample)->rate;
|
|
|
|
if (dumpWrites) {
|
2022-03-27 16:22:24 +00:00
|
|
|
chWrite(c.chan,2,0x80);
|
2022-03-27 16:06:56 +00:00
|
|
|
chWrite(c.chan,0,isMuted[c.chan]?0:0x80);
|
|
|
|
addWrite(0xffff0001+(c.chan<<8),chan[c.chan].dacRate);
|
|
|
|
}
|
|
|
|
chan[c.chan].furnaceDac=false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].baseFreq=NOTE_PERIODIC(c.value);
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(parent->getIns(chan[c.chan].ins,DIV_INS_VRC6));
|
2022-03-27 16:06:56 +00:00
|
|
|
if (!isMuted[c.chan]) {
|
|
|
|
if (c.chan==2) { // sawtooth
|
|
|
|
chWrite(c.chan,0,chan[c.chan].vol);
|
|
|
|
} else if (!chan[c.chan].pcm) {
|
|
|
|
chWrite(c.chan,0,(chan[c.chan].vol&0xf)|((chan[c.chan].duty&7)<<4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_NOTE_OFF:
|
|
|
|
chan[c.chan].dacSample=-1;
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
|
|
|
chan[c.chan].pcm=false;
|
|
|
|
chan[c.chan].active=false;
|
|
|
|
chan[c.chan].keyOff=true;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(NULL);
|
2022-03-27 16:06:56 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_VOLUME:
|
|
|
|
if (chan[c.chan].vol!=c.value) {
|
|
|
|
chan[c.chan].vol=c.value;
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[c.chan].std.vol.has) {
|
2022-03-27 16:06:56 +00:00
|
|
|
chan[c.chan].outVol=c.value;
|
|
|
|
}
|
|
|
|
if (!isMuted[c.chan]) {
|
|
|
|
if (chan[c.chan].active) {
|
|
|
|
if (c.chan==2) { // sawtooth
|
|
|
|
chWrite(c.chan,0,chan[c.chan].vol);
|
|
|
|
} else if (!chan[c.chan].pcm) {
|
|
|
|
chWrite(c.chan,0,(chan[c.chan].vol&0xf)|((chan[c.chan].duty&7)<<4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLUME:
|
|
|
|
return chan[c.chan].vol;
|
|
|
|
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_PERIODIC(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:
|
|
|
|
if ((c.chan!=2) && (!chan[c.chan].pcm)) { // pulse
|
|
|
|
chan[c.chan].duty=c.value;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_SAMPLE_MODE:
|
|
|
|
if (c.chan!=2) { // pulse
|
|
|
|
chan[c.chan].pcm=c.value;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_SAMPLE_BANK:
|
|
|
|
sampleBank=c.value;
|
|
|
|
if (sampleBank>(parent->song.sample.size()/12)) {
|
|
|
|
sampleBank=parent->song.sample.size()/12;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_LEGATO:
|
2022-04-10 05:01:55 +00:00
|
|
|
chan[c.chan].baseFreq=NOTE_PERIODIC(c.value+((chan[c.chan].std.arp.will && !chan[c.chan].std.arp.mode)?(chan[c.chan].std.arp.val):(0)));
|
2022-03-27 16:06:56 +00:00
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_PORTA:
|
|
|
|
if (chan[c.chan].active && c.value2) {
|
2022-04-28 06:31:16 +00:00
|
|
|
if (parent->song.resetMacroOnPorta) chan[c.chan].macroInit(parent->getIns(chan[c.chan].ins,DIV_INS_VRC6));
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
2022-07-04 06:43:59 +00:00
|
|
|
if (!chan[c.chan].inPorta && c.value && !parent->song.brokenPortaArp && chan[c.chan].std.arp.will) chan[c.chan].baseFreq=NOTE_PERIODIC(chan[c.chan].note);
|
2022-03-27 16:06:56 +00:00
|
|
|
chan[c.chan].inPorta=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLMAX:
|
|
|
|
if (c.chan==2) return 63; // sawtooth has 6 bit volume
|
|
|
|
return 15; // pulse has 4 bit volume
|
|
|
|
break;
|
|
|
|
case DIV_ALWAYS_SET_VOLUME:
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::muteChannel(int ch, bool mute) {
|
|
|
|
isMuted[ch]=mute;
|
|
|
|
if (isMuted[ch]) {
|
|
|
|
chWrite(ch,0,0);
|
|
|
|
} else if (chan[ch].active) {
|
|
|
|
if (ch==2) { // sawtooth
|
|
|
|
chWrite(ch,0,chan[ch].outVol);
|
|
|
|
} else {
|
|
|
|
chWrite(ch,0,chan[ch].pcm?chan[ch].dacOut:((chan[ch].outVol&0xf)|((chan[ch].duty&7)<<4)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::forceIns() {
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* DivPlatformVRC6::getChanState(int ch) {
|
|
|
|
return &chan[ch];
|
|
|
|
}
|
|
|
|
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* DivPlatformVRC6::getChanMacroInt(int ch) {
|
|
|
|
return &chan[ch].std;
|
|
|
|
}
|
|
|
|
|
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* DivPlatformVRC6::getOscBuffer(int ch) {
|
|
|
|
return oscBuf[ch];
|
|
|
|
}
|
|
|
|
|
2022-03-27 16:06:56 +00:00
|
|
|
unsigned char* DivPlatformVRC6::getRegisterPool() {
|
|
|
|
return regPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformVRC6::getRegisterPoolSize() {
|
|
|
|
return 13;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::reset() {
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i]=DivPlatformVRC6::Channel();
|
2022-04-15 10:37:23 +00:00
|
|
|
chan[i].std.setEngine(parent);
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
2022-04-20 02:55:13 +00:00
|
|
|
// HELP
|
|
|
|
chan[2].vol=63;
|
|
|
|
chan[2].outVol=63;
|
2022-03-27 16:06:56 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0xffffffff,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sampleBank=0;
|
|
|
|
|
|
|
|
vrc6.reset();
|
|
|
|
// Initialize control register
|
|
|
|
rWrite(0x9003,0);
|
|
|
|
// Clear internal IRQ
|
|
|
|
rWrite(0xf000,0);
|
|
|
|
rWrite(0xf001,0);
|
|
|
|
rWrite(0xf002,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformVRC6::keyOffAffectsArp(int ch) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::setFlags(unsigned int flags) {
|
|
|
|
if (flags==2) { // Dendy
|
|
|
|
rate=COLOR_PAL*2.0/5.0;
|
|
|
|
} else if (flags==1) { // PAL
|
|
|
|
rate=COLOR_PAL*3.0/8.0;
|
|
|
|
} else { // NTSC
|
|
|
|
rate=COLOR_NTSC/2.0;
|
|
|
|
}
|
|
|
|
chipClock=rate;
|
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
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
oscBuf[i]->rate=rate/32;
|
|
|
|
}
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::notifyInsDeletion(void* ins) {
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i].std.notifyInsDeletion((DivInstrument*)ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::poke(unsigned int addr, unsigned short val) {
|
|
|
|
rWrite(addr,val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::poke(std::vector<DivRegWrite>& wlist) {
|
|
|
|
for (DivRegWrite& i: wlist) rWrite(i.addr,i.val);
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformVRC6::init(DivEngine* p, int channels, int sugRate, unsigned int flags) {
|
|
|
|
parent=p;
|
|
|
|
dumpWrites=false;
|
|
|
|
skipRegisterWrites=false;
|
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
|
|
|
writeOscBuf=0;
|
2022-03-27 16:06:56 +00:00
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
isMuted[i]=false;
|
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
|
|
|
oscBuf[i]=new DivDispatchOscBuffer;
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
|
|
|
setFlags(flags);
|
|
|
|
reset();
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformVRC6::quit() {
|
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
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
delete oscBuf[i];
|
|
|
|
}
|
2022-03-27 16:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DivPlatformVRC6::~DivPlatformVRC6() {
|
|
|
|
}
|