2022-02-23 07:52:30 +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 "segapcm.h"
|
|
|
|
#include "../engine.h"
|
2022-09-26 07:57:07 +00:00
|
|
|
#include "../../ta-log.h"
|
2022-02-23 07:52:30 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
//#define rWrite(a,v) if (!skipRegisterWrites) {pendingWrites[a]=v;}
|
|
|
|
//#define immWrite(a,v) if (!skipRegisterWrites) {writes.emplace(a,v); if (dumpWrites) {addWrite(a,v);} }
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::acquire(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;
|
|
|
|
// do a PCM cycle
|
|
|
|
pcmL=0; pcmR=0;
|
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
if (chan[i].pcm.sample>=0 && chan[i].pcm.sample<parent->song.sampleLen) {
|
2022-02-25 03:52:20 +00:00
|
|
|
DivSample* s=parent->getSample(chan[i].pcm.sample);
|
2022-08-28 00:59:56 +00:00
|
|
|
if (s->samples<=0) {
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[i].pcm.sample=-1;
|
2022-04-30 08:58:30 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=0;
|
2022-02-23 07:52:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!isMuted[i]) {
|
2022-04-30 08:58:30 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=s->data8[chan[i].pcm.pos>>8]*(chan[i].chVolL+chan[i].chVolR)>>1;
|
2022-02-24 08:57:45 +00:00
|
|
|
pcmL+=(s->data8[chan[i].pcm.pos>>8]*chan[i].chVolL);
|
|
|
|
pcmR+=(s->data8[chan[i].pcm.pos>>8]*chan[i].chVolR);
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
chan[i].pcm.pos+=chan[i].pcm.freq;
|
2022-08-28 01:50:57 +00:00
|
|
|
if (s->isLoopable() && chan[i].pcm.pos>=((unsigned int)s->loopEnd<<8)) {
|
|
|
|
chan[i].pcm.pos=s->loopStart<<8;
|
|
|
|
} else if (chan[i].pcm.pos>=(s->samples<<8)) {
|
2022-07-22 04:36:42 +00:00
|
|
|
chan[i].pcm.sample=-1;
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
2022-04-30 08:58:30 +00:00
|
|
|
} else {
|
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=0;
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
os[0]=pcmL;
|
|
|
|
if (os[0]<-32768) os[0]=-32768;
|
|
|
|
if (os[0]>32767) os[0]=32767;
|
|
|
|
|
|
|
|
os[1]=pcmR;
|
|
|
|
if (os[1]<-32768) os[1]=-32768;
|
|
|
|
if (os[1]>32767) os[1]=32767;
|
|
|
|
|
|
|
|
bufL[h]=os[0];
|
|
|
|
bufR[h]=os[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-15 20:01:11 +00:00
|
|
|
void DivPlatformSegaPCM::tick(bool sysTick) {
|
2022-02-23 07:52:30 +00:00
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
chan[i].std.next();
|
|
|
|
|
2022-09-23 08:21:18 +00:00
|
|
|
if (parent->song.newSegaPCM) {
|
2022-06-01 18:58:39 +00:00
|
|
|
if (chan[i].std.vol.had) {
|
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
|
|
|
chan[i].outVol=(chan[i].vol*MIN(chan[i].macroVolMul,chan[i].std.vol.val))/chan[i].macroVolMul;
|
2022-06-01 18:58:39 +00:00
|
|
|
chan[i].chVolL=(chan[i].outVol*chan[i].chPanL)/127;
|
|
|
|
chan[i].chVolR=(chan[i].outVol*chan[i].chPanR)/127;
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10002+(i<<3),chan[i].chVolL);
|
|
|
|
addWrite(0x10003+(i<<3),chan[i].chVolR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.arp.had) {
|
2022-02-23 07:52:30 +00:00
|
|
|
if (!chan[i].inPorta) {
|
2022-08-22 20:59:45 +00:00
|
|
|
chan[i].baseFreq=(parent->calcArp(chan[i].note,chan[i].std.arp.val)<<6);
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
2022-04-17 19:15:57 +00:00
|
|
|
|
2022-09-23 08:21:18 +00:00
|
|
|
if (parent->song.newSegaPCM) if (chan[i].std.panL.had) {
|
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].isNewSegaPCM) {
|
2022-06-01 18:58:39 +00:00
|
|
|
chan[i].chPanL=chan[i].std.panL.val&127;
|
|
|
|
chan[i].chVolL=(chan[i].outVol*chan[i].chPanL)/127;
|
|
|
|
} else {
|
|
|
|
chan[i].chVolL=chan[i].std.panL.val&127;
|
|
|
|
}
|
2022-04-17 19:15:57 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10002+(i<<3),chan[i].chVolL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-23 08:21:18 +00:00
|
|
|
if (parent->song.newSegaPCM) if (chan[i].std.panR.had) {
|
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].isNewSegaPCM) {
|
2022-06-01 18:58:39 +00:00
|
|
|
chan[i].chPanR=chan[i].std.panR.val&127;
|
|
|
|
chan[i].chVolR=(chan[i].outVol*chan[i].chPanR)/127;
|
|
|
|
} else {
|
|
|
|
chan[i].chVolR=chan[i].std.panR.val&127;
|
|
|
|
}
|
2022-04-17 19:15:57 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10003+(i<<3),chan[i].chVolR);
|
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
|
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==1 && chan[i].active) {
|
|
|
|
chan[i].keyOn=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chan[i].freqChanged || chan[i].keyOn || chan[i].keyOff) {
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[i].freq=chan[i].baseFreq+(chan[i].pitch>>1)-64;
|
|
|
|
if (chan[i].furnacePCM) {
|
|
|
|
double off=1.0;
|
|
|
|
if (chan[i].pcm.sample>=0 && chan[i].pcm.sample<parent->song.sampleLen) {
|
2022-02-25 03:52:20 +00:00
|
|
|
DivSample* s=parent->getSample(chan[i].pcm.sample);
|
2022-02-23 07:52:30 +00:00
|
|
|
off=(double)s->centerRate/8363.0;
|
|
|
|
}
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[i].pcm.freq=MIN(255,(15625+(off*parent->song.tuning*pow(2.0,double(chan[i].freq+256)/(64.0*12.0)))*255)/31250)+chan[i].pitch2;
|
2022-03-30 05:33:29 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10007+(i<<3),chan[i].pcm.freq);
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[i].freqChanged=false;
|
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].keyOn || chan[i].keyOff) {
|
|
|
|
if (chan[i].keyOn && !chan[i].keyOff) {
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10086+(i<<3),3);
|
|
|
|
}
|
|
|
|
chan[i].pcm.pos=0;
|
|
|
|
if (chan[i].furnacePCM) {
|
|
|
|
if (dumpWrites) { // Sega PCM writes
|
|
|
|
DivSample* s=parent->getSample(chan[i].pcm.sample);
|
|
|
|
int loopStart=s->getLoopStartPosition(DIV_SAMPLE_DEPTH_8BIT);
|
|
|
|
int actualLength=(s->getLoopEndPosition(DIV_SAMPLE_DEPTH_8BIT));
|
|
|
|
if (actualLength>0xfeff) actualLength=0xfeff;
|
2022-09-26 01:07:21 +00:00
|
|
|
addWrite(0x10086+(i<<3),3+((sampleOffSegaPCM[chan[i].pcm.sample]>>16)<<3));
|
|
|
|
addWrite(0x10084+(i<<3),(sampleOffSegaPCM[chan[i].pcm.sample])&0xff);
|
|
|
|
addWrite(0x10085+(i<<3),(sampleOffSegaPCM[chan[i].pcm.sample]>>8)&0xff);
|
|
|
|
addWrite(0x10006+(i<<3),MIN(255,((sampleOffSegaPCM[chan[i].pcm.sample]&0xffff)+actualLength-1)>>8));
|
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 (loopStart<0 || loopStart>=actualLength) {
|
2022-09-26 01:07:21 +00:00
|
|
|
addWrite(0x10086+(i<<3),2+((sampleOffSegaPCM[chan[i].pcm.sample]>>16)<<3));
|
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
|
|
|
} else {
|
2022-09-26 01:07:21 +00:00
|
|
|
int loopPos=(sampleOffSegaPCM[chan[i].pcm.sample]&0xffff)+loopStart+s->loopOffP;
|
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
|
|
|
addWrite(0x10004+(i<<3),loopPos&0xff);
|
|
|
|
addWrite(0x10005+(i<<3),(loopPos>>8)&0xff);
|
2022-09-26 01:07:21 +00:00
|
|
|
addWrite(0x10086+(i<<3),((sampleOffSegaPCM[chan[i].pcm.sample]>>16)<<3));
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (dumpWrites) { // Sega PCM writes
|
|
|
|
DivSample* s=parent->getSample(chan[i].pcm.sample);
|
|
|
|
int loopStart=s->getLoopStartPosition(DIV_SAMPLE_DEPTH_8BIT);
|
|
|
|
int actualLength=(s->getLoopEndPosition(DIV_SAMPLE_DEPTH_8BIT));
|
|
|
|
if (actualLength>65536) actualLength=65536;
|
2022-09-26 01:07:21 +00:00
|
|
|
addWrite(0x10086+(i<<3),3+((sampleOffSegaPCM[chan[i].pcm.sample]>>16)<<3));
|
|
|
|
addWrite(0x10084+(i<<3),(sampleOffSegaPCM[chan[i].pcm.sample])&0xff);
|
|
|
|
addWrite(0x10085+(i<<3),(sampleOffSegaPCM[chan[i].pcm.sample]>>8)&0xff);
|
|
|
|
addWrite(0x10006+(i<<3),MIN(255,((sampleOffSegaPCM[chan[i].pcm.sample]&0xffff)+actualLength-1)>>8));
|
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 (loopStart<0 || loopStart>=actualLength) {
|
2022-09-26 01:07:21 +00:00
|
|
|
addWrite(0x10086+(i<<3),2+((sampleOffSegaPCM[chan[i].pcm.sample]>>16)<<3));
|
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
|
|
|
} else {
|
2022-09-26 01:07:21 +00:00
|
|
|
int loopPos=(sampleOffSegaPCM[chan[i].pcm.sample]&0xffff)+loopStart+s->loopOffP;
|
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
|
|
|
addWrite(0x10004+(i<<3),loopPos&0xff);
|
|
|
|
addWrite(0x10005+(i<<3),(loopPos>>8)&0xff);
|
2022-09-26 01:07:21 +00:00
|
|
|
addWrite(0x10086+(i<<3),((sampleOffSegaPCM[chan[i].pcm.sample]>>16)<<3));
|
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
|
|
|
}
|
|
|
|
addWrite(0x10007+(i<<3),chan[i].pcm.freq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[i].keyOn=false;
|
|
|
|
chan[i].keyOff=false;
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::muteChannel(int ch, bool mute) {
|
|
|
|
isMuted[ch]=mute;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformSegaPCM::dispatch(DivCommand c) {
|
|
|
|
switch (c.cmd) {
|
|
|
|
case DIV_CMD_NOTE_ON: {
|
2022-04-21 07:24:06 +00:00
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_AMIGA);
|
2022-02-23 07:52:30 +00:00
|
|
|
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->type==DIV_INS_SEGAPCM) {
|
|
|
|
chan[c.chan].macroVolMul=(ins->type==DIV_INS_AMIGA)?64:127;
|
2022-09-23 08:21:18 +00:00
|
|
|
chan[c.chan].isNewSegaPCM=(ins->type==DIV_INS_SEGAPCM);
|
2022-05-14 04:04:40 +00:00
|
|
|
chan[c.chan].pcm.sample=ins->amiga.getSample(c.value);
|
2022-02-23 07:52:30 +00:00
|
|
|
if (chan[c.chan].pcm.sample<0 || chan[c.chan].pcm.sample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].pcm.sample=-1;
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10086+(c.chan<<3),3);
|
|
|
|
}
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(NULL);
|
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-02-23 07:52:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-04-15 06:26:44 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
2022-04-17 19:15:57 +00:00
|
|
|
chan[c.chan].note=c.value;
|
2022-04-15 06:26:44 +00:00
|
|
|
chan[c.chan].baseFreq=(c.value<<6);
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[c.chan].furnacePCM=true;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(ins);
|
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
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
2022-02-23 07:52:30 +00:00
|
|
|
} else {
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(NULL);
|
2022-02-23 07:52:30 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].pcm.sample=12*sampleBank+chan[c.chan].note%12;
|
|
|
|
if (chan[c.chan].pcm.sample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].pcm.sample=-1;
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10086+(c.chan<<3),3);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-02-25 03:52:20 +00:00
|
|
|
chan[c.chan].pcm.freq=MIN(255,(parent->getSample(chan[c.chan].pcm.sample)->rate*255)/31250);
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[c.chan].furnacePCM=false;
|
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
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_OFF:
|
|
|
|
chan[c.chan].pcm.sample=-1;
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10086+(c.chan<<3),3);
|
|
|
|
}
|
|
|
|
chan[c.chan].keyOff=true;
|
|
|
|
chan[c.chan].keyOn=false;
|
|
|
|
chan[c.chan].active=false;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(NULL);
|
2022-02-23 07:52:30 +00:00
|
|
|
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;
|
|
|
|
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-02-23 07:52:30 +00:00
|
|
|
chan[c.chan].outVol=c.value;
|
|
|
|
}
|
2022-09-23 08:21:18 +00:00
|
|
|
if (parent->song.newSegaPCM && chan[c.chan].isNewSegaPCM) {
|
2022-06-01 18:58:39 +00:00
|
|
|
chan[c.chan].chVolL=(c.value*chan[c.chan].chPanL)/127;
|
|
|
|
chan[c.chan].chVolR=(c.value*chan[c.chan].chPanR)/127;
|
|
|
|
} else {
|
|
|
|
chan[c.chan].chVolL=c.value;
|
|
|
|
chan[c.chan].chVolR=c.value;
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10002+(c.chan<<3),chan[c.chan].chVolL);
|
|
|
|
addWrite(0x10003+(c.chan<<3),chan[c.chan].chVolR);
|
|
|
|
}
|
|
|
|
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) {
|
|
|
|
chan[c.chan].insChanged=true;
|
|
|
|
}
|
|
|
|
chan[c.chan].ins=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PANNING: {
|
2022-09-23 08:21:18 +00:00
|
|
|
if (parent->song.newSegaPCM && chan[c.chan].isNewSegaPCM) {
|
2022-06-01 18:58:39 +00:00
|
|
|
chan[c.chan].chPanL=c.value>>1;
|
|
|
|
chan[c.chan].chPanR=c.value2>>1;
|
|
|
|
chan[c.chan].chVolL=(chan[c.chan].outVol*chan[c.chan].chPanL)/127;
|
|
|
|
chan[c.chan].chVolR=(chan[c.chan].outVol*chan[c.chan].chPanR)/127;
|
|
|
|
} else {
|
|
|
|
chan[c.chan].chVolL=c.value>>1;
|
|
|
|
chan[c.chan].chVolR=c.value2>>1;
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10002+(c.chan<<3),chan[c.chan].chVolL);
|
|
|
|
addWrite(0x10003+(c.chan<<3),chan[c.chan].chVolR);
|
|
|
|
}
|
|
|
|
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 04:19:16 +00:00
|
|
|
int destFreq=(c.value2<<6);
|
2022-02-23 07:52:30 +00:00
|
|
|
int newFreq;
|
|
|
|
bool return2=false;
|
|
|
|
if (destFreq>chan[c.chan].baseFreq) {
|
2022-03-24 04:19:16 +00:00
|
|
|
newFreq=chan[c.chan].baseFreq+c.value*4;
|
2022-02-23 07:52:30 +00:00
|
|
|
if (newFreq>=destFreq) {
|
|
|
|
newFreq=destFreq;
|
|
|
|
return2=true;
|
|
|
|
}
|
|
|
|
} else {
|
2022-03-24 04:19:16 +00:00
|
|
|
newFreq=chan[c.chan].baseFreq-c.value*4;
|
2022-02-23 07:52:30 +00:00
|
|
|
if (newFreq<=destFreq) {
|
|
|
|
newFreq=destFreq;
|
|
|
|
return2=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[c.chan].baseFreq=newFreq;
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
if (return2) {
|
|
|
|
chan[c.chan].inPorta=false;
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_LEGATO: {
|
2022-03-24 04:19:16 +00:00
|
|
|
chan[c.chan].baseFreq=(c.value<<6);
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
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_ALWAYS_SET_VOLUME:
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLMAX:
|
|
|
|
return 127;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_PORTA:
|
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=(chan[c.chan].note<<6);
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[c.chan].inPorta=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_NOTE:
|
|
|
|
break;
|
|
|
|
case DIV_CMD_SAMPLE_FREQ:
|
|
|
|
chan[c.chan].pcm.freq=c.value;
|
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0x10007+(c.chan<<3),chan[c.chan].pcm.freq);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//printf("WARNING: unimplemented command %d\n",c.cmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::forceIns() {
|
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::notifyInsChange(int ins) {
|
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
if (chan[i].ins==ins) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* DivPlatformSegaPCM::getChanState(int ch) {
|
|
|
|
return &chan[ch];
|
|
|
|
}
|
|
|
|
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* DivPlatformSegaPCM::getChanMacroInt(int ch) {
|
|
|
|
return &chan[ch].std;
|
|
|
|
}
|
|
|
|
|
2022-04-30 08:58:30 +00:00
|
|
|
DivDispatchOscBuffer* DivPlatformSegaPCM::getOscBuffer(int ch) {
|
|
|
|
return oscBuf[ch];
|
|
|
|
}
|
|
|
|
|
2022-02-23 07:52:30 +00:00
|
|
|
unsigned char* DivPlatformSegaPCM::getRegisterPool() {
|
|
|
|
return regPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformSegaPCM::getRegisterPoolSize() {
|
|
|
|
return 256;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::poke(unsigned int addr, unsigned short val) {
|
|
|
|
//immWrite(addr,val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::poke(std::vector<DivRegWrite>& wlist) {
|
|
|
|
//for (DivRegWrite& i: wlist) immWrite(i.addr,i.val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::reset() {
|
|
|
|
while (!writes.empty()) writes.pop();
|
|
|
|
memset(regPool,0,256);
|
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
chan[i]=DivPlatformSegaPCM::Channel();
|
2022-04-15 10:37:23 +00:00
|
|
|
chan[i].std.setEngine(parent);
|
2022-02-23 07:52:30 +00:00
|
|
|
chan[i].vol=0x7f;
|
|
|
|
chan[i].outVol=0x7f;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastBusy=60;
|
|
|
|
pcmCycles=0;
|
|
|
|
pcmL=0;
|
|
|
|
pcmR=0;
|
|
|
|
sampleBank=0;
|
|
|
|
delay=0;
|
|
|
|
|
|
|
|
if (dumpWrites) {
|
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
addWrite(0x10086+(i<<3),3);
|
|
|
|
addWrite(0x10002+(i<<3),0x7f);
|
|
|
|
addWrite(0x10003+(i<<3),0x7f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-27 04:50:20 +00:00
|
|
|
void DivPlatformSegaPCM::renderSamples(int sysID) {
|
2022-09-26 07:57:07 +00:00
|
|
|
size_t memPos=0;
|
|
|
|
|
|
|
|
for (int i=0; i<parent->song.sampleLen; i++) {
|
|
|
|
DivSample* sample=parent->getSample(i);
|
|
|
|
unsigned int alignedSize=(sample->getLoopEndPosition(DIV_SAMPLE_DEPTH_8BIT)+0xff)&(~0xff);
|
|
|
|
if (alignedSize>65536) alignedSize=65536;
|
|
|
|
if ((memPos&0xff0000)!=((memPos+alignedSize)&0xff0000)) {
|
|
|
|
memPos=(memPos+0xffff)&0xff0000;
|
|
|
|
}
|
|
|
|
logV("- sample %d will be at %x with length %x",i,memPos,alignedSize);
|
|
|
|
if (memPos>=16777216) break;
|
|
|
|
sampleOffSegaPCM[i]=memPos;
|
|
|
|
unsigned int readPos=0;
|
|
|
|
for (unsigned int j=0; j<alignedSize; j++) {
|
|
|
|
if (readPos>=(unsigned int)sample->getLoopEndPosition(DIV_SAMPLE_DEPTH_8BIT)) {
|
|
|
|
if (sample->isLoopable()) {
|
|
|
|
readPos=sample->getLoopStartPosition(DIV_SAMPLE_DEPTH_8BIT);
|
|
|
|
memPos++;
|
|
|
|
} else {
|
|
|
|
memPos++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memPos++;
|
|
|
|
}
|
|
|
|
readPos++;
|
|
|
|
if (memPos>=16777216) break;
|
|
|
|
}
|
|
|
|
sample->loopOffP=readPos-sample->getLoopStartPosition(DIV_SAMPLE_DEPTH_8BIT);
|
|
|
|
if (memPos>=16777216) break;
|
|
|
|
}
|
2022-09-26 01:07:21 +00:00
|
|
|
}
|
|
|
|
|
2022-09-30 01:13:40 +00:00
|
|
|
void DivPlatformSegaPCM::setFlags(const DivConfig& flags) {
|
2022-02-23 07:52:30 +00:00
|
|
|
chipClock=8000000.0;
|
2022-12-04 07:04:42 +00:00
|
|
|
CHECK_CUSTOM_CLOCK;
|
|
|
|
rate=chipClock/256;
|
2022-04-30 08:58:30 +00:00
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
oscBuf[i]->rate=rate;
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformSegaPCM::isStereo() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-30 01:13:40 +00:00
|
|
|
int DivPlatformSegaPCM::init(DivEngine* p, int channels, int sugRate, const DivConfig& flags) {
|
2022-02-23 07:52:30 +00:00
|
|
|
parent=p;
|
|
|
|
dumpWrites=false;
|
|
|
|
skipRegisterWrites=false;
|
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
isMuted[i]=false;
|
2022-04-30 08:58:30 +00:00
|
|
|
oscBuf[i]=new DivDispatchOscBuffer;
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
setFlags(flags);
|
|
|
|
reset();
|
|
|
|
|
|
|
|
return 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformSegaPCM::quit() {
|
2022-04-30 08:58:30 +00:00
|
|
|
for (int i=0; i<16; i++) {
|
|
|
|
delete oscBuf[i];
|
|
|
|
}
|
2022-02-23 07:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DivPlatformSegaPCM::~DivPlatformSegaPCM() {
|
|
|
|
}
|