2022-03-21 22:34:43 +00:00
|
|
|
/**
|
|
|
|
* Furnace Tracker - multi-system chiptune tracker
|
|
|
|
* Copyright (C) 2021-2022 tildearrow and contributors
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gui.h"
|
|
|
|
|
2022-04-30 06:37:37 +00:00
|
|
|
void FurnaceGUI::drawSysConf(int chan, DivSystem type, unsigned int& flags, bool modifyOnChange) {
|
|
|
|
bool restart=settings.restartOnFlagChange && modifyOnChange;
|
2022-03-21 22:34:43 +00:00
|
|
|
bool sysPal=flags&1;
|
2022-04-30 06:37:37 +00:00
|
|
|
unsigned int copyOfFlags=flags;
|
|
|
|
switch (type) {
|
2022-03-21 22:34:43 +00:00
|
|
|
case DIV_SYSTEM_YM2612:
|
|
|
|
case DIV_SYSTEM_YM2612_EXT: {
|
2022-05-20 18:45:26 +00:00
|
|
|
if (ImGui::RadioButton("NTSC (7.67MHz)",(flags&7)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&0x80000000)|0;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
if (ImGui::RadioButton("PAL (7.61MHz)",(flags&7)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&0x80000000)|1;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
if (ImGui::RadioButton("FM Towns (8MHz)",(flags&7)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&0x80000000)|2;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
if (ImGui::RadioButton("AtGames Genesis (6.13MHz)",(flags&7)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&0x80000000)|3;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
if (ImGui::RadioButton("Sega System 32 (8.05MHz)",(flags&7)==4)) {
|
|
|
|
copyOfFlags=(flags&0x80000000)|4;
|
|
|
|
}
|
2022-03-21 22:34:43 +00:00
|
|
|
bool ladder=flags&0x80000000;
|
|
|
|
if (ImGui::Checkbox("Enable DAC distortion",&ladder)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x80000000))|(ladder?0x80000000:0);
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_SMS: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("NTSC (3.58MHz)",(flags&3)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (3.55MHz)",(flags&3)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|1;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("BBC Micro (4MHz)",(flags&3)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|2;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Half NTSC (1.79MHz)",(flags&3)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|3;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
ImGui::Text("Chip type:");
|
|
|
|
if (ImGui::RadioButton("Sega VDP/Master System",((flags>>2)&3)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~12))|0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("TI SN76489",((flags>>2)&3)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~12))|4;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("TI SN76489 with Atari-like short noise",((flags>>2)&3)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~12))|8;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
/*if (ImGui::RadioButton("Game Gear",(flags>>2)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&3)|12);
|
2022-03-21 22:34:43 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
bool noPhaseReset=flags&16;
|
|
|
|
if (ImGui::Checkbox("Disable noise period change phase reset",&noPhaseReset)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~16))|(noPhaseReset<<4);
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_OPLL:
|
|
|
|
case DIV_SYSTEM_OPLL_DRUMS:
|
|
|
|
case DIV_SYSTEM_VRC7: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("NTSC (3.58MHz)",(flags&15)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (3.55MHz)",(flags&15)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|1;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("BBC Micro (4MHz)",(flags&15)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|2;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Half NTSC (1.79MHz)",(flags&15)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|3;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-04-30 06:37:37 +00:00
|
|
|
if (type!=DIV_SYSTEM_VRC7) {
|
2022-03-21 22:34:43 +00:00
|
|
|
ImGui::Text("Patch set:");
|
|
|
|
if (ImGui::RadioButton("Yamaha YM2413",((flags>>4)&15)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0xf0))|0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Yamaha YMF281",((flags>>4)&15)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0xf0))|0x10;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Yamaha YM2423",((flags>>4)&15)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0xf0))|0x20;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Konami VRC7",((flags>>4)&15)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0xf0))|0x30;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_YM2151:
|
|
|
|
if (ImGui::RadioButton("NTSC/X16 (3.58MHz)",flags==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (3.55MHz)",flags==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=1;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("X1/X68000 (4MHz)",flags==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=2;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_SYSTEM_NES:
|
2022-03-27 16:06:56 +00:00
|
|
|
case DIV_SYSTEM_VRC6:
|
2022-04-04 05:48:08 +00:00
|
|
|
case DIV_SYSTEM_FDS:
|
|
|
|
case DIV_SYSTEM_MMC5:
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::RadioButton("NTSC (1.79MHz)",flags==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (1.67MHz)",flags==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=1;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Dendy (1.77MHz)",flags==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=2;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_SYSTEM_C64_8580:
|
|
|
|
case DIV_SYSTEM_C64_6581:
|
|
|
|
if (ImGui::RadioButton("NTSC (1.02MHz)",flags==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (0.99MHz)",flags==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=1;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("SSI 2001 (0.89MHz)",flags==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=2;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_SYSTEM_AY8910:
|
|
|
|
case DIV_SYSTEM_AY8930: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("1.79MHz (ZX Spectrum NTSC/MSX)",(flags&15)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.77MHz (ZX Spectrum)",(flags&15)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|1;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.75MHz (ZX Spectrum)",(flags&15)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|2;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("2MHz (Atari ST/Sharp X1)",(flags&15)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|3;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.5MHz (Vectrex)",(flags&15)==4)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|4;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1MHz (Amstrad CPC)",(flags&15)==5)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|5;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-05 06:43:59 +00:00
|
|
|
if (ImGui::RadioButton("0.89MHz (Pre-divided Sunsoft 5B)",(flags&15)==6)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|6;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.67MHz (?)",(flags&15)==7)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|7;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-05 06:43:59 +00:00
|
|
|
if (ImGui::RadioButton("0.83MHz (Pre-divided Sunsoft 5B on PAL)",(flags&15)==8)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|8;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.10MHz (Gamate/VIC-20 PAL)",(flags&15)==9)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|9;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("2^21Hz (Game Boy)",(flags&15)==10)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|10;
|
|
|
|
|
2022-05-04 14:04:20 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("3.58MHz (Darky)",(flags&15)==11)) {
|
|
|
|
copyOfFlags=(flags&(~15))|11;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("3.6MHz (Darky)",(flags&15)==12)) {
|
|
|
|
copyOfFlags=(flags&(~15))|12;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-04-30 06:37:37 +00:00
|
|
|
if (type==DIV_SYSTEM_AY8910) {
|
2022-03-21 22:34:43 +00:00
|
|
|
ImGui::Text("Chip type:");
|
|
|
|
if (ImGui::RadioButton("AY-3-8910",(flags&0x30)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x30))|0;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("YM2149(F)",(flags&0x30)==16)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x30))|16;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Sunsoft 5B",(flags&0x30)==32)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x30))|32;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("AY-3-8914",(flags&0x30)==48)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x30))|48;
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
bool stereo=flags&0x40;
|
2022-05-04 14:04:20 +00:00
|
|
|
ImGui::BeginDisabled((type==DIV_SYSTEM_AY8910) && ((flags&0x30)==32));
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Checkbox("Stereo##_AY_STEREO",&stereo)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x40))|(stereo?0x40:0);
|
|
|
|
|
2022-05-04 14:04:20 +00:00
|
|
|
}
|
|
|
|
ImGui::EndDisabled();
|
|
|
|
bool clockSel=flags&0x80;
|
|
|
|
ImGui::BeginDisabled((type==DIV_SYSTEM_AY8910) && ((flags&0x30)!=16));
|
|
|
|
if (ImGui::Checkbox("Half Clock divider##_AY_CLKSEL",&clockSel)) {
|
|
|
|
copyOfFlags=(flags&(~0x80))|(clockSel?0x80:0);
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
ImGui::EndDisabled();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_SAA1099:
|
|
|
|
if (ImGui::RadioButton("SAM Coupé (8MHz)",flags==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=0;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("NTSC (7.15MHz)",flags==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=1;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (7.09MHz)",flags==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=2;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_SYSTEM_AMIGA: {
|
|
|
|
ImGui::Text("Stereo separation:");
|
|
|
|
int stereoSep=(flags>>8)&127;
|
2022-04-02 05:11:44 +00:00
|
|
|
if (CWSliderInt("##StereoSep",&stereoSep,0,127)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
if (stereoSep<0) stereoSep=0;
|
|
|
|
if (stereoSep>127) stereoSep=127;
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~0x7f00))|((stereoSep&127)<<8);
|
2022-03-21 22:34:43 +00:00
|
|
|
} rightClickable
|
|
|
|
if (ImGui::RadioButton("Amiga 500 (OCS)",(flags&2)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=flags&(~2);
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Amiga 1200 (AGA)",(flags&2)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~2))|2;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
sysPal=flags&1;
|
|
|
|
if (ImGui::Checkbox("PAL",&sysPal)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~1))|(unsigned int)sysPal;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
bool bypassLimits=flags&4;
|
|
|
|
if (ImGui::Checkbox("Bypass frequency limits",&bypassLimits)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~4))|(bypassLimits<<2);
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_PCSPKR: {
|
|
|
|
ImGui::Text("Speaker type:");
|
|
|
|
if (ImGui::RadioButton("Unfiltered",(flags&3)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|0;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Cone",(flags&3)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|1;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Piezo",(flags&3)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|2;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Use system beeper (Linux only!)",(flags&3)==3)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~3))|3;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_QSOUND: {
|
|
|
|
ImGui::Text("Echo delay:");
|
|
|
|
int echoBufSize=2725 - (flags & 4095);
|
2022-04-02 05:11:44 +00:00
|
|
|
if (CWSliderInt("##EchoBufSize",&echoBufSize,0,2725)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
if (echoBufSize<0) echoBufSize=0;
|
|
|
|
if (echoBufSize>2725) echoBufSize=2725;
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags & ~4095) | ((2725 - echoBufSize) & 4095);
|
2022-03-21 22:34:43 +00:00
|
|
|
} rightClickable
|
|
|
|
ImGui::Text("Echo feedback:");
|
|
|
|
int echoFeedback=(flags>>12)&255;
|
2022-04-02 05:11:44 +00:00
|
|
|
if (CWSliderInt("##EchoFeedback",&echoFeedback,0,255)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
if (echoFeedback<0) echoFeedback=0;
|
|
|
|
if (echoFeedback>255) echoFeedback=255;
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags & ~(255 << 12)) | ((echoFeedback & 255) << 12);
|
2022-03-21 22:34:43 +00:00
|
|
|
} rightClickable
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_SYSTEM_X1_010: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("16MHz (Seta 1)",(flags&15)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|0;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("16.67MHz (Seta 2)",(flags&15)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|1;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
bool x1_010Stereo=flags&16;
|
|
|
|
if (ImGui::Checkbox("Stereo",&x1_010Stereo)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~16))|(x1_010Stereo<<4);
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-03-22 17:44:13 +00:00
|
|
|
case DIV_SYSTEM_N163: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("NTSC (1.79MHz)",(flags&15)==0)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|0;
|
2022-03-22 17:44:13 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (1.67MHz)",(flags&15)==1)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|1;
|
2022-03-22 17:44:13 +00:00
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Dendy (1.77MHz)",(flags&15)==2)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~15))|2;
|
2022-03-22 17:44:13 +00:00
|
|
|
}
|
|
|
|
ImGui::Text("Initial channel limit:");
|
|
|
|
int initialChannelLimit=((flags>>4)&7)+1;
|
2022-04-02 05:11:44 +00:00
|
|
|
if (CWSliderInt("##InitialChannelLimit",&initialChannelLimit,1,8)) {
|
2022-03-22 17:44:13 +00:00
|
|
|
if (initialChannelLimit<1) initialChannelLimit=1;
|
|
|
|
if (initialChannelLimit>8) initialChannelLimit=8;
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags & ~(7 << 4)) | (((initialChannelLimit-1) & 7) << 4);
|
|
|
|
|
2022-03-22 17:44:13 +00:00
|
|
|
} rightClickable
|
2022-04-10 11:22:49 +00:00
|
|
|
bool n163Multiplex=flags&128;
|
2022-04-11 07:39:06 +00:00
|
|
|
if (ImGui::Checkbox("Disable hissing",&n163Multiplex)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=(flags&(~128))|(n163Multiplex<<7);
|
2022-04-10 11:22:49 +00:00
|
|
|
}
|
2022-03-22 17:44:13 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-05-11 08:41:02 +00:00
|
|
|
case DIV_SYSTEM_OPN: {
|
|
|
|
if (ImGui::RadioButton("NTSC (3.58MHz)",(flags&3)==0)) {
|
|
|
|
copyOfFlags=(flags&0x80000000)|0;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PAL (3.54MHz)",(flags&3)==1)) {
|
|
|
|
copyOfFlags=(flags&0x80000000)|1;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("Arcade (4MHz)",(flags&3)==2)) {
|
|
|
|
copyOfFlags=(flags&0x80000000)|2;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("PC-9801-26K? TODO: CONFIRM (3MHz)",(flags&3)==3)) {
|
|
|
|
copyOfFlags=(flags&0x80000000)|3;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
case DIV_SYSTEM_RF5C68: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("8MHz (FM Towns)",(flags&15)==0)) {
|
|
|
|
copyOfFlags=(flags&(~15))|0;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("10MHz (Sega System 18)",(flags&15)==1)) {
|
|
|
|
copyOfFlags=(flags&(~15))|1;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("12.5MHz (Sega CD/System 32)",(flags&15)==2)) {
|
|
|
|
copyOfFlags=(flags&(~15))|2;
|
|
|
|
|
|
|
|
}
|
|
|
|
ImGui::Text("Chip type:");
|
|
|
|
if (ImGui::RadioButton("RF5C68 (10-bit output)",((flags>>4)&15)==0)) {
|
|
|
|
copyOfFlags=(flags&(~240))|0;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("RF5C164 (16-bit output)",((flags>>4)&15)==1)) {
|
|
|
|
copyOfFlags=(flags&(~240))|16;
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-05-23 08:13:22 +00:00
|
|
|
case DIV_SYSTEM_MSM6295: {
|
|
|
|
ImGui::Text("Clock rate:");
|
|
|
|
if (ImGui::RadioButton("1MHz",flags==0)) {
|
|
|
|
copyOfFlags=0;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.056MHz",flags==1)) {
|
|
|
|
copyOfFlags=1;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("4MHz",flags==2)) {
|
|
|
|
copyOfFlags=2;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("4.224MHz",flags==3)) {
|
|
|
|
copyOfFlags=3;
|
|
|
|
}
|
2022-05-29 18:29:18 +00:00
|
|
|
if (ImGui::RadioButton("3.58MHz",flags==4)) {
|
|
|
|
copyOfFlags=4;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.79MHz",flags==5)) {
|
|
|
|
copyOfFlags=5;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.02MHz",flags==6)) {
|
|
|
|
copyOfFlags=6;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("0.89MHz",flags==7)) {
|
|
|
|
copyOfFlags=7;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("2MHz",flags==8)) {
|
|
|
|
copyOfFlags=8;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("2.112MHz",flags==9)) {
|
|
|
|
copyOfFlags=9;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("0.875MHz",flags==10)) {
|
|
|
|
copyOfFlags=10;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("0.9375MHz",flags==11)) {
|
|
|
|
copyOfFlags=11;
|
|
|
|
}
|
|
|
|
if (ImGui::RadioButton("1.5MHz",flags==12)) {
|
|
|
|
copyOfFlags=12;
|
|
|
|
}
|
2022-05-23 08:13:22 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-03-21 22:34:43 +00:00
|
|
|
case DIV_SYSTEM_GB:
|
|
|
|
case DIV_SYSTEM_SWAN:
|
|
|
|
case DIV_SYSTEM_VERA:
|
|
|
|
case DIV_SYSTEM_BUBSYS_WSG:
|
|
|
|
case DIV_SYSTEM_YM2610:
|
|
|
|
case DIV_SYSTEM_YM2610_EXT:
|
|
|
|
case DIV_SYSTEM_YM2610_FULL:
|
|
|
|
case DIV_SYSTEM_YM2610_FULL_EXT:
|
|
|
|
case DIV_SYSTEM_YM2610B:
|
|
|
|
case DIV_SYSTEM_YM2610B_EXT:
|
|
|
|
case DIV_SYSTEM_YMU759:
|
|
|
|
case DIV_SYSTEM_PET:
|
2022-05-10 04:32:07 +00:00
|
|
|
case DIV_SYSTEM_SCC:
|
|
|
|
case DIV_SYSTEM_SCC_PLUS:
|
2022-05-18 06:55:33 +00:00
|
|
|
case DIV_SYSTEM_YMZ280B:
|
2022-03-21 22:34:43 +00:00
|
|
|
ImGui::Text("nothing to configure");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (ImGui::Checkbox("PAL",&sysPal)) {
|
2022-04-30 06:37:37 +00:00
|
|
|
copyOfFlags=sysPal;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-04-30 06:37:37 +00:00
|
|
|
|
|
|
|
if (copyOfFlags!=flags) {
|
|
|
|
if (chan>=0) {
|
|
|
|
e->setSysFlags(chan,copyOfFlags,restart);
|
|
|
|
updateWindowTitle();
|
|
|
|
} else {
|
|
|
|
flags=copyOfFlags;
|
|
|
|
}
|
|
|
|
}
|
2022-03-31 18:46:27 +00:00
|
|
|
}
|