2022-02-15 03:12:20 +00:00
|
|
|
/**
|
|
|
|
* Furnace Tracker - multi-system chiptune tracker
|
2023-01-20 00:18:40 +00:00
|
|
|
* Copyright (C) 2021-2023 tildearrow and contributors
|
2022-02-15 03:12:20 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2021-12-09 18:25:02 +00:00
|
|
|
#include "ym2610.h"
|
|
|
|
#include <math.h>
|
|
|
|
|
2022-02-27 19:45:55 +00:00
|
|
|
const char* regCheatSheetYM2610[]={
|
|
|
|
// SSG
|
|
|
|
"SSG_FreqL_A", "000",
|
|
|
|
"SSG_FreqH_A", "001",
|
|
|
|
"SSG_FreqL_B", "002",
|
|
|
|
"SSG_FreqH_B", "003",
|
|
|
|
"SSG_FreqL_C", "004",
|
|
|
|
"SSG_FreqH_C", "005",
|
|
|
|
"SSG_FreqNoise", "006",
|
|
|
|
"SSG_Enable", "007",
|
|
|
|
"SSG_Volume_A", "008",
|
|
|
|
"SSG_Volume_B", "009",
|
|
|
|
"SSG_Volume_C", "00A",
|
|
|
|
"SSG_FreqL_Env", "00B",
|
|
|
|
"SSG_FreqH_Env", "00C",
|
|
|
|
"SSG_Control_Env", "00D",
|
|
|
|
// ADPCM-B
|
|
|
|
"ADPCMB_Control", "010",
|
|
|
|
"ADPCMB_L_R", "011",
|
|
|
|
"ADPCMB_StartL", "012",
|
|
|
|
"ADPCMB_StartH", "013",
|
|
|
|
"ADPCMB_EndL", "014",
|
|
|
|
"ADPCMB_EndH", "015",
|
|
|
|
"ADPCMB_FreqL", "019",
|
|
|
|
"ADPCMB_FreqH", "01A",
|
|
|
|
"ADPCMB_Volume", "01B",
|
|
|
|
"ADPCM_Flag", "01C",
|
|
|
|
// FM (Common)
|
|
|
|
"FM_Test", "021",
|
|
|
|
"FM_LFOFreq", "022",
|
|
|
|
"ClockA1", "024",
|
|
|
|
"ClockA2", "025",
|
|
|
|
"ClockB", "026",
|
|
|
|
"FM_Control", "027",
|
|
|
|
"FM_NoteCtl", "028",
|
|
|
|
// FM (Channel 1-2)
|
|
|
|
"FM1_Op1_DT_MULT", "031",
|
|
|
|
"FM2_Op1_DT_MULT", "032",
|
|
|
|
"FM1_Op2_DT_MULT", "035",
|
|
|
|
"FM2_Op2_DT_MULT", "036",
|
|
|
|
"FM1_Op3_DT_MULT", "039",
|
|
|
|
"FM2_Op3_DT_MULT", "03A",
|
|
|
|
"FM1_Op4_DT_MULT", "03D",
|
|
|
|
"FM2_Op4_DT_MULT", "03E",
|
|
|
|
"FM1_Op1_TL", "041",
|
|
|
|
"FM2_Op1_TL", "042",
|
|
|
|
"FM1_Op2_TL", "045",
|
|
|
|
"FM2_Op2_TL", "046",
|
|
|
|
"FM1_Op3_TL", "049",
|
|
|
|
"FM2_Op3_TL", "04A",
|
|
|
|
"FM1_Op4_TL", "04D",
|
|
|
|
"FM2_Op4_TL", "04E",
|
|
|
|
"FM1_Op1_KS_AR", "051",
|
|
|
|
"FM2_Op1_KS_AR", "052",
|
|
|
|
"FM1_Op2_KS_AR", "055",
|
|
|
|
"FM2_Op2_KS_AR", "056",
|
|
|
|
"FM1_Op3_KS_AR", "059",
|
|
|
|
"FM2_Op3_KS_AR", "05A",
|
|
|
|
"FM1_Op4_KS_AR", "05D",
|
|
|
|
"FM2_Op4_KS_AR", "05E",
|
|
|
|
"FM1_Op1_AM_DR", "061",
|
|
|
|
"FM2_Op1_AM_DR", "062",
|
|
|
|
"FM1_Op2_AM_DR", "065",
|
|
|
|
"FM2_Op2_AM_DR", "066",
|
|
|
|
"FM1_Op3_AM_DR", "069",
|
|
|
|
"FM2_Op3_AM_DR", "06A",
|
|
|
|
"FM1_Op4_AM_DR", "06D",
|
|
|
|
"FM2_Op4_AM_DR", "06E",
|
|
|
|
"FM1_Op1_SR", "071",
|
|
|
|
"FM2_Op1_SR", "072",
|
|
|
|
"FM1_Op2_SR", "075",
|
|
|
|
"FM2_Op2_SR", "076",
|
|
|
|
"FM1_Op3_SR", "079",
|
|
|
|
"FM2_Op3_SR", "07A",
|
|
|
|
"FM1_Op4_SR", "07D",
|
|
|
|
"FM2_Op4_SR", "07E",
|
|
|
|
"FM1_Op1_SL_RR", "081",
|
|
|
|
"FM2_Op1_SL_RR", "082",
|
|
|
|
"FM1_Op2_SL_RR", "085",
|
|
|
|
"FM2_Op2_SL_RR", "086",
|
|
|
|
"FM1_Op3_SL_RR", "089",
|
|
|
|
"FM2_Op3_SL_RR", "08A",
|
|
|
|
"FM1_Op4_SL_RR", "08D",
|
|
|
|
"FM2_Op4_SL_RR", "08E",
|
|
|
|
"FM1_Op1_SSG_EG", "091",
|
|
|
|
"FM2_Op1_SSG_EG", "092",
|
|
|
|
"FM1_Op2_SSG_EG", "095",
|
|
|
|
"FM2_Op2_SSG_EG", "096",
|
|
|
|
"FM1_Op3_SSG_EG", "099",
|
|
|
|
"FM2_Op3_SSG_EG", "09A",
|
|
|
|
"FM1_Op4_SSG_EG", "09D",
|
|
|
|
"FM2_Op4_SSG_EG", "09E",
|
|
|
|
"FM1_FNum1", "0A1",
|
|
|
|
"FM2_(Op1)FNum1", "0A2",
|
|
|
|
"FM1_FNum2", "0A5",
|
|
|
|
"FM2_(Op1)FNum2", "0A6",
|
|
|
|
"FM2_Op2_FNum1", "0A8",
|
|
|
|
"FM2_Op3_FNum1", "0A9",
|
|
|
|
"FM2_Op4_FNum1", "0AA",
|
|
|
|
"FM2_Op2_FNum2", "0AC",
|
|
|
|
"FM2_Op3_FNum2", "0AD",
|
|
|
|
"FM2_Op4_FNum2", "0AE",
|
|
|
|
"FM1_FB_ALG", "0B1",
|
|
|
|
"FM2_FB_ALG", "0B2",
|
|
|
|
"FM1_Pan_LFO", "0B5",
|
|
|
|
"FM2_Pan_LFO", "0B6",
|
|
|
|
// ADPCM-A
|
|
|
|
"ADPCMA_Control", "100",
|
|
|
|
"ADPCMA_MVol", "101",
|
|
|
|
"ADPCMA_Test", "102",
|
|
|
|
"ADPCMA_Ch1_Vol", "108",
|
|
|
|
"ADPCMA_Ch2_Vol", "109",
|
|
|
|
"ADPCMA_Ch3_Vol", "10A",
|
|
|
|
"ADPCMA_Ch4_Vol", "10B",
|
|
|
|
"ADPCMA_Ch5_Vol", "10C",
|
|
|
|
"ADPCMA_Ch6_Vol", "10D",
|
|
|
|
"ADPCMA_Ch1_StL", "110",
|
|
|
|
"ADPCMA_Ch2_StL", "111",
|
|
|
|
"ADPCMA_Ch3_StL", "112",
|
|
|
|
"ADPCMA_Ch4_StL", "113",
|
|
|
|
"ADPCMA_Ch5_StL", "114",
|
|
|
|
"ADPCMA_Ch6_StL", "115",
|
|
|
|
"ADPCMA_Ch1_StH", "118",
|
|
|
|
"ADPCMA_Ch2_StH", "119",
|
|
|
|
"ADPCMA_Ch3_StH", "11A",
|
|
|
|
"ADPCMA_Ch4_StH", "11B",
|
|
|
|
"ADPCMA_Ch5_StH", "11C",
|
|
|
|
"ADPCMA_Ch6_StH", "11D",
|
|
|
|
"ADPCMA_Ch1_EdL", "120",
|
|
|
|
"ADPCMA_Ch2_EdL", "121",
|
|
|
|
"ADPCMA_Ch3_EdL", "122",
|
|
|
|
"ADPCMA_Ch4_EdL", "123",
|
|
|
|
"ADPCMA_Ch5_EdL", "124",
|
|
|
|
"ADPCMA_Ch6_EdL", "125",
|
|
|
|
"ADPCMA_Ch1_EdH", "128",
|
|
|
|
"ADPCMA_Ch2_EdH", "129",
|
|
|
|
"ADPCMA_Ch3_EdH", "12A",
|
|
|
|
"ADPCMA_Ch4_EdH", "12B",
|
|
|
|
"ADPCMA_Ch5_EdH", "12C",
|
|
|
|
"ADPCMA_Ch6_EdH", "12D",
|
|
|
|
// FM (Channel 3-4)
|
|
|
|
"FM3_Op1_DT_MULT", "131",
|
|
|
|
"FM4_Op1_DT_MULT", "132",
|
|
|
|
"FM3_Op2_DT_MULT", "135",
|
|
|
|
"FM4_Op2_DT_MULT", "136",
|
|
|
|
"FM3_Op3_DT_MULT", "139",
|
|
|
|
"FM4_Op3_DT_MULT", "13A",
|
|
|
|
"FM3_Op4_DT_MULT", "13D",
|
|
|
|
"FM4_Op4_DT_MULT", "13E",
|
|
|
|
"FM3_Op1_TL", "141",
|
|
|
|
"FM4_Op1_TL", "142",
|
|
|
|
"FM3_Op2_TL", "145",
|
|
|
|
"FM4_Op2_TL", "146",
|
|
|
|
"FM3_Op3_TL", "149",
|
|
|
|
"FM4_Op3_TL", "14A",
|
|
|
|
"FM3_Op4_TL", "14D",
|
|
|
|
"FM4_Op4_TL", "14E",
|
|
|
|
"FM3_Op1_KS_AR", "151",
|
|
|
|
"FM4_Op1_KS_AR", "152",
|
|
|
|
"FM3_Op2_KS_AR", "155",
|
|
|
|
"FM4_Op2_KS_AR", "156",
|
|
|
|
"FM3_Op3_KS_AR", "159",
|
|
|
|
"FM4_Op3_KS_AR", "15A",
|
|
|
|
"FM3_Op4_KS_AR", "15D",
|
|
|
|
"FM4_Op4_KS_AR", "15E",
|
|
|
|
"FM3_Op1_AM_DR", "161",
|
|
|
|
"FM4_Op1_AM_DR", "162",
|
|
|
|
"FM3_Op2_AM_DR", "165",
|
|
|
|
"FM4_Op2_AM_DR", "166",
|
|
|
|
"FM3_Op3_AM_DR", "169",
|
|
|
|
"FM4_Op3_AM_DR", "16A",
|
|
|
|
"FM3_Op4_AM_DR", "16D",
|
|
|
|
"FM4_Op4_AM_DR", "16E",
|
|
|
|
"FM3_Op1_SR", "171",
|
|
|
|
"FM4_Op1_SR", "172",
|
|
|
|
"FM3_Op2_SR", "175",
|
|
|
|
"FM4_Op2_SR", "176",
|
|
|
|
"FM3_Op3_SR", "179",
|
|
|
|
"FM4_Op3_SR", "17A",
|
|
|
|
"FM3_Op4_SR", "17D",
|
|
|
|
"FM4_Op4_SR", "17E",
|
|
|
|
"FM3_Op1_SL_RR", "181",
|
|
|
|
"FM4_Op1_SL_RR", "182",
|
|
|
|
"FM3_Op2_SL_RR", "185",
|
|
|
|
"FM4_Op2_SL_RR", "186",
|
|
|
|
"FM3_Op3_SL_RR", "189",
|
|
|
|
"FM4_Op3_SL_RR", "18A",
|
|
|
|
"FM3_Op4_SL_RR", "18D",
|
|
|
|
"FM4_Op4_SL_RR", "18E",
|
|
|
|
"FM3_Op1_SSG_EG", "191",
|
|
|
|
"FM4_Op1_SSG_EG", "192",
|
|
|
|
"FM3_Op2_SSG_EG", "195",
|
|
|
|
"FM4_Op2_SSG_EG", "196",
|
|
|
|
"FM3_Op3_SSG_EG", "199",
|
|
|
|
"FM4_Op3_SSG_EG", "19A",
|
|
|
|
"FM3_Op4_SSG_EG", "19D",
|
|
|
|
"FM4_Op4_SSG_EG", "19E",
|
|
|
|
"FM3_FNum1", "1A1",
|
|
|
|
"FM4_FNum1", "1A2",
|
|
|
|
"FM3_FNum2", "1A5",
|
|
|
|
"FM4_FNum2", "1A6",
|
|
|
|
"FM3_FB_ALG", "1B1",
|
|
|
|
"FM4_FB_ALG", "1B2",
|
|
|
|
"FM3_Pan_LFO", "1B5",
|
|
|
|
"FM4_Pan_LFO", "1B6",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char** DivPlatformYM2610::getRegisterSheet() {
|
|
|
|
return regCheatSheetYM2610;
|
|
|
|
}
|
|
|
|
|
2023-01-02 09:53:37 +00:00
|
|
|
void DivPlatformYM2610::acquire(short** buf, size_t len) {
|
2022-12-24 07:29:37 +00:00
|
|
|
if (useCombo) {
|
2023-01-03 06:09:46 +00:00
|
|
|
acquire_combo(buf,len);
|
2022-12-24 07:29:37 +00:00
|
|
|
} else {
|
2023-01-03 06:09:46 +00:00
|
|
|
acquire_ymfm(buf,len);
|
2022-12-24 07:29:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-03 06:09:46 +00:00
|
|
|
void DivPlatformYM2610::acquire_combo(short** buf, size_t len) {
|
2022-12-24 07:29:37 +00:00
|
|
|
static int os[2];
|
|
|
|
static short ignored[2];
|
|
|
|
|
|
|
|
ymfm::ssg_engine* ssge=fm->debug_ssg_engine();
|
|
|
|
ymfm::adpcm_a_engine* aae=fm->debug_adpcm_a_engine();
|
|
|
|
ymfm::adpcm_b_engine* abe=fm->debug_adpcm_b_engine();
|
|
|
|
|
|
|
|
ymfm::ssg_engine::output_data ssgOut;
|
|
|
|
|
|
|
|
ymfm::adpcm_a_channel* adpcmAChan[6];
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
adpcmAChan[i]=aae->debug_channel(i);
|
|
|
|
}
|
|
|
|
|
2023-01-03 06:09:46 +00:00
|
|
|
for (size_t h=0; h<len; h++) {
|
2023-05-05 20:34:19 +00:00
|
|
|
// AY -> OPN
|
|
|
|
ay->runDAC();
|
|
|
|
ay->flushWrites();
|
|
|
|
for (DivRegWrite& i: ay->getRegisterWrites()) {
|
|
|
|
if (i.addr>15) continue;
|
|
|
|
immWrite(i.addr&15,i.val);
|
|
|
|
}
|
|
|
|
ay->getRegisterWrites().clear();
|
|
|
|
|
2022-12-24 07:29:37 +00:00
|
|
|
os[0]=0; os[1]=0;
|
|
|
|
// Nuked part
|
|
|
|
for (int i=0; i<24; i++) {
|
|
|
|
if (!writes.empty()) {
|
|
|
|
if (--delay<1 && !(fm->read(0)&0x80)) {
|
|
|
|
QueuedWrite& w=writes.front();
|
|
|
|
|
|
|
|
if (w.addr<=0x1c || (w.addr>=0x100 && w.addr<=0x12d)) {
|
|
|
|
// ymfm write
|
|
|
|
fm->write(0x0+((w.addr>>8)<<1),w.addr);
|
|
|
|
fm->write(0x1+((w.addr>>8)<<1),w.val);
|
|
|
|
|
|
|
|
regPool[w.addr&0x1ff]=w.val;
|
|
|
|
writes.pop_front();
|
|
|
|
delay=32;
|
|
|
|
} else {
|
|
|
|
// Nuked write
|
|
|
|
if (w.addrOrVal) {
|
|
|
|
OPN2_Write(&fm_nuked,0x1+((w.addr>>8)<<1),w.val);
|
|
|
|
regPool[w.addr&0x1ff]=w.val;
|
|
|
|
writes.pop_front();
|
|
|
|
} else {
|
|
|
|
lastBusy++;
|
|
|
|
if (fm_nuked.write_busy==0) {
|
|
|
|
OPN2_Write(&fm_nuked,0x0+((w.addr>>8)<<1),w.addr);
|
|
|
|
w.addrOrVal=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OPN2_Clock(&fm_nuked,ignored);
|
|
|
|
}
|
|
|
|
os[0]=(
|
|
|
|
(fm_nuked.pan_l[1]?fm_nuked.ch_out[1]:0)+
|
|
|
|
(fm_nuked.pan_l[2]?fm_nuked.ch_out[2]:0)+
|
|
|
|
(fm_nuked.pan_l[4]?fm_nuked.ch_out[4]:0)+
|
|
|
|
(fm_nuked.pan_l[5]?fm_nuked.ch_out[5]:0)
|
|
|
|
);
|
|
|
|
os[1]=(
|
|
|
|
(fm_nuked.pan_r[1]?fm_nuked.ch_out[1]:0)+
|
|
|
|
(fm_nuked.pan_r[2]?fm_nuked.ch_out[2]:0)+
|
|
|
|
(fm_nuked.pan_r[4]?fm_nuked.ch_out[4]:0)+
|
|
|
|
(fm_nuked.pan_r[5]?fm_nuked.ch_out[5]:0)
|
|
|
|
);
|
|
|
|
|
|
|
|
os[0]>>=1;
|
|
|
|
os[1]>>=1;
|
2023-01-14 02:55:40 +00:00
|
|
|
os[0]=(os[0]*fmVol)>>8;
|
|
|
|
os[1]=(os[1]*fmVol)>>8;
|
2022-12-24 07:29:37 +00:00
|
|
|
|
|
|
|
// ymfm part
|
|
|
|
fm->generate(&fmout);
|
|
|
|
|
2023-02-05 09:57:09 +00:00
|
|
|
os[0]+=((fmout.data[0]*fmVol)>>8)+((fmout.data[2]*ssgVol)>>8);
|
2022-12-24 07:29:37 +00:00
|
|
|
if (os[0]<-32768) os[0]=-32768;
|
|
|
|
if (os[0]>32767) os[0]=32767;
|
|
|
|
|
2023-02-05 09:57:09 +00:00
|
|
|
os[1]+=((fmout.data[1]*fmVol)>>8)+((fmout.data[2]*ssgVol)>>8);
|
2022-12-24 07:29:37 +00:00
|
|
|
if (os[1]<-32768) os[1]=-32768;
|
|
|
|
if (os[1]>32767) os[1]=32767;
|
|
|
|
|
2023-01-02 09:53:37 +00:00
|
|
|
buf[0][h]=os[0];
|
|
|
|
buf[1][h]=os[1];
|
2022-12-24 07:29:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
2023-06-19 02:07:00 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=fm_nuked.ch_out[bchOffs[i]]<<1;
|
2022-12-24 07:29:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ssge->get_last_out(ssgOut);
|
|
|
|
for (int i=psgChanOffs; i<adpcmAChanOffs; i++) {
|
2023-06-19 02:07:00 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=ssgOut.data[i-psgChanOffs]<<1;
|
2022-12-24 07:29:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i=adpcmAChanOffs; i<adpcmBChanOffs; i++) {
|
2023-06-16 22:30:11 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=(adpcmAChan[i-adpcmAChanOffs]->get_last_out(0)+adpcmAChan[i-adpcmAChanOffs]->get_last_out(1))>>1;
|
2022-12-24 07:29:37 +00:00
|
|
|
}
|
|
|
|
|
2023-06-16 22:30:11 +00:00
|
|
|
oscBuf[adpcmBChanOffs]->data[oscBuf[adpcmBChanOffs]->needle++]=(abe->get_last_out(0)+abe->get_last_out(1))>>1;
|
2022-12-24 07:29:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-03 06:09:46 +00:00
|
|
|
void DivPlatformYM2610::acquire_ymfm(short** buf, size_t len) {
|
2021-12-09 18:25:02 +00:00
|
|
|
static int os[2];
|
|
|
|
|
2022-05-14 06:09:24 +00:00
|
|
|
ymfm::ym2610::fm_engine* fme=fm->debug_fm_engine();
|
2022-05-01 08:47:04 +00:00
|
|
|
ymfm::ssg_engine* ssge=fm->debug_ssg_engine();
|
|
|
|
ymfm::adpcm_a_engine* aae=fm->debug_adpcm_a_engine();
|
|
|
|
ymfm::adpcm_b_engine* abe=fm->debug_adpcm_b_engine();
|
|
|
|
|
|
|
|
ymfm::ssg_engine::output_data ssgOut;
|
2022-05-03 07:52:38 +00:00
|
|
|
|
2022-08-27 09:40:16 +00:00
|
|
|
ymfm::fm_channel<ymfm::opn_registers_base<true>>* fmChan[4];
|
2022-05-03 07:52:38 +00:00
|
|
|
ymfm::adpcm_a_channel* adpcmAChan[6];
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
fmChan[i]=fme->debug_channel(bchOffs[i]);
|
|
|
|
}
|
|
|
|
for (int i=0; i<6; i++) {
|
|
|
|
adpcmAChan[i]=aae->debug_channel(i);
|
|
|
|
}
|
2022-05-01 08:47:04 +00:00
|
|
|
|
2023-01-03 06:09:46 +00:00
|
|
|
for (size_t h=0; h<len; h++) {
|
2023-05-05 20:34:19 +00:00
|
|
|
// AY -> OPN
|
|
|
|
ay->runDAC();
|
|
|
|
ay->flushWrites();
|
|
|
|
for (DivRegWrite& i: ay->getRegisterWrites()) {
|
|
|
|
if (i.addr>15) continue;
|
|
|
|
immWrite(i.addr&15,i.val);
|
|
|
|
}
|
|
|
|
ay->getRegisterWrites().clear();
|
|
|
|
|
2021-12-09 18:25:02 +00:00
|
|
|
os[0]=0; os[1]=0;
|
|
|
|
if (!writes.empty()) {
|
2022-12-24 07:29:37 +00:00
|
|
|
if (--delay<1 && !(fm->read(0)&0x80)) {
|
2021-12-09 22:06:28 +00:00
|
|
|
QueuedWrite& w=writes.front();
|
|
|
|
fm->write(0x0+((w.addr>>8)<<1),w.addr);
|
2021-12-09 18:25:02 +00:00
|
|
|
fm->write(0x1+((w.addr>>8)<<1),w.val);
|
2022-02-22 03:31:27 +00:00
|
|
|
regPool[w.addr&0x1ff]=w.val;
|
Prepare for reducing duplicates for 4op FM related codes, Add and correct bunch of presets, Add various clock, type options for chips
Prepare for reducing duplicates for 4op FM related codes
Add and correct bunch of presets
- mostly based on MAME source.
- Neo Geo AES uses slightly difference clock for NTSC, PAL colorbust frequency.
- Turbosound FM + SAA: Some Turbosound FM has additional SAA1099, for additional sound channel and Plays SAM coupe tune?
- PC-98:
- Sound Orchestra: OPN with hardpanned stereo, some model has with OPL family FM addons.
V variation has Y8950 and supports ADPCM.
- Sound Blaster 16 for PC-9800: This famous PC sound card is also exists for PC-98, with optional OPN PC-9801-26(K) compatibility on some models.
- IBM PCjr: PC with SN PSG sound, but less popular than previous models, and compatible Tandy 1000.
- Tandy 1000: PCjr and previous IBM PC compatible, also has SN PSG (later embedded in their ASIC, like Sega).
- Hexion: One of konami's budget arcade hardware with SCC + MSM6295 sound system, like their amusement hardware in this era.
- DJ Boy, Atari JSA IIIs, Skimaxx: How to panning sound or plays stereo sound on MSM6295 - just use MSM6295s per each output!
- Air Buster: One of arcade hardware with OPN + MSM6295 sound system, Used this configuration is also some hardwares.
- Tecmo system: One of arcade hardware with pretty unique sound system: OPL3, YMZ280B, MSM6295; first 2 entry is mostly used in music, last entry is mostly used in sound effect.
- Sunsoft Shanghai 3: Predecessor of Sunsoft Arcade is using YM2149 rather than FM, MSM6295 is still there.
- Atari Klax: example of arcade hardware sound system with single MSM6295 only.
- Ikari warriors: This early SNK Triple-Z80 hardware uses 2 OPL1s and no ADPCM supports.
- Coreland Cyber Tank: This rare arcade machine's stereo sound is like SB Pro, but it's actually produced in 2 Y8950s.
- Data East MLC: Latest arcade hardware from Data East, with single YMZ280B for sound.
- Kaneko Jackie Chan: Predecessor of Super Kaneko Nova System hardware, also with YMZ280B.
- Super Kaneko Nova System: Latest arcade hardware from Kaneko, with single YMZ280B for sound. this announced 3D acceleration addon, but finally cancelled.
- Toaplan 1: Home of Late 80-Early 90s Good ol' stuffs, Example of arcade sound system with single OPL2
- Namco Pac-Land: and this era, Namco start to change Custom 15 WSG to their Custom 30 WSG with featured RAM based waveform, and mailbox feature.
- Namco System 1: One of latest usage of Custom 30 WSG, with OPM FM hardware and 8 bit DAC and Stereo output.
Add various clock, type options for chips
- SN7: Prepare to add 17 bit noise variation, Game gear stereo extentsion, NCR PSG variation (MAME core only for now)
- OPN, OPNA: Add placeholder for prescaler option
- OPL: Prepare for OPL3L, OPL4 downscaled output rate option
2022-06-06 10:04:52 +00:00
|
|
|
writes.pop_front();
|
2022-12-24 07:29:37 +00:00
|
|
|
delay=1;
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fm->generate(&fmout);
|
|
|
|
|
2023-02-05 09:57:09 +00:00
|
|
|
os[0]+=((fmout.data[0]*fmVol)>>8)+((fmout.data[2]*ssgVol)>>8);
|
2021-12-09 18:25:02 +00:00
|
|
|
if (os[0]<-32768) os[0]=-32768;
|
|
|
|
if (os[0]>32767) os[0]=32767;
|
|
|
|
|
2023-02-05 09:57:09 +00:00
|
|
|
os[1]+=((fmout.data[1]*fmVol)>>8)+((fmout.data[2]*ssgVol)>>8);
|
2021-12-09 18:25:02 +00:00
|
|
|
if (os[1]<-32768) os[1]=-32768;
|
|
|
|
if (os[1]>32767) os[1]=32767;
|
|
|
|
|
2023-01-02 09:53:37 +00:00
|
|
|
buf[0][h]=os[0];
|
|
|
|
buf[1][h]=os[1];
|
2022-05-01 08:47: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
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
2023-06-19 02:07:00 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=(fmChan[i]->debug_output(0)+fmChan[i]->debug_output(1))<<1;
|
2022-05-01 08:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ssge->get_last_out(ssgOut);
|
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
|
|
|
for (int i=psgChanOffs; i<adpcmAChanOffs; i++) {
|
2023-06-19 02:07:00 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=ssgOut.data[i-psgChanOffs]<<1;
|
2022-05-01 08:47: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
|
|
|
for (int i=adpcmAChanOffs; i<adpcmBChanOffs; i++) {
|
2023-06-16 22:30:11 +00:00
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=(adpcmAChan[i-adpcmAChanOffs]->get_last_out(0)+adpcmAChan[i-adpcmAChanOffs]->get_last_out(1))>>1;
|
2022-05-01 08:47:04 +00:00
|
|
|
}
|
|
|
|
|
2023-06-16 22:30:11 +00:00
|
|
|
oscBuf[adpcmBChanOffs]->data[oscBuf[adpcmBChanOffs]->needle++]=(abe->get_last_out(0)+abe->get_last_out(1))>>1;
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 00:01:01 +00:00
|
|
|
void DivPlatformYM2610::tick(bool sysTick) {
|
2021-12-09 18:25:02 +00:00
|
|
|
// FM
|
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
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
2021-12-09 18:25:02 +00:00
|
|
|
if (i==1 && extMode) continue;
|
2022-01-27 07:32:34 +00:00
|
|
|
chan[i].std.next();
|
|
|
|
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.vol.had) {
|
2022-10-28 13:36:50 +00:00
|
|
|
chan[i].outVol=VOL_SCALE_LOG_BROKEN(chan[i].vol,MIN(127,chan[i].std.vol.val),127);
|
2022-01-27 07:32:34 +00:00
|
|
|
for (int j=0; j<4; j++) {
|
|
|
|
unsigned short baseAddr=chanOffs[i]|opOffs[j];
|
|
|
|
DivInstrumentFM::Operator& op=chan[i].state.op[j];
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[i] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
2022-01-27 07:32:34 +00:00
|
|
|
} else {
|
2023-02-09 22:36:33 +00:00
|
|
|
if (KVS(i,j)) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[i].outVol&0x7f,127));
|
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
2022-01-27 07:32:34 +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-27 07:32:34 +00:00
|
|
|
if (!chan[i].inPorta) {
|
2022-08-22 20:59:45 +00:00
|
|
|
chan[i].baseFreq=NOTE_FNUM_BLOCK(parent->calcArp(chan[i].note,chan[i].std.arp.val),11);
|
2022-01-27 07:32:34 +00:00
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
|
2022-04-17 19:15:57 +00:00
|
|
|
if (chan[i].std.panL.had) {
|
|
|
|
chan[i].pan=chan[i].std.panL.val&3;
|
|
|
|
rWrite(chanOffs[i]+ADDR_LRAF,(isMuted[i]?0:(chan[i].pan<<6))|(chan[i].state.fms&7)|((chan[i].state.ams&3)<<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-12-28 19:47:50 +00:00
|
|
|
CLAMP_VAR(chan[i].pitch2,-1048576,1048575);
|
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) {
|
2022-05-22 09:30:56 +00:00
|
|
|
if (chan[i].std.phaseReset.val==1 && chan[i].active) {
|
2022-04-15 08:16:14 +00:00
|
|
|
chan[i].keyOn=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.alg.had) {
|
|
|
|
chan[i].state.alg=chan[i].std.alg.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(chanOffs[i]+ADDR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3));
|
2022-02-10 03:07:32 +00:00
|
|
|
if (!parent->song.algMacroBehavior) for (int j=0; j<4; j++) {
|
2022-02-09 17:43:27 +00:00
|
|
|
unsigned short baseAddr=chanOffs[i]|opOffs[j];
|
|
|
|
DivInstrumentFM::Operator& op=chan[i].state.op[j];
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[i] || !op.enable) {
|
2022-02-09 17:43:27 +00:00
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
|
|
|
} else {
|
2022-09-22 06:30:51 +00:00
|
|
|
if (KVS(i,j)) {
|
2022-10-28 13:36:50 +00:00
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[i].outVol&0x7f,127));
|
2022-02-09 17:43:27 +00:00
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.fb.had) {
|
|
|
|
chan[i].state.fb=chan[i].std.fb.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(chanOffs[i]+ADDR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.fms.had) {
|
|
|
|
chan[i].state.fms=chan[i].std.fms.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(chanOffs[i]+ADDR_LRAF,(isMuted[i]?0:(chan[i].pan<<6))|(chan[i].state.fms&7)|((chan[i].state.ams&3)<<4));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (chan[i].std.ams.had) {
|
|
|
|
chan[i].state.ams=chan[i].std.ams.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(chanOffs[i]+ADDR_LRAF,(isMuted[i]?0:(chan[i].pan<<6))|(chan[i].state.fms&7)|((chan[i].state.ams&3)<<4));
|
|
|
|
}
|
2023-01-16 21:10:34 +00:00
|
|
|
if (chan[i].std.ex3.had) {
|
|
|
|
lfoValue=(chan[i].std.ex3.val>7)?0:(8|(chan[i].std.ex3.val&7));
|
|
|
|
rWrite(0x22,lfoValue);
|
|
|
|
}
|
2022-09-12 07:26:00 +00:00
|
|
|
if (chan[i].std.ex4.had && chan[i].active) {
|
|
|
|
chan[i].opMask=chan[i].std.ex4.val&15;
|
|
|
|
chan[i].opMaskChanged=true;
|
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
for (int j=0; j<4; j++) {
|
|
|
|
unsigned short baseAddr=chanOffs[i]|opOffs[j];
|
|
|
|
DivInstrumentFM::Operator& op=chan[i].state.op[j];
|
|
|
|
DivMacroInt::IntOp& m=chan[i].std.op[j];
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.am.had) {
|
|
|
|
op.am=m.am.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.ar.had) {
|
|
|
|
op.ar=m.ar.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.dr.had) {
|
|
|
|
op.dr=m.dr.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.mult.had) {
|
|
|
|
op.mult=m.mult.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.rr.had) {
|
|
|
|
op.rr=m.rr.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.sl.had) {
|
|
|
|
op.sl=m.sl.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.tl.had) {
|
2023-08-22 04:57:07 +00:00
|
|
|
op.tl=m.tl.val;
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[i] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
2022-01-27 07:32:34 +00:00
|
|
|
} else {
|
2023-02-09 22:36:33 +00:00
|
|
|
if (KVS(i,j)) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[i].outVol&0x7f,127));
|
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.rs.had) {
|
|
|
|
op.rs=m.rs.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.dt.had) {
|
|
|
|
op.dt=m.dt.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.d2r.had) {
|
|
|
|
op.d2r=m.d2r.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_DT2_D2R,op.d2r&31);
|
|
|
|
}
|
2022-04-10 05:01:55 +00:00
|
|
|
if (m.ssg.had) {
|
|
|
|
op.ssgEnv=m.ssg.val;
|
2022-01-27 07:32:34 +00:00
|
|
|
rWrite(baseAddr+ADDR_SSG,op.ssgEnv&15);
|
|
|
|
}
|
|
|
|
}
|
2023-01-19 23:22:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i=16; i<512; i++) {
|
|
|
|
if (pendingWrites[i]!=oldWrites[i]) {
|
|
|
|
immWrite(i,pendingWrites[i]&0xff);
|
|
|
|
oldWrites[i]=pendingWrites[i];
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
|
2023-01-19 23:22:48 +00:00
|
|
|
int hardResetElapsed=0;
|
|
|
|
bool mustHardReset=false;
|
2022-01-27 07:32:34 +00:00
|
|
|
|
2023-01-19 23:22:48 +00:00
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
|
|
|
if (i==1 && extMode) continue;
|
2021-12-09 18:25:02 +00:00
|
|
|
if (chan[i].keyOn || chan[i].keyOff) {
|
2021-12-21 06:29:07 +00:00
|
|
|
immWrite(0x28,0x00|konOffs[i]);
|
2022-04-10 08:04:31 +00:00
|
|
|
if (chan[i].hardReset && chan[i].keyOn) {
|
2023-01-19 23:22:48 +00:00
|
|
|
mustHardReset=true;
|
2022-04-10 08:04:31 +00:00
|
|
|
for (int j=0; j<4; j++) {
|
|
|
|
unsigned short baseAddr=chanOffs[i]|opOffs[j];
|
2023-01-19 23:22:48 +00:00
|
|
|
immWrite(baseAddr+ADDR_SL_RR,0x0f);
|
|
|
|
hardResetElapsed++;
|
2022-04-10 08:04:31 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[i].keyOff=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 00:01:01 +00:00
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
|
|
|
if (i==1 && extMode) continue;
|
|
|
|
if (chan[i].freqChanged) {
|
|
|
|
if (parent->song.linearPitch==2) {
|
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,false,4,chan[i].pitch2,chipClock,CHIP_FREQBASE,11);
|
2022-09-24 00:01:01 +00:00
|
|
|
} else {
|
2022-12-17 07:07:24 +00:00
|
|
|
int fNum=parent->calcFreq(chan[i].baseFreq&0x7ff,chan[i].pitch,chan[i].fixedArp?chan[i].baseNoteOverride:chan[i].arpOff,chan[i].fixedArp,false,4,chan[i].pitch2,chipClock,CHIP_FREQBASE,11);
|
2022-09-24 00:01:01 +00:00
|
|
|
int block=(chan[i].baseFreq&0xf800)>>11;
|
|
|
|
if (fNum<0) fNum=0;
|
|
|
|
if (fNum>2047) {
|
|
|
|
while (block<7) {
|
|
|
|
fNum>>=1;
|
|
|
|
block++;
|
|
|
|
}
|
|
|
|
if (fNum>2047) fNum=2047;
|
|
|
|
}
|
|
|
|
chan[i].freq=(block<<11)|fNum;
|
|
|
|
}
|
|
|
|
if (chan[i].freq>0x3fff) chan[i].freq=0x3fff;
|
|
|
|
immWrite(chanOffs[i]+ADDR_FREQH,chan[i].freq>>8);
|
|
|
|
immWrite(chanOffs[i]+ADDR_FREQ,chan[i].freq&0xff);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed+=2;
|
2022-09-24 00:01:01 +00:00
|
|
|
chan[i].freqChanged=false;
|
|
|
|
}
|
2023-01-19 23:22:48 +00:00
|
|
|
if ((chan[i].keyOn || chan[i].opMaskChanged) && !chan[i].hardReset) {
|
2022-09-24 00:01:01 +00:00
|
|
|
immWrite(0x28,(chan[i].opMask<<4)|konOffs[i]);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
2022-09-24 00:01:01 +00:00
|
|
|
chan[i].opMaskChanged=false;
|
|
|
|
chan[i].keyOn=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
|
|
|
// ADPCM-A
|
|
|
|
for (int i=adpcmAChanOffs; i<adpcmBChanOffs; i++) {
|
|
|
|
if (chan[i].furnacePCM) {
|
|
|
|
chan[i].std.next();
|
|
|
|
if (chan[i].std.vol.had) {
|
|
|
|
chan[i].outVol=(chan[i].vol*MIN(chan[i].macroVolMul,chan[i].std.vol.val))/chan[i].macroVolMul;
|
|
|
|
}
|
|
|
|
if (chan[i].std.duty.had) {
|
|
|
|
if (globalADPCMAVolume!=(chan[i].std.duty.val&0x3f)) {
|
|
|
|
globalADPCMAVolume=chan[i].std.duty.val&0x3f;
|
|
|
|
immWrite(0x101,globalADPCMAVolume);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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.panL.had) {
|
|
|
|
chan[i].pan=chan[i].std.panL.val&3;
|
|
|
|
}
|
|
|
|
if (chan[i].std.phaseReset.had) {
|
|
|
|
if ((chan[i].std.phaseReset.val==1) && chan[i].active) {
|
|
|
|
chan[i].keyOn=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!isMuted[i] && (chan[i].std.vol.had || chan[i].std.panL.had)) {
|
|
|
|
immWrite(0x108+(i-adpcmAChanOffs),isMuted[i]?0:((chan[i].pan<<6)|chan[i].outVol));
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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-23 14:24:02 +00:00
|
|
|
}
|
|
|
|
if (chan[i].keyOff) {
|
|
|
|
writeADPCMAOff|=(1<<(i-adpcmAChanOffs));
|
|
|
|
chan[i].keyOff=false;
|
|
|
|
}
|
|
|
|
if (chan[i].keyOn) {
|
|
|
|
if (chan[i].sample>=0 && chan[i].sample<parent->song.sampleLen) {
|
|
|
|
writeADPCMAOn|=(1<<(i-adpcmAChanOffs));
|
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-23 14:24:02 +00:00
|
|
|
chan[i].keyOn=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-02-25 05:11:27 +00:00
|
|
|
// ADPCM-B
|
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[adpcmBChanOffs].furnacePCM) {
|
|
|
|
chan[adpcmBChanOffs].std.next();
|
|
|
|
|
|
|
|
if (chan[adpcmBChanOffs].std.vol.had) {
|
|
|
|
chan[adpcmBChanOffs].outVol=(chan[adpcmBChanOffs].vol*MIN(chan[adpcmBChanOffs].macroVolMul,chan[adpcmBChanOffs].std.vol.val))/chan[adpcmBChanOffs].macroVolMul;
|
|
|
|
immWrite(0x1b,chan[adpcmBChanOffs].outVol);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
2022-02-25 05:11:27 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 06:21:08 +00:00
|
|
|
if (NEW_ARP_STRAT) {
|
|
|
|
chan[adpcmBChanOffs].handleArp();
|
|
|
|
} else if (chan[adpcmBChanOffs].std.arp.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[adpcmBChanOffs].inPorta) {
|
2022-08-27 08:25:48 +00:00
|
|
|
chan[adpcmBChanOffs].baseFreq=NOTE_ADPCMB(parent->calcArp(chan[adpcmBChanOffs].note,chan[adpcmBChanOffs].std.arp.val));
|
2022-02-25 05:11:27 +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
|
|
|
chan[adpcmBChanOffs].freqChanged=true;
|
|
|
|
}
|
2023-01-12 23:47:02 +00:00
|
|
|
|
|
|
|
if (chan[adpcmBChanOffs].std.pitch.had) {
|
|
|
|
if (chan[adpcmBChanOffs].std.pitch.mode) {
|
|
|
|
chan[adpcmBChanOffs].pitch2+=chan[adpcmBChanOffs].std.pitch.val;
|
|
|
|
CLAMP_VAR(chan[adpcmBChanOffs].pitch2,-65535,65535);
|
|
|
|
} else {
|
|
|
|
chan[adpcmBChanOffs].pitch2=chan[adpcmBChanOffs].std.pitch.val;
|
|
|
|
}
|
|
|
|
chan[adpcmBChanOffs].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[adpcmBChanOffs].std.panL.had) {
|
|
|
|
if (chan[adpcmBChanOffs].pan!=(chan[adpcmBChanOffs].std.panL.val&3)) {
|
|
|
|
chan[adpcmBChanOffs].pan=chan[adpcmBChanOffs].std.panL.val&3;
|
|
|
|
if (!isMuted[adpcmBChanOffs]) {
|
|
|
|
immWrite(0x11,(isMuted[adpcmBChanOffs]?0:(chan[adpcmBChanOffs].pan<<6)));
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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[adpcmBChanOffs].std.phaseReset.had) {
|
|
|
|
if ((chan[adpcmBChanOffs].std.phaseReset.val==1) && chan[adpcmBChanOffs].active) {
|
|
|
|
chan[adpcmBChanOffs].keyOn=true;
|
2022-02-25 05:11:27 +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[adpcmBChanOffs].freqChanged || chan[adpcmBChanOffs].keyOn || chan[adpcmBChanOffs].keyOff) {
|
|
|
|
if (chan[adpcmBChanOffs].furnacePCM) {
|
|
|
|
if (chan[adpcmBChanOffs].sample>=0 && chan[adpcmBChanOffs].sample<parent->song.sampleLen) {
|
|
|
|
double off=65535.0*(double)(parent->getSample(chan[adpcmBChanOffs].sample)->centerRate)/8363.0;
|
2022-12-17 07:07:24 +00:00
|
|
|
chan[adpcmBChanOffs].freq=parent->calcFreq(chan[adpcmBChanOffs].baseFreq,chan[adpcmBChanOffs].pitch,chan[adpcmBChanOffs].fixedArp?chan[adpcmBChanOffs].baseNoteOverride:chan[adpcmBChanOffs].arpOff,chan[adpcmBChanOffs].fixedArp,false,4,chan[adpcmBChanOffs].pitch2,(double)chipClock/144,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
|
|
|
} else {
|
|
|
|
chan[adpcmBChanOffs].freq=0;
|
|
|
|
}
|
|
|
|
immWrite(0x19,chan[adpcmBChanOffs].freq&0xff);
|
|
|
|
immWrite(0x1a,(chan[adpcmBChanOffs].freq>>8)&0xff);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed+=2;
|
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[adpcmBChanOffs].keyOn || chan[adpcmBChanOffs].keyOff) {
|
|
|
|
immWrite(0x10,0x01); // reset
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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[adpcmBChanOffs].active && chan[adpcmBChanOffs].keyOn && !chan[adpcmBChanOffs].keyOff) {
|
|
|
|
if (chan[adpcmBChanOffs].sample>=0 && chan[adpcmBChanOffs].sample<parent->song.sampleLen) {
|
|
|
|
DivSample* s=parent->getSample(chan[adpcmBChanOffs].sample);
|
|
|
|
immWrite(0x10,(s->isLoopable())?0x90:0x80); // start/repeat
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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[adpcmBChanOffs].keyOn=false;
|
|
|
|
chan[adpcmBChanOffs].keyOff=false;
|
2022-05-11 05:04:36 +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
|
|
|
chan[adpcmBChanOffs].freqChanged=false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writeADPCMAOff) {
|
|
|
|
immWrite(0x100,0x80|writeADPCMAOff);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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
|
|
|
writeADPCMAOff=0;
|
2022-02-25 05:11:27 +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 (writeADPCMAOn) {
|
|
|
|
immWrite(0x100,writeADPCMAOn);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
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
|
|
|
writeADPCMAOn=0;
|
|
|
|
}
|
2022-09-24 00:01:01 +00:00
|
|
|
|
|
|
|
// PSG
|
|
|
|
ay->tick(sysTick);
|
|
|
|
ay->flushWrites();
|
|
|
|
for (DivRegWrite& i: ay->getRegisterWrites()) {
|
2022-09-29 04:21:24 +00:00
|
|
|
if (i.addr>15) continue;
|
2022-09-24 00:01:01 +00:00
|
|
|
immWrite(i.addr&15,i.val);
|
2023-01-19 23:22:48 +00:00
|
|
|
hardResetElapsed++;
|
2022-09-24 00:01:01 +00:00
|
|
|
}
|
|
|
|
ay->getRegisterWrites().clear();
|
2023-01-19 23:22:48 +00:00
|
|
|
|
|
|
|
// hard reset handling
|
|
|
|
if (mustHardReset) {
|
|
|
|
for (unsigned int i=hardResetElapsed; i<hardResetCycles; i++) {
|
|
|
|
immWrite(0xf0,i&0xff);
|
|
|
|
}
|
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
|
|
|
if (i==1 && extMode) continue;
|
|
|
|
if ((chan[i].keyOn || chan[i].opMaskChanged) && chan[i].hardReset) {
|
2023-01-20 09:28:18 +00:00
|
|
|
// restore SL/RR
|
|
|
|
for (int j=0; j<4; j++) {
|
|
|
|
unsigned short baseAddr=chanOffs[i]|opOffs[j];
|
|
|
|
DivInstrumentFM::Operator& op=chan[i].state.op[j];
|
|
|
|
immWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
|
|
|
|
2023-01-19 23:22:48 +00:00
|
|
|
immWrite(0x28,(chan[i].opMask<<4)|konOffs[i]);
|
|
|
|
chan[i].opMaskChanged=false;
|
|
|
|
chan[i].keyOn=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
|
2023-01-19 07:23:05 +00:00
|
|
|
void DivPlatformYM2610::commitState(int ch, DivInstrument* ins) {
|
|
|
|
if (chan[ch].insChanged) {
|
|
|
|
chan[ch].state=ins->fm;
|
|
|
|
chan[ch].opMask=
|
|
|
|
(chan[ch].state.op[0].enable?1:0)|
|
|
|
|
(chan[ch].state.op[2].enable?2:0)|
|
|
|
|
(chan[ch].state.op[1].enable?4:0)|
|
|
|
|
(chan[ch].state.op[3].enable?8:0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
unsigned short baseAddr=chanOffs[ch]|opOffs[i];
|
|
|
|
DivInstrumentFM::Operator& op=chan[ch].state.op[i];
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[ch] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
2023-01-19 07:23:05 +00:00
|
|
|
} else {
|
2023-02-09 22:36:33 +00:00
|
|
|
if (KVS(ch,i)) {
|
|
|
|
if (!chan[ch].active || chan[ch].insChanged) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[ch].outVol&0x7f,127));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (chan[ch].insChanged) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
2023-01-19 07:23:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chan[ch].insChanged) {
|
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
rWrite(baseAddr+ADDR_DT2_D2R,op.d2r&31);
|
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
rWrite(baseAddr+ADDR_SSG,op.ssgEnv&15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chan[ch].insChanged) {
|
|
|
|
rWrite(chanOffs[ch]+ADDR_FB_ALG,(chan[ch].state.alg&7)|(chan[ch].state.fb<<3));
|
|
|
|
rWrite(chanOffs[ch]+ADDR_LRAF,(isMuted[ch]?0:(chan[ch].pan<<6))|(chan[ch].state.fms&7)|((chan[ch].state.ams&3)<<4));
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformYM2610::dispatch(DivCommand c) {
|
2022-09-29 04:21:24 +00:00
|
|
|
if (c.chan>=psgChanOffs && c.chan<adpcmAChanOffs) {
|
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
|
|
|
c.chan-=psgChanOffs;
|
2022-04-06 23:03:30 +00:00
|
|
|
return ay->dispatch(c);
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
switch (c.cmd) {
|
|
|
|
case DIV_CMD_NOTE_ON: {
|
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 (c.chan>=adpcmBChanOffs) { // ADPCM-B
|
2022-04-21 07:24:06 +00:00
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_FM);
|
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].macroVolMul=(ins->type==DIV_INS_AMIGA)?64:255;
|
|
|
|
if (ins->type==DIV_INS_AMIGA || ins->type==DIV_INS_ADPCMB) {
|
2022-02-25 05:11:27 +00:00
|
|
|
chan[c.chan].furnacePCM=true;
|
|
|
|
} else {
|
|
|
|
chan[c.chan].furnacePCM=false;
|
|
|
|
}
|
|
|
|
if (skipRegisterWrites) break;
|
|
|
|
if (chan[c.chan].furnacePCM) {
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(ins);
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[c.chan].std.vol.will) {
|
2022-02-25 05:11:27 +00:00
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
2022-02-25 06:04:07 +00:00
|
|
|
immWrite(0x1b,chan[c.chan].outVol);
|
2022-02-25 05:11:27 +00:00
|
|
|
}
|
2023-04-07 21:54:05 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].sample=ins->amiga.getSample(c.value);
|
|
|
|
c.value=ins->amiga.getFreq(c.value);
|
|
|
|
}
|
2022-03-10 19:11:23 +00:00
|
|
|
if (chan[c.chan].sample>=0 && chan[c.chan].sample<parent->song.sampleLen) {
|
2022-03-10 18:47:36 +00:00
|
|
|
DivSample* s=parent->getSample(chan[c.chan].sample);
|
2022-09-26 01:07:21 +00:00
|
|
|
immWrite(0x12,(sampleOffB[chan[c.chan].sample]>>8)&0xff);
|
|
|
|
immWrite(0x13,sampleOffB[chan[c.chan].sample]>>16);
|
|
|
|
int end=sampleOffB[chan[c.chan].sample]+s->lengthB-1;
|
2022-03-10 18:47:36 +00:00
|
|
|
immWrite(0x14,(end>>8)&0xff);
|
|
|
|
immWrite(0x15,end>>16);
|
|
|
|
immWrite(0x11,isMuted[c.chan]?0:(chan[c.chan].pan<<6));
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
chan[c.chan].baseFreq=NOTE_ADPCMB(chan[c.chan].note);
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
}
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
} else {
|
|
|
|
immWrite(0x10,0x01); // reset
|
|
|
|
immWrite(0x12,0);
|
|
|
|
immWrite(0x13,0);
|
|
|
|
immWrite(0x14,0);
|
|
|
|
immWrite(0x15,0);
|
|
|
|
break;
|
2022-02-25 05:11:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-03-10 18:47:36 +00:00
|
|
|
chan[c.chan].sample=-1;
|
2022-04-28 06:31:16 +00:00
|
|
|
chan[c.chan].macroInit(NULL);
|
2022-02-25 05:11:27 +00:00
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
if ((12*sampleBank+c.value%12)>=parent->song.sampleLen) {
|
|
|
|
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
|
|
|
chan[c.chan].sample=12*sampleBank+c.value%12;
|
|
|
|
if (chan[c.chan].sample>=0 && chan[c.chan].sample<parent->song.sampleLen) {
|
|
|
|
DivSample* s=parent->getSample(12*sampleBank+c.value%12);
|
2022-09-26 01:07:21 +00:00
|
|
|
immWrite(0x12,(sampleOffB[chan[c.chan].sample]>>8)&0xff);
|
|
|
|
immWrite(0x13,sampleOffB[chan[c.chan].sample]>>16);
|
|
|
|
int end=sampleOffB[chan[c.chan].sample]+s->lengthB-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
|
|
|
immWrite(0x14,(end>>8)&0xff);
|
|
|
|
immWrite(0x15,end>>16);
|
|
|
|
immWrite(0x11,isMuted[c.chan]?0:(chan[c.chan].pan<<6));
|
|
|
|
int freq=(65536.0*(double)s->rate)/((double)chipClock/144.0);
|
|
|
|
immWrite(0x19,freq&0xff);
|
|
|
|
immWrite(0x1a,(freq>>8)&0xff);
|
|
|
|
immWrite(0x1b,chan[c.chan].outVol);
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
} else {
|
|
|
|
immWrite(0x10,0x01); // reset
|
|
|
|
immWrite(0x12,0);
|
|
|
|
immWrite(0x13,0);
|
|
|
|
immWrite(0x14,0);
|
|
|
|
immWrite(0x15,0);
|
|
|
|
break;
|
|
|
|
}
|
2022-02-25 05:11:27 +00:00
|
|
|
}
|
|
|
|
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 (c.chan>=adpcmAChanOffs) { // ADPCM-A
|
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_FM);
|
|
|
|
chan[c.chan].macroVolMul=(ins->type==DIV_INS_AMIGA)?64:31;
|
2022-09-24 03:45:47 +00:00
|
|
|
if (!parent->song.disableSampleMacro && (ins->type==DIV_INS_AMIGA || ins->type==DIV_INS_ADPCMA)) {
|
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].furnacePCM=true;
|
|
|
|
} else {
|
|
|
|
chan[c.chan].furnacePCM=false;
|
|
|
|
}
|
2021-12-21 06:29:07 +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 (chan[c.chan].furnacePCM) {
|
|
|
|
chan[c.chan].macroInit(ins);
|
|
|
|
if (!chan[c.chan].std.vol.will) {
|
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
}
|
2022-12-29 08:12:00 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) chan[c.chan].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].sample>=0 && chan[c.chan].sample<parent->song.sampleLen) {
|
|
|
|
DivSample* s=parent->getSample(chan[c.chan].sample);
|
2022-09-26 01:07:21 +00:00
|
|
|
immWrite(0x110+c.chan-adpcmAChanOffs,(sampleOffA[chan[c.chan].sample]>>8)&0xff);
|
|
|
|
immWrite(0x118+c.chan-adpcmAChanOffs,sampleOffA[chan[c.chan].sample]>>16);
|
|
|
|
int end=sampleOffA[chan[c.chan].sample]+s->lengthA-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
|
|
|
immWrite(0x120+c.chan-adpcmAChanOffs,(end>>8)&0xff);
|
|
|
|
immWrite(0x128+c.chan-adpcmAChanOffs,end>>16);
|
|
|
|
immWrite(0x108+c.chan-adpcmAChanOffs,isMuted[c.chan]?0:((chan[c.chan].pan<<6)|chan[c.chan].outVol));
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
chan[c.chan].baseFreq=NOTE_ADPCMB(chan[c.chan].note);
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
}
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
} else {
|
|
|
|
writeADPCMAOff|=(1<<(c.chan-adpcmAChanOffs));
|
|
|
|
immWrite(0x110+c.chan-adpcmAChanOffs,0);
|
|
|
|
immWrite(0x118+c.chan-adpcmAChanOffs,0);
|
|
|
|
immWrite(0x120+c.chan-adpcmAChanOffs,0);
|
|
|
|
immWrite(0x128+c.chan-adpcmAChanOffs,0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
chan[c.chan].sample=-1;
|
|
|
|
chan[c.chan].macroInit(NULL);
|
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
if ((12*sampleBank+c.value%12)>=parent->song.sampleLen) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
chan[c.chan].sample=12*sampleBank+c.value%12;
|
|
|
|
if (chan[c.chan].sample>=0 && chan[c.chan].sample<parent->song.sampleLen) {
|
|
|
|
DivSample* s=parent->getSample(12*sampleBank+c.value%12);
|
2022-09-26 01:07:21 +00:00
|
|
|
immWrite(0x110+c.chan-adpcmAChanOffs,(sampleOffA[chan[c.chan].sample]>>8)&0xff);
|
|
|
|
immWrite(0x118+c.chan-adpcmAChanOffs,sampleOffA[chan[c.chan].sample]>>16);
|
|
|
|
int end=sampleOffA[chan[c.chan].sample]+s->lengthA-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
|
|
|
immWrite(0x120+c.chan-adpcmAChanOffs,(end>>8)&0xff);
|
|
|
|
immWrite(0x128+c.chan-adpcmAChanOffs,end>>16);
|
|
|
|
immWrite(0x108+c.chan-adpcmAChanOffs,isMuted[c.chan]?0:((chan[c.chan].pan<<6)|chan[c.chan].outVol));
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
} else {
|
|
|
|
writeADPCMAOff|=(1<<(c.chan-adpcmAChanOffs));
|
|
|
|
immWrite(0x110+c.chan-adpcmAChanOffs,0);
|
|
|
|
immWrite(0x118+c.chan-adpcmAChanOffs,0);
|
|
|
|
immWrite(0x120+c.chan-adpcmAChanOffs,0);
|
|
|
|
immWrite(0x128+c.chan-adpcmAChanOffs,0);
|
|
|
|
break;
|
|
|
|
}
|
2021-12-10 09:22:13 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-04-21 07:24:06 +00:00
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_FM);
|
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
|
|
|
if (c.chan<psgChanOffs) {
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[c.chan].std.vol.will) {
|
2022-01-27 07:32:34 +00:00
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
}
|
|
|
|
}
|
2021-12-09 22:06:28 +00:00
|
|
|
|
2023-01-19 07:23:05 +00:00
|
|
|
commitState(c.chan,ins);
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[c.chan].insChanged=false;
|
|
|
|
|
2022-01-19 05:01:34 +00:00
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
2022-05-10 07:22:08 +00:00
|
|
|
chan[c.chan].baseFreq=NOTE_FNUM_BLOCK(c.value,11);
|
2022-03-30 04:58:50 +00:00
|
|
|
chan[c.chan].portaPause=false;
|
2022-01-19 05:01:34 +00:00
|
|
|
chan[c.chan].freqChanged=true;
|
2022-01-27 07:32:34 +00:00
|
|
|
chan[c.chan].note=c.value;
|
2022-01-19 05:01:34 +00:00
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_OFF:
|
|
|
|
chan[c.chan].keyOff=true;
|
2022-02-21 02:39:14 +00:00
|
|
|
chan[c.chan].keyOn=false;
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[c.chan].active=false;
|
2023-05-05 07:14:53 +00:00
|
|
|
if (parent->song.brokenFMOff) chan[c.chan].macroInit(NULL);
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
2022-02-08 18:11:04 +00:00
|
|
|
case DIV_CMD_NOTE_OFF_ENV:
|
|
|
|
chan[c.chan].keyOff=true;
|
2022-02-21 02:39:14 +00:00
|
|
|
chan[c.chan].keyOn=false;
|
2022-02-08 18:11:04 +00:00
|
|
|
chan[c.chan].active=false;
|
|
|
|
chan[c.chan].std.release();
|
|
|
|
break;
|
|
|
|
case DIV_CMD_ENV_RELEASE:
|
|
|
|
chan[c.chan].std.release();
|
|
|
|
break;
|
2021-12-09 18:25:02 +00:00
|
|
|
case DIV_CMD_VOLUME: {
|
|
|
|
chan[c.chan].vol=c.value;
|
2022-04-10 05:01:55 +00:00
|
|
|
if (!chan[c.chan].std.vol.has) {
|
2022-01-27 07:32:34 +00:00
|
|
|
chan[c.chan].outVol=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 (c.chan>=adpcmBChanOffs) { // ADPCM-B
|
2022-02-25 05:11:27 +00:00
|
|
|
immWrite(0x1b,chan[c.chan].outVol);
|
|
|
|
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 (c.chan>=adpcmAChanOffs) { // ADPCM-A
|
|
|
|
immWrite(0x108+(c.chan-adpcmAChanOffs),isMuted[c.chan]?0:((chan[c.chan].pan<<6)|chan[c.chan].outVol));
|
2021-12-11 03:51:50 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
2022-01-23 05:57:47 +00:00
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[c.chan] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
2021-12-09 18:25:02 +00:00
|
|
|
} else {
|
2023-02-09 22:36:33 +00:00
|
|
|
if (KVS(c.chan,i)) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[c.chan].outVol&0x7f,127));
|
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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_ADPCMA_GLOBAL_VOLUME: {
|
|
|
|
if (globalADPCMAVolume!=(c.value&0x3f)) {
|
|
|
|
globalADPCMAVolume=c.value&0x3f;
|
|
|
|
immWrite(0x101,globalADPCMAVolume&0x3f);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
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) {
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[c.chan].insChanged=true;
|
|
|
|
}
|
|
|
|
chan[c.chan].ins=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PANNING: {
|
2022-04-30 04:41:14 +00:00
|
|
|
if (c.value==0 && c.value2==0) {
|
2022-03-06 19:39:20 +00:00
|
|
|
chan[c.chan].pan=3;
|
|
|
|
} else {
|
2022-04-30 04:41:14 +00:00
|
|
|
chan[c.chan].pan=(c.value2>0)|((c.value>0)<<1);
|
2021-12-09 18:25:02 +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 (c.chan>=adpcmBChanOffs) {
|
2022-02-25 05:11:27 +00:00
|
|
|
immWrite(0x11,isMuted[c.chan]?0:(chan[c.chan].pan<<6));
|
|
|
|
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 (c.chan>=adpcmAChanOffs) {
|
|
|
|
immWrite(0x108+(c.chan-adpcmAChanOffs),isMuted[c.chan]?0:((chan[c.chan].pan<<6)|chan[c.chan].outVol));
|
2021-12-11 04:41:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-01-23 05:57:47 +00:00
|
|
|
rWrite(chanOffs[c.chan]+ADDR_LRAF,(isMuted[c.chan]?0:(chan[c.chan].pan<<6))|(chan[c.chan].state.fms&7)|((chan[c.chan].state.ams&3)<<4));
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_PITCH: {
|
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 (c.chan==adpcmBChanOffs && !chan[c.chan].furnacePCM) break;
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[c.chan].pitch=c.value;
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_PORTA: {
|
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 (c.chan>=psgChanOffs || parent->song.linearPitch==2) { // PSG, ADPCM-B
|
2022-03-10 18:47:36 +00:00
|
|
|
int destFreq=NOTE_OPNB(c.chan,c.value2);
|
2021-12-09 22:06:28 +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;
|
|
|
|
}
|
2022-05-23 04:47:41 +00:00
|
|
|
PLEASE_HELP_ME(chan[c.chan]);
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_SAMPLE_BANK:
|
|
|
|
sampleBank=c.value;
|
|
|
|
if (sampleBank>(parent->song.sample.size()/12)) {
|
|
|
|
sampleBank=parent->song.sample.size()/12;
|
|
|
|
}
|
2021-12-10 09:22:13 +00:00
|
|
|
iface.sampleBank=sampleBank;
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
|
|
|
case DIV_CMD_LEGATO: {
|
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 (c.chan==adpcmBChanOffs && !chan[c.chan].furnacePCM) break;
|
2023-01-19 07:23:05 +00:00
|
|
|
if (c.chan<=psgChanOffs) {
|
|
|
|
if (chan[c.chan].insChanged) {
|
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_FM);
|
|
|
|
commitState(c.chan,ins);
|
|
|
|
chan[c.chan].insChanged=false;
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 18:47:36 +00:00
|
|
|
chan[c.chan].baseFreq=NOTE_OPNB(c.chan,c.value);
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
|
|
|
}
|
2022-06-28 06:16:46 +00:00
|
|
|
case DIV_CMD_FM_EXTCH: {
|
|
|
|
if (extSys) {
|
2023-08-11 21:14:06 +00:00
|
|
|
if (extMode==(bool)c.value) break;
|
2022-06-28 06:16:46 +00:00
|
|
|
extMode=c.value;
|
|
|
|
immWrite(0x27,extMode?0x40:0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
case DIV_CMD_FM_LFO: {
|
2022-12-24 00:00:03 +00:00
|
|
|
if (c.chan>=psgChanOffs) break;
|
|
|
|
lfoValue=(c.value&7)|((c.value>>4)<<3);
|
|
|
|
rWrite(0x22,lfoValue);
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-02-01 20:12:06 +00:00
|
|
|
case DIV_CMD_FM_FB: {
|
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 (c.chan>=psgChanOffs) break;
|
2022-02-01 20:12:06 +00:00
|
|
|
chan[c.chan].state.fb=c.value&7;
|
|
|
|
rWrite(chanOffs[c.chan]+ADDR_FB_ALG,(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3));
|
|
|
|
break;
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
case DIV_CMD_FM_MULT: {
|
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 (c.chan>=psgChanOffs) break;
|
2021-12-09 18:25:02 +00:00
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
2022-01-23 05:57:47 +00:00
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.mult=c.value2&15;
|
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_TL: {
|
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 (c.chan>=psgChanOffs) break;
|
2021-12-09 18:25:02 +00:00
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
2022-01-23 05:57:47 +00:00
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.tl=c.value2;
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[c.chan] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
2021-12-09 18:25:02 +00:00
|
|
|
} else {
|
2023-02-09 22:36:33 +00:00
|
|
|
if (KVS(c.chan,c.value)) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[c.chan].outVol&0x7f,127));
|
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_AR: {
|
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 (c.chan>=psgChanOffs) break;
|
2021-12-09 18:25:02 +00:00
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
2022-01-23 05:57:47 +00:00
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.ar=c.value2&31;
|
2021-12-09 18:25:02 +00:00
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
2022-01-23 05:57:47 +00:00
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-01-23 05:57:47 +00:00
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.ar=c.value2&31;
|
2021-12-09 18:25:02 +00:00
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
2022-01-23 05:57:47 +00:00
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-05-04 19:09:43 +00:00
|
|
|
case DIV_CMD_FM_RS: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.rs=c.value2&3;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.rs=c.value2&3;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_AM: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.am=c.value2&1;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.am=c.value2&1;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_DR: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.dr=c.value2&31;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.dr=c.value2&31;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_SL: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.sl=c.value2&15;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.sl=c.value2&15;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_RR: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.rr=c.value2&15;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.rr=c.value2&15;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_D2R: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.d2r=c.value2&31;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_DT2_D2R,op.d2r&31);
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.d2r=c.value2&31;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_DT2_D2R,op.d2r&31);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_DT: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.dt=c.value&7;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.dt=c.value2&7;
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_FM_SSG: {
|
|
|
|
if (c.value<0) {
|
|
|
|
for (int i=0; i<4; i++) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[i];
|
|
|
|
op.ssgEnv=8^(c.value2&15);
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[i];
|
|
|
|
rWrite(baseAddr+ADDR_SSG,op.ssgEnv&15);
|
|
|
|
}
|
|
|
|
} else if (c.value<4) {
|
|
|
|
DivInstrumentFM::Operator& op=chan[c.chan].state.op[orderedOps[c.value]];
|
|
|
|
op.ssgEnv=8^(c.value2&15);
|
|
|
|
unsigned short baseAddr=chanOffs[c.chan]|opOffs[orderedOps[c.value]];
|
|
|
|
rWrite(baseAddr+ADDR_SSG,op.ssgEnv&15);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-04-10 08:04:31 +00:00
|
|
|
case DIV_CMD_FM_HARD_RESET:
|
|
|
|
chan[c.chan].hardReset=c.value;
|
|
|
|
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;
|
2021-12-09 18:25:02 +00:00
|
|
|
case DIV_ALWAYS_SET_VOLUME:
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLMAX:
|
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 (c.chan>=adpcmBChanOffs) return 255;
|
|
|
|
if (c.chan>=adpcmAChanOffs) return 31;
|
|
|
|
if (c.chan>=psgChanOffs) return 15;
|
2021-12-09 18:25:02 +00:00
|
|
|
return 127;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_PORTA:
|
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 (c.chan>=psgChanOffs) {
|
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_FM));
|
2022-02-09 03:46:58 +00:00
|
|
|
}
|
2021-12-09 22:06:28 +00:00
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
chan[c.chan].inPorta=c.value;
|
2021-12-09 18:25:02 +00:00
|
|
|
break;
|
|
|
|
case DIV_CMD_PRE_NOTE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//printf("WARNING: unimplemented command %d\n",c.cmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-12-18 08:25:42 +00:00
|
|
|
void DivPlatformYM2610::muteChannel(int ch, bool mute) {
|
|
|
|
isMuted[ch]=mute;
|
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 (ch>=psgChanOffs) { // PSG
|
|
|
|
DivPlatformYM2610Base::muteChannel(ch,mute);
|
2021-12-18 08:25:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// FM
|
2023-02-09 22:36:33 +00:00
|
|
|
for (int j=0; j<4; j++) {
|
|
|
|
unsigned short baseAddr=chanOffs[ch]|opOffs[j];
|
|
|
|
DivInstrumentFM::Operator& op=chan[ch].state.op[j];
|
|
|
|
if (isMuted[ch] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
|
|
|
} else {
|
|
|
|
if (KVS(ch,j)) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[ch].outVol&0x7f,127));
|
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-23 05:57:47 +00:00
|
|
|
rWrite(chanOffs[ch]+ADDR_LRAF,(isMuted[ch]?0:(chan[ch].pan<<6))|(chan[ch].state.fms&7)|((chan[ch].state.ams&3)<<4));
|
2021-12-18 08:25:42 +00:00
|
|
|
}
|
|
|
|
|
2021-12-21 06:29:07 +00:00
|
|
|
void DivPlatformYM2610::forceIns() {
|
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
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
2022-01-27 07:32:34 +00:00
|
|
|
for (int j=0; j<4; j++) {
|
|
|
|
unsigned short baseAddr=chanOffs[i]|opOffs[j];
|
|
|
|
DivInstrumentFM::Operator& op=chan[i].state.op[j];
|
2023-02-09 22:36:33 +00:00
|
|
|
if (isMuted[i] || !op.enable) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127);
|
2022-01-27 07:32:34 +00:00
|
|
|
} else {
|
2023-02-09 22:36:33 +00:00
|
|
|
if (KVS(i,j)) {
|
|
|
|
rWrite(baseAddr+ADDR_TL,127-VOL_SCALE_LOG_BROKEN(127-op.tl,chan[i].outVol&0x7f,127));
|
|
|
|
} else {
|
|
|
|
rWrite(baseAddr+ADDR_TL,op.tl);
|
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
}
|
|
|
|
rWrite(baseAddr+ADDR_MULT_DT,(op.mult&15)|(dtTable[op.dt&7]<<4));
|
|
|
|
rWrite(baseAddr+ADDR_RS_AR,(op.ar&31)|(op.rs<<6));
|
|
|
|
rWrite(baseAddr+ADDR_AM_DR,(op.dr&31)|(op.am<<7));
|
|
|
|
rWrite(baseAddr+ADDR_DT2_D2R,op.d2r&31);
|
|
|
|
rWrite(baseAddr+ADDR_SL_RR,(op.rr&15)|(op.sl<<4));
|
|
|
|
rWrite(baseAddr+ADDR_SSG,op.ssgEnv&15);
|
|
|
|
}
|
|
|
|
rWrite(chanOffs[i]+ADDR_FB_ALG,(chan[i].state.alg&7)|(chan[i].state.fb<<3));
|
|
|
|
rWrite(chanOffs[i]+ADDR_LRAF,(isMuted[i]?0:(chan[i].pan<<6))|(chan[i].state.fms&7)|((chan[i].state.ams&3)<<4));
|
2022-02-21 02:39:14 +00:00
|
|
|
if (chan[i].active) {
|
|
|
|
chan[i].keyOn=true;
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
2022-01-27 07:32:34 +00:00
|
|
|
}
|
2022-12-24 00:00:03 +00:00
|
|
|
immWrite(0x22,lfoValue);
|
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
|
|
|
for (int i=adpcmAChanOffs; i<=adpcmBChanOffs; i++) {
|
2021-12-21 06:29:07 +00:00
|
|
|
chan[i].insChanged=true;
|
|
|
|
}
|
2022-04-06 23:03:30 +00:00
|
|
|
|
|
|
|
ay->forceIns();
|
|
|
|
ay->flushWrites();
|
|
|
|
for (DivRegWrite& i: ay->getRegisterWrites()) {
|
2022-09-29 04:21:24 +00:00
|
|
|
if (i.addr>15) continue;
|
2022-04-06 23:03:30 +00:00
|
|
|
immWrite(i.addr&15,i.val);
|
|
|
|
}
|
|
|
|
ay->getRegisterWrites().clear();
|
2021-12-21 06:29:07 +00:00
|
|
|
}
|
|
|
|
|
2022-01-27 05:29:16 +00:00
|
|
|
void* DivPlatformYM2610::getChanState(int ch) {
|
|
|
|
return &chan[ch];
|
|
|
|
}
|
|
|
|
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* DivPlatformYM2610::getChanMacroInt(int ch) {
|
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 (ch>=psgChanOffs && ch<adpcmAChanOffs) return ay->getChanMacroInt(ch-psgChanOffs);
|
2022-06-05 23:17:00 +00:00
|
|
|
return &chan[ch].std;
|
|
|
|
}
|
|
|
|
|
2023-08-24 08:05:25 +00:00
|
|
|
unsigned short DivPlatformYM2610::getPan(int ch) {
|
|
|
|
if (ch>=psgChanOffs && ch<adpcmAChanOffs) return 0;
|
2023-08-24 08:25:38 +00:00
|
|
|
return ((chan[ch].pan&2)<<7)|(chan[ch].pan&1);
|
2023-08-24 08:05:25 +00:00
|
|
|
}
|
|
|
|
|
2022-05-01 08:47:04 +00:00
|
|
|
DivDispatchOscBuffer* DivPlatformYM2610::getOscBuffer(int ch) {
|
|
|
|
return oscBuf[ch];
|
|
|
|
}
|
|
|
|
|
2022-02-22 03:31:27 +00:00
|
|
|
unsigned char* DivPlatformYM2610::getRegisterPool() {
|
|
|
|
return regPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformYM2610::getRegisterPoolSize() {
|
|
|
|
return 512;
|
|
|
|
}
|
|
|
|
|
2022-02-01 23:08:19 +00:00
|
|
|
void DivPlatformYM2610::poke(unsigned int addr, unsigned short val) {
|
|
|
|
immWrite(addr,val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformYM2610::poke(std::vector<DivRegWrite>& wlist) {
|
|
|
|
for (DivRegWrite& i: wlist) immWrite(i.addr,i.val);
|
|
|
|
}
|
|
|
|
|
2021-12-11 08:34:43 +00:00
|
|
|
void DivPlatformYM2610::reset() {
|
2023-07-13 09:09:20 +00:00
|
|
|
writes.clear();
|
2022-02-22 03:31:27 +00:00
|
|
|
memset(regPool,0,512);
|
2022-01-25 23:46:27 +00:00
|
|
|
if (dumpWrites) {
|
|
|
|
addWrite(0xffffffff,0);
|
|
|
|
}
|
2021-12-09 18:25:02 +00:00
|
|
|
fm->reset();
|
2022-02-10 08:35:08 +00:00
|
|
|
for (int i=0; i<14; i++) {
|
2022-12-04 10:58:58 +00:00
|
|
|
chan[i]=DivPlatformOPN::OPNChannelStereo();
|
2022-04-15 10:37:23 +00:00
|
|
|
chan[i].std.setEngine(parent);
|
2021-12-11 08:34:43 +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
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
2021-12-09 18:25:02 +00:00
|
|
|
chan[i].vol=0x7f;
|
2022-01-27 07:32:34 +00:00
|
|
|
chan[i].outVol=0x7f;
|
2021-12-09 18:25:02 +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
|
|
|
for (int i=psgChanOffs; i<adpcmAChanOffs; i++) {
|
2021-12-09 22:06:28 +00:00
|
|
|
chan[i].vol=0x0f;
|
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=0x0f;
|
2021-12-09 22:06:28 +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
|
|
|
for (int i=adpcmAChanOffs; i<adpcmBChanOffs; i++) {
|
2021-12-09 22:06:28 +00:00
|
|
|
chan[i].vol=0x1f;
|
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=0x1f;
|
2021-12-09 22:06:28 +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
|
|
|
chan[adpcmBChanOffs].vol=0xff;
|
|
|
|
chan[adpcmBChanOffs].outVol=0xff;
|
2021-12-09 18:25:02 +00:00
|
|
|
|
|
|
|
for (int i=0; i<512; i++) {
|
|
|
|
oldWrites[i]=-1;
|
|
|
|
pendingWrites[i]=-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastBusy=60;
|
2022-12-24 00:00:03 +00:00
|
|
|
lfoValue=8;
|
2021-12-09 18:25:02 +00:00
|
|
|
sampleBank=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
|
|
|
DivPlatformYM2610Base::reset();
|
2021-12-09 18:25:02 +00:00
|
|
|
|
2021-12-09 22:06:28 +00:00
|
|
|
delay=0;
|
|
|
|
|
2021-12-09 18:25:02 +00:00
|
|
|
extMode=false;
|
|
|
|
|
|
|
|
// LFO
|
2022-12-24 00:00:03 +00:00
|
|
|
immWrite(0x22,lfoValue);
|
2021-12-10 09:22:13 +00:00
|
|
|
|
|
|
|
// PCM volume
|
2022-09-23 14:24:02 +00:00
|
|
|
immWrite(0x101,globalADPCMAVolume); // A
|
2022-02-25 05:11:27 +00:00
|
|
|
immWrite(0x1b,0xff); // B
|
2021-12-11 08:34:43 +00:00
|
|
|
}
|
|
|
|
|
2023-01-02 00:46:08 +00:00
|
|
|
int DivPlatformYM2610::getOutputCount() {
|
|
|
|
return 2;
|
2021-12-11 08:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformYM2610::keyOffAffectsArp(int ch) {
|
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
|
|
|
return (ch>=psgChanOffs);
|
2021-12-11 08:34:43 +00:00
|
|
|
}
|
|
|
|
|
2022-01-18 04:59:52 +00:00
|
|
|
void DivPlatformYM2610::notifyInsChange(int ins) {
|
2022-12-24 05:15:15 +00:00
|
|
|
for (int i=0; i<16; i++) {
|
2022-01-18 04:59:52 +00:00
|
|
|
if (chan[i].ins==ins) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
}
|
|
|
|
}
|
2022-04-06 23:03:30 +00:00
|
|
|
ay->notifyInsChange(ins);
|
2022-01-18 04:59:52 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 00:36:02 +00:00
|
|
|
void DivPlatformYM2610::notifyInsDeletion(void* ins) {
|
2022-04-06 23:03:30 +00:00
|
|
|
ay->notifyInsDeletion(ins);
|
2023-01-19 05:37:37 +00:00
|
|
|
for (int i=0; i<psgChanOffs; i++) {
|
|
|
|
chan[i].std.notifyInsDeletion((DivInstrument*)ins);
|
|
|
|
}
|
|
|
|
for (int i=adpcmAChanOffs; i<chanNum; i++) {
|
|
|
|
chan[i].std.notifyInsDeletion((DivInstrument*)ins);
|
|
|
|
}
|
2022-04-06 23:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformYM2610::setSkipRegisterWrites(bool value) {
|
|
|
|
DivDispatch::setSkipRegisterWrites(value);
|
|
|
|
ay->setSkipRegisterWrites(value);
|
2022-01-14 00:36:02 +00:00
|
|
|
}
|
|
|
|
|
2022-09-30 01:13:40 +00:00
|
|
|
int DivPlatformYM2610::init(DivEngine* p, int channels, int sugRate, const DivConfig& flags) {
|
2022-05-01 17:57:44 +00:00
|
|
|
DivPlatformYM2610Base::init(p, channels, sugRate, flags);
|
2021-12-11 08:34:43 +00:00
|
|
|
reset();
|
2022-02-10 08:35:08 +00:00
|
|
|
return 14;
|
2021-12-09 18:25:02 +00:00
|
|
|
}
|
2021-12-15 05:37:27 +00:00
|
|
|
|
|
|
|
void DivPlatformYM2610::quit() {
|
|
|
|
delete fm;
|
2022-05-01 17:57:44 +00:00
|
|
|
DivPlatformYM2610Base::quit();
|
2021-12-15 05:37:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DivPlatformYM2610::~DivPlatformYM2610() {
|
2022-01-30 17:31:50 +00:00
|
|
|
}
|