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.
|
|
|
|
*/
|
|
|
|
|
2022-01-14 05:02:10 +00:00
|
|
|
#include "ay8930.h"
|
|
|
|
#include "../engine.h"
|
2022-03-27 01:55:43 +00:00
|
|
|
#include "../../ta-log.h"
|
2022-01-14 05:02:10 +00:00
|
|
|
#include "sound/ay8910.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define rWrite(a,v) if (!skipRegisterWrites) {pendingWrites[a]=v;}
|
2022-05-02 17:38:17 +00:00
|
|
|
#define immWrite2(a,v) if (!skipRegisterWrites) {writes.emplace(a,v); if (dumpWrites) {addWrite(a,v);} }
|
2022-01-14 05:02:10 +00:00
|
|
|
|
2022-05-07 14:00:22 +00:00
|
|
|
#define CHIP_DIVIDER (clockSel?8:4)
|
2022-01-14 05:02:10 +00:00
|
|
|
|
2022-02-02 07:14:42 +00:00
|
|
|
const char* regCheatSheetAY8930[]={
|
|
|
|
"FreqL_A", "00",
|
|
|
|
"FreqH_A", "01",
|
|
|
|
"FreqL_B", "02",
|
|
|
|
"FreqH_B", "03",
|
|
|
|
"FreqL_C", "04",
|
|
|
|
"FreqH_C", "05",
|
|
|
|
"FreqNoise", "06",
|
|
|
|
"Enable", "07",
|
|
|
|
"Volume_A", "08",
|
|
|
|
"Volume_B", "09",
|
|
|
|
"Volume_C", "0A",
|
|
|
|
"FreqL_EnvA", "0B",
|
|
|
|
"FreqH_EnvA", "0C",
|
|
|
|
"Control_EnvA", "0D",
|
|
|
|
"PortA", "0E",
|
|
|
|
"PortB", "0F",
|
|
|
|
"FreqL_EnvB", "10",
|
|
|
|
"FreqH_EnvB", "11",
|
|
|
|
"FreqL_EnvC", "12",
|
|
|
|
"FreqH_EnvC", "13",
|
|
|
|
"Control_EnvB", "14",
|
|
|
|
"Control_EnvC", "15",
|
|
|
|
"Duty_A", "16",
|
|
|
|
"Duty_B", "17",
|
|
|
|
"Duty_C", "18",
|
|
|
|
"NoiseAND", "19",
|
|
|
|
"NoiseOR", "1A",
|
|
|
|
"TEST", "1F",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2022-05-02 17:38:17 +00:00
|
|
|
void DivPlatformAY8930::immWrite(unsigned char a, unsigned char v) {
|
|
|
|
if ((int)bank!=(a>>4)) {
|
|
|
|
bank=a>>4;
|
2022-05-04 14:04:20 +00:00
|
|
|
immWrite2(0x0d, 0xa0|(bank<<4)|chan[0].envelope.mode);
|
2022-05-02 17:38:17 +00:00
|
|
|
}
|
|
|
|
if (a==0x0d) {
|
|
|
|
immWrite2(0x0d,0xa0|(bank<<4)|(v&15));
|
|
|
|
} else {
|
|
|
|
immWrite2(a&15,v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-03 23:38:57 +00:00
|
|
|
const char** DivPlatformAY8930::getRegisterSheet() {
|
|
|
|
return regCheatSheetAY8930;
|
|
|
|
}
|
|
|
|
|
2022-09-24 01:15:20 +00:00
|
|
|
/* C program to generate this table:
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
for (int i=0; i<256; i++) {
|
|
|
|
if ((i&15)==0) printf("\n ");
|
|
|
|
printf(" %d,",(int)round(pow((double)i/255.0,0.3)*31.0));
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
2022-09-24 01:15:20 +00:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
const unsigned char dacLogTableAY8930[256]={
|
|
|
|
0, 6, 7, 8, 9, 10, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13,
|
|
|
|
14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16,
|
|
|
|
17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19,
|
|
|
|
19, 19, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20,
|
|
|
|
20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22,
|
|
|
|
22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23,
|
|
|
|
23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
|
|
|
|
26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27,
|
|
|
|
27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 28, 28,
|
|
|
|
28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
|
|
|
28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
|
|
|
29, 29, 29, 29, 29, 29, 29, 29, 29, 30, 30, 30, 30, 30, 30, 30,
|
|
|
|
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
|
|
|
30, 30, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31
|
|
|
|
};
|
|
|
|
|
|
|
|
void DivPlatformAY8930::runDAC() {
|
2022-09-25 04:16:47 +00:00
|
|
|
for (int i=0; i<3; i++) {
|
2022-09-25 22:31:01 +00:00
|
|
|
if (chan[i].active && chan[i].curPSGMode.dac && chan[i].dac.sample!=-1) {
|
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].dac.period+=chan[i].dac.rate;
|
|
|
|
bool end=false;
|
|
|
|
bool changed=false;
|
2022-09-24 01:15:20 +00:00
|
|
|
int prevOut=chan[i].dac.out;
|
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
|
|
|
while (chan[i].dac.period>rate && !end) {
|
|
|
|
DivSample* s=parent->getSample(chan[i].dac.sample);
|
2022-08-28 00:59:56 +00:00
|
|
|
if (s->samples<=0) {
|
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].dac.sample=-1;
|
2022-09-24 00:34:44 +00:00
|
|
|
immWrite(0x08+i,0);
|
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
|
|
|
end=true;
|
|
|
|
break;
|
|
|
|
}
|
2022-09-24 01:15:20 +00:00
|
|
|
unsigned char dacData=dacLogTableAY8930[(unsigned char)s->data8[chan[i].dac.pos]^0x80];
|
2022-09-25 04:16:47 +00:00
|
|
|
chan[i].dac.out=(chan[i].active && !isMuted[i])?MAX(0,dacData-(31-chan[i].outVol)):0;
|
2022-09-24 01:15:20 +00:00
|
|
|
if (prevOut!=chan[i].dac.out) {
|
|
|
|
prevOut=chan[i].dac.out;
|
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
|
|
|
changed=true;
|
|
|
|
}
|
|
|
|
chan[i].dac.pos++;
|
2022-08-28 01:50:57 +00:00
|
|
|
if (s->isLoopable() && chan[i].dac.pos>=s->loopEnd) {
|
|
|
|
chan[i].dac.pos=s->loopStart;
|
|
|
|
} else if (chan[i].dac.pos>=(int)s->samples) {
|
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].dac.sample=-1;
|
2022-09-24 04:12:39 +00:00
|
|
|
//immWrite(0x08+i,0);
|
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
|
|
|
end=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
chan[i].dac.period-=rate;
|
|
|
|
}
|
|
|
|
if (changed && !end) {
|
|
|
|
if (!isMuted[i]) {
|
2022-09-24 00:34:44 +00:00
|
|
|
immWrite(0x08+i,chan[i].dac.out);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-24 01:15:20 +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
|
|
|
|
2022-09-24 01:15:20 +00:00
|
|
|
void DivPlatformAY8930::checkWrites() {
|
2022-01-14 05:02:10 +00:00
|
|
|
while (!writes.empty()) {
|
|
|
|
QueuedWrite w=writes.front();
|
2022-05-02 17:38:17 +00:00
|
|
|
ay->address_w(w.addr);
|
|
|
|
ay->data_w(w.val);
|
|
|
|
if (w.addr!=0x0d && (regPool[0x0d]&0xf0)==0xb0) {
|
|
|
|
regPool[(w.addr&0x0f)|0x10]=w.val;
|
2022-01-14 05:02:10 +00:00
|
|
|
} else {
|
2022-05-02 17:38:17 +00:00
|
|
|
regPool[w.addr&0x0f]=w.val;
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
writes.pop();
|
|
|
|
}
|
2022-09-24 01:15:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformAY8930::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
|
|
|
if (ayBufLen<len) {
|
|
|
|
ayBufLen=len;
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
delete[] ayBuf[i];
|
|
|
|
ayBuf[i]=new short[ayBufLen];
|
2022-01-29 05:20:27 +00:00
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
2022-04-30 19:36:12 +00:00
|
|
|
|
2022-09-24 01:15:20 +00:00
|
|
|
for (size_t i=0; i<len; i++) {
|
|
|
|
runDAC();
|
|
|
|
checkWrites();
|
|
|
|
|
|
|
|
ay->sound_stream_update(ayBuf,1);
|
|
|
|
if (stereo) {
|
|
|
|
bufL[i+start]=ayBuf[0][0]+ayBuf[1][0]+((ayBuf[2][0]*stereoSep)>>8);
|
|
|
|
bufR[i+start]=((ayBuf[0][0]*stereoSep)>>8)+ayBuf[1][0]+ayBuf[2][0];
|
|
|
|
} else {
|
|
|
|
bufL[i+start]=ayBuf[0][0]+ayBuf[1][0]+ayBuf[2][0];
|
|
|
|
bufR[i+start]=bufL[i+start];
|
2022-04-30 19:36:12 +00:00
|
|
|
}
|
2022-09-24 01:15:20 +00:00
|
|
|
|
|
|
|
oscBuf[0]->data[oscBuf[0]->needle++]=ayBuf[0][0]<<2;
|
|
|
|
oscBuf[1]->data[oscBuf[1]->needle++]=ayBuf[1][0]<<2;
|
|
|
|
oscBuf[2]->data[oscBuf[2]->needle++]=ayBuf[2][0]<<2;
|
2022-04-30 19:36:12 +00:00
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
|
2022-03-27 01:55:43 +00:00
|
|
|
void DivPlatformAY8930::updateOutSel(bool immediate) {
|
|
|
|
if (immediate) {
|
|
|
|
immWrite(0x07,
|
2022-09-25 22:31:01 +00:00
|
|
|
~((chan[0].curPSGMode.getTone())|
|
|
|
|
((chan[1].curPSGMode.getTone())<<1)|
|
|
|
|
((chan[2].curPSGMode.getTone())<<2)|
|
|
|
|
((chan[0].curPSGMode.getNoise())<<2)|
|
|
|
|
((chan[1].curPSGMode.getNoise())<<3)|
|
|
|
|
((chan[2].curPSGMode.getNoise())<<4)|
|
2022-03-27 01:55:43 +00:00
|
|
|
((!ioPortA)<<6)|
|
|
|
|
((!ioPortB)<<7)));
|
|
|
|
} else {
|
|
|
|
rWrite(0x07,
|
2022-09-25 22:31:01 +00:00
|
|
|
~((chan[0].curPSGMode.getTone())|
|
|
|
|
((chan[1].curPSGMode.getTone())<<1)|
|
|
|
|
((chan[2].curPSGMode.getTone())<<2)|
|
|
|
|
((chan[0].curPSGMode.getNoise())<<2)|
|
|
|
|
((chan[1].curPSGMode.getNoise())<<3)|
|
|
|
|
((chan[2].curPSGMode.getNoise())<<4)|
|
2022-03-27 01:55:43 +00:00
|
|
|
((!ioPortA)<<6)|
|
|
|
|
((!ioPortB)<<7)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-14 05:02:10 +00:00
|
|
|
const unsigned char regPeriodL[3]={
|
|
|
|
0x0b, 0x10, 0x12
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char regPeriodH[3]={
|
|
|
|
0x0c, 0x11, 0x13
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char regMode[3]={
|
|
|
|
0x0d, 0x14, 0x15
|
|
|
|
};
|
|
|
|
|
2022-04-15 20:01:11 +00:00
|
|
|
void DivPlatformAY8930::tick(bool sysTick) {
|
2022-01-14 05:02:10 +00:00
|
|
|
// PSG
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i].std.next();
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.vol.had) {
|
|
|
|
chan[i].outVol=MIN(31,chan[i].std.vol.val)-(31-(chan[i].vol&31));
|
2022-01-14 05:02:10 +00:00
|
|
|
if (chan[i].outVol<0) chan[i].outVol=0;
|
2022-09-25 22:28:04 +00:00
|
|
|
if (!chan[i].nextPSGMode.dac) {
|
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 (isMuted[i]) {
|
|
|
|
rWrite(0x08+i,0);
|
|
|
|
} else {
|
2022-09-25 22:28:04 +00:00
|
|
|
rWrite(0x08+i,(chan[i].outVol&31)|((chan[i].nextPSGMode.getEnvelope())<<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
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-17 06:21:08 +00:00
|
|
|
if (NEW_ARP_STRAT) {
|
|
|
|
chan[i].handleArp();
|
|
|
|
} else if (chan[i].std.arp.had) {
|
2022-01-14 05:02:10 +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-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.duty.had) {
|
|
|
|
rWrite(0x06,chan[i].std.duty.val);
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.wave.had) {
|
2022-09-25 22:28:04 +00:00
|
|
|
if (!chan[i].nextPSGMode.dac) {
|
|
|
|
chan[i].nextPSGMode.val=(chan[i].std.wave.val+1)&7;
|
|
|
|
if (chan[i].active) {
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[i].curPSGMode.val=chan[i].nextPSGMode.val;
|
2022-09-25 22:28:04 +00:00
|
|
|
}
|
|
|
|
if (isMuted[i]) {
|
|
|
|
rWrite(0x08+i,0);
|
|
|
|
} else {
|
|
|
|
rWrite(0x08+i,(chan[i].outVol&31)|((chan[i].nextPSGMode.getEnvelope())<<3));
|
|
|
|
}
|
2022-01-18 20:48:40 +00:00
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
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-04-15 08:16:14 +00:00
|
|
|
if (chan[i].std.phaseReset.had) {
|
|
|
|
if (chan[i].std.phaseReset.val==1) {
|
2022-09-25 22:28:04 +00:00
|
|
|
if (chan[i].nextPSGMode.dac) {
|
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 (dumpWrites) addWrite(0xffff0002+(i<<8),0);
|
|
|
|
DivInstrument* ins=parent->getIns(chan[i].ins,DIV_INS_AY8930);
|
|
|
|
chan[i].dac.sample=ins->amiga.getSample(chan[i].note);
|
|
|
|
if (chan[i].dac.sample<0 || chan[i].dac.sample>=parent->song.sampleLen) {
|
|
|
|
if (dumpWrites) {
|
|
|
|
rWrite(0x08+i,0);
|
|
|
|
addWrite(0xffff0000+(i<<8),chan[i].dac.sample);
|
|
|
|
}
|
|
|
|
chan[i].dac.pos=0;
|
|
|
|
chan[i].dac.period=0;
|
|
|
|
chan[i].keyOn=true;
|
|
|
|
}
|
|
|
|
}
|
2022-04-15 08:16:14 +00:00
|
|
|
oldWrites[0x08+i]=-1;
|
|
|
|
oldWrites[regMode[i]]=-1;
|
|
|
|
}
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.ex1.had) { // duty
|
|
|
|
rWrite(0x16+i,chan[i].std.ex1.val);
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.ex2.had) {
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[i].envelope.mode=chan[i].std.ex2.val;
|
|
|
|
rWrite(regMode[i],chan[i].envelope.mode);
|
2022-01-27 20:31:48 +00:00
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.ex3.had) {
|
|
|
|
chan[i].autoEnvNum=chan[i].std.ex3.val;
|
2022-01-27 20:31:48 +00:00
|
|
|
chan[i].freqChanged=true;
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[i].std.alg.will) chan[i].autoEnvDen=1;
|
2022-01-27 20:31:48 +00:00
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.alg.had) {
|
|
|
|
chan[i].autoEnvDen=chan[i].std.alg.val;
|
2022-01-27 20:31:48 +00:00
|
|
|
chan[i].freqChanged=true;
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[i].std.ex3.will) chan[i].autoEnvNum=1;
|
2022-01-27 20:31:48 +00:00
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.fb.had) {
|
|
|
|
ayNoiseAnd=chan[i].std.fb.val;
|
2022-01-31 22:45:02 +00:00
|
|
|
immWrite(0x19,ayNoiseAnd);
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.fms.had) {
|
|
|
|
ayNoiseOr=chan[i].std.fms.val;
|
2022-01-31 22:45:02 +00:00
|
|
|
immWrite(0x1a,ayNoiseOr);
|
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
if (chan[i].freqChanged || chan[i].keyOn || chan[i].keyOff) {
|
2022-12-17 07:07:24 +00:00
|
|
|
chan[i].freq=parent->calcFreq(chan[i].baseFreq,chan[i].pitch,chan[i].fixedArp?chan[i].baseNoteOverride:chan[i].arpOff,chan[i].fixedArp,true,0,chan[i].pitch2,chipClock,CHIP_DIVIDER);
|
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].dac.furnaceDAC) {
|
|
|
|
double off=1.0;
|
|
|
|
if (chan[i].dac.sample>=0 && chan[i].dac.sample<parent->song.sampleLen) {
|
|
|
|
DivSample* s=parent->getSample(chan[i].dac.sample);
|
|
|
|
if (s->centerRate<1) {
|
|
|
|
off=1.0;
|
|
|
|
} else {
|
|
|
|
off=8363.0/(double)s->centerRate;
|
|
|
|
}
|
|
|
|
}
|
2022-09-24 01:15:20 +00:00
|
|
|
chan[i].dac.rate=((double)chipClock*4.0)/(double)(MAX(1,off*chan[i].freq));
|
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 (dumpWrites) addWrite(0xffff0001+(i<<8),chan[i].dac.rate);
|
|
|
|
}
|
2022-02-03 07:46:42 +00:00
|
|
|
if (chan[i].freq>65535) chan[i].freq=65535;
|
2022-01-14 05:02:10 +00:00
|
|
|
if (chan[i].keyOn) {
|
2022-09-25 22:28:04 +00:00
|
|
|
if (!chan[i].nextPSGMode.dac) {
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[i].curPSGMode.val=chan[i].nextPSGMode.val;
|
2022-09-25 04:16:47 +00:00
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
if (chan[i].insChanged) {
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[i].std.ex1.will) immWrite(0x16+i,chan[i].duty);
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[i].insChanged=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chan[i].keyOff) {
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[i].curPSGMode.val=0;
|
2022-01-14 05:02:10 +00:00
|
|
|
rWrite(0x08+i,0);
|
|
|
|
}
|
|
|
|
rWrite((i)<<1,chan[i].freq&0xff);
|
|
|
|
rWrite(1+((i)<<1),chan[i].freq>>8);
|
|
|
|
if (chan[i].keyOn) chan[i].keyOn=false;
|
|
|
|
if (chan[i].keyOff) chan[i].keyOff=false;
|
2022-01-20 08:23:03 +00:00
|
|
|
if (chan[i].freqChanged && chan[i].autoEnvNum>0 && chan[i].autoEnvDen>0) {
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[i].envelope.period=(chan[i].freq*chan[i].autoEnvDen/chan[i].autoEnvNum)>>4;
|
|
|
|
immWrite(regPeriodL[i],chan[i].envelope.period);
|
|
|
|
immWrite(regPeriodH[i],chan[i].envelope.period>>8);
|
2022-01-20 08:23:03 +00:00
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[i].freqChanged=false;
|
|
|
|
}
|
|
|
|
|
2022-05-04 14:04:20 +00:00
|
|
|
if (chan[i].envelope.slide!=0) {
|
|
|
|
chan[i].envelope.slideLow+=chan[i].envelope.slide;
|
|
|
|
while (chan[i].envelope.slideLow>7) {
|
|
|
|
chan[i].envelope.slideLow-=8;
|
|
|
|
if (chan[i].envelope.period<0xffff) {
|
|
|
|
chan[i].envelope.period++;
|
|
|
|
immWrite(regPeriodL[i],chan[i].envelope.period);
|
|
|
|
immWrite(regPeriodH[i],chan[i].envelope.period>>8);
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-04 14:04:20 +00:00
|
|
|
while (chan[i].envelope.slideLow<-7) {
|
|
|
|
chan[i].envelope.slideLow+=8;
|
|
|
|
if (chan[i].envelope.period>0) {
|
|
|
|
chan[i].envelope.period--;
|
|
|
|
immWrite(regPeriodL[i],chan[i].envelope.period);
|
|
|
|
immWrite(regPeriodH[i],chan[i].envelope.period>>8);
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-27 01:55:43 +00:00
|
|
|
updateOutSel();
|
2022-01-14 05:02:10 +00:00
|
|
|
|
|
|
|
for (int i=0; i<32; i++) {
|
|
|
|
if (pendingWrites[i]!=oldWrites[i]) {
|
|
|
|
immWrite(i,pendingWrites[i]&0xff);
|
|
|
|
oldWrites[i]=pendingWrites[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformAY8930::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_AY8930);
|
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-09-25 22:28:04 +00:00
|
|
|
chan[c.chan].nextPSGMode.dac=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
|
|
|
} else if (chan[c.chan].dac.furnaceDAC) {
|
2022-09-25 22:28:04 +00:00
|
|
|
chan[c.chan].nextPSGMode.dac=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
|
|
|
}
|
2022-09-25 22:28:04 +00:00
|
|
|
if (chan[c.chan].nextPSGMode.dac) {
|
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 (skipRegisterWrites) break;
|
|
|
|
if (ins->type==DIV_INS_AMIGA || ins->amiga.useSample) {
|
2022-12-29 08:12:00 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) chan[c.chan].dac.sample=ins->amiga.getSample(c.value);
|
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[c.chan].dac.sample<0 || chan[c.chan].dac.sample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].dac.sample=-1;
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if (dumpWrites) {
|
|
|
|
rWrite(0x08+c.chan,0);
|
|
|
|
addWrite(0xffff0000+(c.chan<<8),chan[c.chan].dac.sample);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[c.chan].dac.pos=0;
|
|
|
|
chan[c.chan].dac.period=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;
|
|
|
|
chan[c.chan].macroInit(ins);
|
|
|
|
if (!parent->song.brokenOutVol && !chan[c.chan].std.vol.will) {
|
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
}
|
|
|
|
//chan[c.chan].keyOn=true;
|
|
|
|
chan[c.chan].dac.furnaceDAC=true;
|
|
|
|
} else {
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].dac.sample=12*sampleBank+chan[c.chan].note%12;
|
|
|
|
if (chan[c.chan].dac.sample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].dac.sample=-1;
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if (dumpWrites) addWrite(0xffff0000+(c.chan<<8),chan[c.chan].dac.sample);
|
|
|
|
}
|
|
|
|
chan[c.chan].dac.pos=0;
|
|
|
|
chan[c.chan].dac.period=0;
|
2022-08-27 09:20:33 +00:00
|
|
|
chan[c.chan].dac.rate=parent->getSample(chan[c.chan].dac.sample)->rate*4096;
|
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 (dumpWrites) {
|
|
|
|
rWrite(0x08+c.chan,0);
|
|
|
|
addWrite(0xffff0001+(c.chan<<8),chan[c.chan].dac.rate);
|
|
|
|
}
|
|
|
|
chan[c.chan].dac.furnaceDAC=false;
|
|
|
|
}
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[c.chan].curPSGMode.dac=chan[c.chan].nextPSGMode.dac;
|
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
|
|
|
break;
|
|
|
|
}
|
2022-01-19 05:01:34 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
2022-01-28 05:55:51 +00:00
|
|
|
chan[c.chan].baseFreq=NOTE_PERIODIC(c.value);
|
2022-01-19 05:01:34 +00:00
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(ins);
|
2022-06-01 00:03:26 +00:00
|
|
|
if (!parent->song.brokenOutVol && !chan[c.chan].std.vol.will) {
|
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
}
|
2022-09-25 22:28:04 +00:00
|
|
|
if (!chan[c.chan].nextPSGMode.dac) {
|
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 (isMuted[c.chan]) {
|
|
|
|
rWrite(0x08+c.chan,0);
|
|
|
|
} else {
|
2022-09-25 22:28:04 +00:00
|
|
|
rWrite(0x08+c.chan,(chan[c.chan].vol&31)|((chan[c.chan].nextPSGMode.getEnvelope())<<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
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_OFF:
|
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].dac.sample=-1;
|
|
|
|
if (dumpWrites) addWrite(0xffff0002+(c.chan<<8),0);
|
2022-09-25 22:28:04 +00:00
|
|
|
chan[c.chan].nextPSGMode.dac=false;
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[c.chan].keyOff=true;
|
|
|
|
chan[c.chan].active=false;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(NULL);
|
2022-01-14 05:02:10 +00:00
|
|
|
break;
|
2022-02-08 18:11:04 +00:00
|
|
|
case DIV_CMD_NOTE_OFF_ENV:
|
|
|
|
case DIV_CMD_ENV_RELEASE:
|
|
|
|
chan[c.chan].std.release();
|
|
|
|
break;
|
2022-01-14 05:02:10 +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-14 05:02:10 +00:00
|
|
|
chan[c.chan].outVol=c.value;
|
|
|
|
}
|
2022-09-25 22:28:04 +00:00
|
|
|
if (!chan[c.chan].nextPSGMode.dac) {
|
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 (isMuted[c.chan]) {
|
|
|
|
rWrite(0x08+c.chan,0);
|
|
|
|
} else {
|
2022-09-25 22:28:04 +00:00
|
|
|
if (chan[c.chan].active) rWrite(0x08+c.chan,(chan[c.chan].vol&31)|((chan[c.chan].nextPSGMode.getEnvelope())<<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
|
|
|
}
|
|
|
|
break;
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_GET_VOLUME: {
|
|
|
|
return chan[c.chan].vol;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_INSTRUMENT:
|
2022-01-17 23:01:40 +00:00
|
|
|
if (chan[c.chan].ins!=c.value || c.value2==1) {
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[c.chan].insChanged=true;
|
|
|
|
}
|
|
|
|
chan[c.chan].ins=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PITCH: {
|
|
|
|
chan[c.chan].pitch=c.value;
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_PORTA: {
|
2022-01-28 05:55:51 +00:00
|
|
|
int destFreq=NOTE_PERIODIC(c.value2);
|
2022-01-14 05:02:10 +00:00
|
|
|
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_LEGATO: {
|
2022-01-28 05:55:51 +00:00
|
|
|
chan[c.chan].baseFreq=NOTE_PERIODIC(c.value);
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_STD_NOISE_MODE:
|
|
|
|
if (c.value<0x10) {
|
2022-09-25 22:28:04 +00:00
|
|
|
if (!chan[c.chan].nextPSGMode.dac) {
|
|
|
|
chan[c.chan].nextPSGMode.val=(c.value+1)&7;
|
|
|
|
if (chan[c.chan].active) {
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[c.chan].curPSGMode.val=chan[c.chan].nextPSGMode.val;
|
2022-09-25 22:28:04 +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 (isMuted[c.chan]) {
|
|
|
|
rWrite(0x08+c.chan,0);
|
|
|
|
} else if (chan[c.chan].active) {
|
2022-09-25 22:28:04 +00:00
|
|
|
rWrite(0x08+c.chan,(chan[c.chan].outVol&31)|((chan[c.chan].nextPSGMode.getEnvelope())<<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
|
|
|
}
|
2022-01-18 20:48:40 +00:00
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
} else {
|
|
|
|
chan[c.chan].duty=c.value&15;
|
2022-03-04 07:26:47 +00:00
|
|
|
immWrite(0x16+c.chan,chan[c.chan].duty);
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_STD_NOISE_FREQ:
|
|
|
|
rWrite(0x06,c.value);
|
|
|
|
break;
|
|
|
|
case DIV_CMD_AY_ENVELOPE_SET:
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[c.chan].envelope.mode=c.value>>4;
|
|
|
|
rWrite(regMode[c.chan],chan[c.chan].envelope.mode);
|
2022-01-14 05:02:10 +00:00
|
|
|
if (c.value&15) {
|
2022-09-25 22:28:04 +00:00
|
|
|
chan[c.chan].nextPSGMode.envelope|=1;
|
2022-01-14 05:02:10 +00:00
|
|
|
} else {
|
2022-09-25 22:28:04 +00:00
|
|
|
chan[c.chan].nextPSGMode.envelope&=~1;
|
|
|
|
}
|
|
|
|
if (!chan[c.chan].nextPSGMode.dac && chan[c.chan].active) {
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[c.chan].curPSGMode.val=chan[c.chan].nextPSGMode.val;
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
if (isMuted[c.chan]) {
|
|
|
|
rWrite(0x08+c.chan,0);
|
|
|
|
} else {
|
2022-09-25 22:28:04 +00:00
|
|
|
rWrite(0x08+c.chan,(chan[c.chan].vol&31)|((chan[c.chan].nextPSGMode.getEnvelope())<<3));
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_AY_ENVELOPE_LOW:
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[c.chan].envelope.period&=0xff00;
|
|
|
|
chan[c.chan].envelope.period|=c.value;
|
|
|
|
immWrite(regPeriodL[c.chan],chan[c.chan].envelope.period);
|
|
|
|
immWrite(regPeriodH[c.chan],chan[c.chan].envelope.period>>8);
|
2022-01-14 05:02:10 +00:00
|
|
|
break;
|
|
|
|
case DIV_CMD_AY_ENVELOPE_HIGH:
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[c.chan].envelope.period&=0xff;
|
|
|
|
chan[c.chan].envelope.period|=c.value<<8;
|
|
|
|
immWrite(regPeriodL[c.chan],chan[c.chan].envelope.period);
|
|
|
|
immWrite(regPeriodH[c.chan],chan[c.chan].envelope.period>>8);
|
2022-01-14 05:02:10 +00:00
|
|
|
break;
|
|
|
|
case DIV_CMD_AY_ENVELOPE_SLIDE:
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[c.chan].envelope.slide=c.value;
|
2022-01-14 05:02:10 +00:00
|
|
|
break;
|
2022-01-18 23:21:27 +00:00
|
|
|
case DIV_CMD_AY_NOISE_MASK_AND:
|
|
|
|
ayNoiseAnd=c.value;
|
|
|
|
immWrite(0x19,ayNoiseAnd);
|
|
|
|
break;
|
|
|
|
case DIV_CMD_AY_NOISE_MASK_OR:
|
|
|
|
ayNoiseOr=c.value;
|
|
|
|
immWrite(0x1a,ayNoiseOr);
|
|
|
|
break;
|
2022-01-20 08:23:03 +00:00
|
|
|
case DIV_CMD_AY_AUTO_ENVELOPE:
|
|
|
|
chan[c.chan].autoEnvNum=c.value>>4;
|
|
|
|
chan[c.chan].autoEnvDen=c.value&15;
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
2022-03-27 01:55:43 +00:00
|
|
|
case DIV_CMD_AY_IO_WRITE:
|
2022-03-31 22:14:45 +00:00
|
|
|
if (c.value==255) {
|
|
|
|
immWrite(0x1f,c.value2);
|
|
|
|
break;
|
|
|
|
}
|
2022-03-27 01:55:43 +00:00
|
|
|
if (c.value) { // port B
|
|
|
|
ioPortB=true;
|
|
|
|
portBVal=c.value2;
|
2022-04-11 03:12:02 +00:00
|
|
|
logI("AY I/O port B write: %x",portBVal);
|
2022-03-27 01:55:43 +00:00
|
|
|
} else { // port A
|
|
|
|
ioPortA=true;
|
|
|
|
portAVal=c.value2;
|
2022-04-11 03:12:02 +00:00
|
|
|
logI("AY I/O port A write: %x",portAVal);
|
2022-03-27 01:55:43 +00:00
|
|
|
}
|
|
|
|
updateOutSel(true);
|
|
|
|
immWrite(14+(c.value?1:0),(c.value?portBVal:portAVal));
|
|
|
|
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
|
|
|
case DIV_CMD_SAMPLE_MODE:
|
2022-09-25 22:28:04 +00:00
|
|
|
chan[c.chan].nextPSGMode.dac=(c.value>0)?1:0;
|
2022-09-25 22:31:01 +00:00
|
|
|
chan[c.chan].curPSGMode.dac=chan[c.chan].nextPSGMode.dac;
|
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
|
|
|
break;
|
|
|
|
case DIV_CMD_SAMPLE_BANK:
|
|
|
|
sampleBank=c.value;
|
|
|
|
if (sampleBank>(parent->song.sample.size()/12)) {
|
|
|
|
sampleBank=parent->song.sample.size()/12;
|
|
|
|
}
|
|
|
|
break;
|
2022-12-17 05:09:56 +00:00
|
|
|
case DIV_CMD_MACRO_OFF:
|
|
|
|
chan[c.chan].std.mask(c.value,true);
|
|
|
|
break;
|
|
|
|
case DIV_CMD_MACRO_ON:
|
|
|
|
chan[c.chan].std.mask(c.value,false);
|
|
|
|
break;
|
2022-01-14 05:02:10 +00:00
|
|
|
case DIV_ALWAYS_SET_VOLUME:
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLMAX:
|
|
|
|
return 31;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_PORTA:
|
2022-02-09 03:49:52 +00:00
|
|
|
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_AY8930));
|
2022-02-09 03:46:58 +00:00
|
|
|
}
|
2022-12-17 07:10:20 +00:00
|
|
|
if (!chan[c.chan].inPorta && c.value && !parent->song.brokenPortaArp && chan[c.chan].std.arp.will && !NEW_ARP_STRAT) chan[c.chan].baseFreq=NOTE_PERIODIC(chan[c.chan].note);
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[c.chan].inPorta=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_NOTE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//printf("WARNING: unimplemented command %d\n",c.cmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformAY8930::muteChannel(int ch, bool mute) {
|
|
|
|
isMuted[ch]=mute;
|
|
|
|
if (isMuted[ch]) {
|
|
|
|
rWrite(0x08+ch,0);
|
2022-06-21 02:06:26 +00:00
|
|
|
} else if (chan[ch].active) {
|
2022-09-25 22:28:04 +00:00
|
|
|
if (chan[ch].nextPSGMode.dac) {
|
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
|
|
|
rWrite(0x08+ch,chan[ch].dac.out&31);
|
|
|
|
} else {
|
2022-09-25 22:28:04 +00:00
|
|
|
rWrite(0x08+ch,(chan[ch].outVol&31)|((chan[ch].nextPSGMode.getEnvelope())<<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
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformAY8930::forceIns() {
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i].insChanged=true;
|
2022-05-04 14:04:20 +00:00
|
|
|
immWrite(regPeriodL[i],chan[i].envelope.period);
|
|
|
|
immWrite(regPeriodH[i],chan[i].envelope.period>>8);
|
|
|
|
immWrite(regMode[i],chan[i].envelope.mode);
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-27 05:29:16 +00:00
|
|
|
void* DivPlatformAY8930::getChanState(int ch) {
|
|
|
|
return &chan[ch];
|
|
|
|
}
|
|
|
|
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* DivPlatformAY8930::getChanMacroInt(int ch) {
|
|
|
|
return &chan[ch].std;
|
|
|
|
}
|
|
|
|
|
2022-04-30 19:36:12 +00:00
|
|
|
DivDispatchOscBuffer* DivPlatformAY8930::getOscBuffer(int ch) {
|
|
|
|
return oscBuf[ch];
|
|
|
|
}
|
|
|
|
|
2022-02-22 03:31:27 +00:00
|
|
|
unsigned char* DivPlatformAY8930::getRegisterPool() {
|
|
|
|
return regPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformAY8930::getRegisterPoolSize() {
|
|
|
|
return 32;
|
|
|
|
}
|
|
|
|
|
2022-01-14 05:02:10 +00:00
|
|
|
void DivPlatformAY8930::reset() {
|
|
|
|
while (!writes.empty()) writes.pop();
|
|
|
|
ay->device_reset();
|
2022-02-22 03:31:27 +00:00
|
|
|
memset(regPool,0,32);
|
2022-01-14 05:02:10 +00:00
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i]=DivPlatformAY8930::Channel();
|
2022-04-15 10:37:23 +00:00
|
|
|
chan[i].std.setEngine(parent);
|
2022-01-14 05:02:10 +00:00
|
|
|
chan[i].vol=31;
|
2022-05-04 14:04:20 +00:00
|
|
|
chan[i].envelope.period=0;
|
|
|
|
chan[i].envelope.mode=0;
|
|
|
|
chan[i].envelope.slide=0;
|
|
|
|
chan[i].envelope.slideLow=0;
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
2022-01-25 23:46:27 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0xffffffff,0);
|
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
|
|
|
|
for (int i=0; i<32; i++) {
|
|
|
|
oldWrites[i]=-1;
|
|
|
|
pendingWrites[i]=-1;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
sampleBank=0;
|
2022-01-31 22:28:17 +00:00
|
|
|
ayNoiseAnd=2;
|
2022-01-18 23:21:27 +00:00
|
|
|
ayNoiseOr=0;
|
2022-01-14 05:02:10 +00:00
|
|
|
delay=0;
|
|
|
|
|
|
|
|
extMode=false;
|
|
|
|
bank=false;
|
|
|
|
|
2022-03-27 01:55:43 +00:00
|
|
|
ioPortA=false;
|
|
|
|
ioPortB=false;
|
|
|
|
portAVal=0;
|
|
|
|
portBVal=0;
|
|
|
|
|
2022-01-14 05:02:10 +00:00
|
|
|
immWrite(0x0d,0xa0);
|
2022-01-31 22:28:17 +00:00
|
|
|
immWrite(0x19,2); // and mask
|
2022-01-31 22:00:52 +00:00
|
|
|
immWrite(0x1a,0x00); // or mask
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformAY8930::isStereo() {
|
2022-01-29 05:20:27 +00:00
|
|
|
return true;
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformAY8930::keyOffAffectsArp(int ch) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformAY8930::notifyInsDeletion(void* ins) {
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
chan[i].std.notifyInsDeletion((DivInstrument*)ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-01 23:08:19 +00:00
|
|
|
void DivPlatformAY8930::poke(unsigned int addr, unsigned short val) {
|
|
|
|
immWrite(addr,val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformAY8930::poke(std::vector<DivRegWrite>& wlist) {
|
|
|
|
for (DivRegWrite& i: wlist) immWrite(i.addr,i.val);
|
|
|
|
}
|
|
|
|
|
2022-09-30 01:13:40 +00:00
|
|
|
void DivPlatformAY8930::setFlags(const DivConfig& flags) {
|
|
|
|
clockSel=flags.getBool("halfClock",false);
|
|
|
|
switch (flags.getInt("clockSel",0)) {
|
2022-01-29 05:20:27 +00:00
|
|
|
case 1:
|
|
|
|
chipClock=COLOR_PAL*2.0/5.0;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
chipClock=1750000;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
chipClock=2000000;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
chipClock=1500000;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
chipClock=1000000;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
chipClock=COLOR_NTSC/4.0;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
chipClock=COLOR_PAL*3.0/8.0;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
chipClock=COLOR_PAL*3.0/16.0;
|
|
|
|
break;
|
2022-03-06 19:18:18 +00:00
|
|
|
case 9:
|
|
|
|
chipClock=COLOR_PAL/4.0;
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
chipClock=2097152;
|
|
|
|
break;
|
2022-05-04 14:04:20 +00:00
|
|
|
case 11:
|
|
|
|
chipClock=COLOR_NTSC;
|
|
|
|
break;
|
|
|
|
case 12:
|
|
|
|
chipClock=3600000;
|
|
|
|
break;
|
2022-01-29 05:20:27 +00:00
|
|
|
default:
|
|
|
|
chipClock=COLOR_NTSC/2.0;
|
|
|
|
break;
|
2022-01-14 05:26:10 +00:00
|
|
|
}
|
2022-12-04 07:04:42 +00:00
|
|
|
CHECK_CUSTOM_CLOCK;
|
2022-05-07 14:00:22 +00:00
|
|
|
rate=chipClock/4;
|
2022-04-30 19:36:12 +00:00
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
oscBuf[i]->rate=rate;
|
|
|
|
}
|
|
|
|
|
2022-09-30 01:13:40 +00:00
|
|
|
stereo=flags.getBool("stereo",false);
|
|
|
|
stereoSep=flags.getInt("stereoSep",0)&255;
|
2022-01-14 05:26:10 +00:00
|
|
|
}
|
|
|
|
|
2022-09-30 01:13:40 +00:00
|
|
|
int DivPlatformAY8930::init(DivEngine* p, int channels, int sugRate, const DivConfig& flags) {
|
2022-01-14 05:02:10 +00:00
|
|
|
parent=p;
|
2022-01-17 04:21:27 +00:00
|
|
|
dumpWrites=false;
|
2022-01-14 05:02:10 +00:00
|
|
|
skipRegisterWrites=false;
|
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
isMuted[i]=false;
|
2022-04-30 19:36:12 +00:00
|
|
|
oscBuf[i]=new DivDispatchOscBuffer;
|
2022-01-14 05:02:10 +00:00
|
|
|
}
|
2022-01-28 17:59:53 +00:00
|
|
|
setFlags(flags);
|
2022-05-10 04:18:02 +00:00
|
|
|
ay=new ay8930_device(rate,clockSel);
|
2022-01-14 05:02:10 +00:00
|
|
|
ay->device_start();
|
|
|
|
ayBufLen=65536;
|
|
|
|
for (int i=0; i<3; i++) ayBuf[i]=new short[ayBufLen];
|
|
|
|
reset();
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformAY8930::quit() {
|
2022-04-30 19:36:12 +00:00
|
|
|
for (int i=0; i<3; i++) {
|
|
|
|
delete oscBuf[i];
|
|
|
|
delete[] ayBuf[i];
|
|
|
|
}
|
2022-01-14 05:02:10 +00:00
|
|
|
delete ay;
|
2022-01-17 18:29:35 +00:00
|
|
|
}
|