rename D65784221391491G18414119492 to PV1000

it probably was only used there anyway
This commit is contained in:
tildearrow 2023-03-05 14:01:21 -05:00
parent 59d9900a9e
commit 77f1ca3339
15 changed files with 54 additions and 54 deletions

View file

@ -546,7 +546,7 @@ src/engine/platform/snes.cpp
src/engine/platform/k007232.cpp src/engine/platform/k007232.cpp
src/engine/platform/ga20.cpp src/engine/platform/ga20.cpp
src/engine/platform/sm8521.cpp src/engine/platform/sm8521.cpp
src/engine/platform/d65010g031.cpp src/engine/platform/pv1000.cpp
src/engine/platform/pcmdac.cpp src/engine/platform/pcmdac.cpp
src/engine/platform/dummy.cpp src/engine/platform/dummy.cpp
) )

View file

@ -76,7 +76,7 @@
#include "platform/k007232.h" #include "platform/k007232.h"
#include "platform/ga20.h" #include "platform/ga20.h"
#include "platform/sm8521.h" #include "platform/sm8521.h"
#include "platform/d65010g031.h" #include "platform/pv1000.h"
#include "platform/pcmdac.h" #include "platform/pcmdac.h"
#include "platform/dummy.h" #include "platform/dummy.h"
#include "../ta-log.h" #include "../ta-log.h"
@ -494,8 +494,8 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
case DIV_SYSTEM_SM8521: case DIV_SYSTEM_SM8521:
dispatch=new DivPlatformSM8521; dispatch=new DivPlatformSM8521;
break; break;
case DIV_SYSTEM_D65010G031: case DIV_SYSTEM_PV1000:
dispatch=new DivPlatformD65010G031; dispatch=new DivPlatformPV1000;
break; break;
case DIV_SYSTEM_PCM_DAC: case DIV_SYSTEM_PCM_DAC:
dispatch=new DivPlatformPCMDAC; dispatch=new DivPlatformPCMDAC;

View file

@ -928,7 +928,7 @@ void DivInstrument::putInsData2(SafeWriter* w, bool fui, const DivSong* song) {
checkForWL=true; checkForWL=true;
if (ws.enabled) featureWS=true; if (ws.enabled) featureWS=true;
break; break;
case DIV_INS_D65010G031: case DIV_INS_PV1000:
break; break;
case DIV_INS_MAX: case DIV_INS_MAX:

View file

@ -79,7 +79,7 @@ enum DivInstrumentType: unsigned short {
DIV_INS_GA20=46, DIV_INS_GA20=46,
DIV_INS_POKEMINI=47, DIV_INS_POKEMINI=47,
DIV_INS_SM8521=48, DIV_INS_SM8521=48,
DIV_INS_D65010G031=49, DIV_INS_PV1000=49,
DIV_INS_MAX, DIV_INS_MAX,
DIV_INS_NULL DIV_INS_NULL
}; };

View file

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "d65010g031.h" #include "pv1000.h"
#include "../engine.h" #include "../engine.h"
#include <math.h> #include <math.h>
@ -25,18 +25,18 @@
#define CHIP_DIVIDER 1024 #define CHIP_DIVIDER 1024
const char* regCheatSheetD65010G031[]={ const char* regCheatSheetPV1000[]={
"CH1_Pitch", "00", "CH1_Pitch", "00",
"CH2_Pitch", "01", "CH2_Pitch", "01",
"CH3_Pitch", "02", "CH3_Pitch", "02",
NULL NULL
}; };
const char** DivPlatformD65010G031::getRegisterSheet() { const char** DivPlatformPV1000::getRegisterSheet() {
return regCheatSheetD65010G031; return regCheatSheetPV1000;
} }
void DivPlatformD65010G031::acquire(short** buf, size_t len) { void DivPlatformPV1000::acquire(short** buf, size_t len) {
for (size_t h=0; h<len; h++) { for (size_t h=0; h<len; h++) {
short samp; short samp;
samp=d65010g031_sound_tick(&d65010g031,1); samp=d65010g031_sound_tick(&d65010g031,1);
@ -47,7 +47,7 @@ void DivPlatformD65010G031::acquire(short** buf, size_t len) {
} }
} }
void DivPlatformD65010G031::tick(bool sysTick) { void DivPlatformPV1000::tick(bool sysTick) {
for (int i=0; i<3; i++) { for (int i=0; i<3; i++) {
chan[i].std.next(); chan[i].std.next();
if (NEW_ARP_STRAT) { if (NEW_ARP_STRAT) {
@ -87,7 +87,7 @@ void DivPlatformD65010G031::tick(bool sysTick) {
} }
} }
int DivPlatformD65010G031::dispatch(DivCommand c) { int DivPlatformPV1000::dispatch(DivCommand c) {
switch (c.cmd) { switch (c.cmd) {
case DIV_CMD_NOTE_ON: { case DIV_CMD_NOTE_ON: {
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_VIC); DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_VIC);
@ -175,7 +175,7 @@ int DivPlatformD65010G031::dispatch(DivCommand c) {
return 1; return 1;
} }
void DivPlatformD65010G031::muteChannel(int ch, bool mute) { void DivPlatformPV1000::muteChannel(int ch, bool mute) {
isMuted[ch]=mute; isMuted[ch]=mute;
if (mute) { if (mute) {
chan[ch].keyOff=true; chan[ch].keyOff=true;
@ -184,34 +184,34 @@ void DivPlatformD65010G031::muteChannel(int ch, bool mute) {
} }
} }
void DivPlatformD65010G031::forceIns() { void DivPlatformPV1000::forceIns() {
for (int i=0; i<3; i++) { for (int i=0; i<3; i++) {
chan[i].insChanged=true; chan[i].insChanged=true;
chan[i].freqChanged=true; chan[i].freqChanged=true;
} }
} }
void* DivPlatformD65010G031::getChanState(int ch) { void* DivPlatformPV1000::getChanState(int ch) {
return &chan[ch]; return &chan[ch];
} }
DivMacroInt* DivPlatformD65010G031::getChanMacroInt(int ch) { DivMacroInt* DivPlatformPV1000::getChanMacroInt(int ch) {
return &chan[ch].std; return &chan[ch].std;
} }
DivDispatchOscBuffer* DivPlatformD65010G031::getOscBuffer(int ch) { DivDispatchOscBuffer* DivPlatformPV1000::getOscBuffer(int ch) {
return oscBuf[ch]; return oscBuf[ch];
} }
unsigned char* DivPlatformD65010G031::getRegisterPool() { unsigned char* DivPlatformPV1000::getRegisterPool() {
return regPool; return regPool;
} }
int DivPlatformD65010G031::getRegisterPoolSize() { int DivPlatformPV1000::getRegisterPoolSize() {
return 3; return 3;
} }
void DivPlatformD65010G031::reset() { void DivPlatformPV1000::reset() {
memset(regPool,0,3); memset(regPool,0,3);
for (int i=0; i<3; i++) { for (int i=0; i<3; i++) {
chan[i]=Channel(); chan[i]=Channel();
@ -220,17 +220,17 @@ void DivPlatformD65010G031::reset() {
d65010g031_reset(&d65010g031); d65010g031_reset(&d65010g031);
} }
int DivPlatformD65010G031::getOutputCount() { int DivPlatformPV1000::getOutputCount() {
return 1; return 1;
} }
void DivPlatformD65010G031::notifyInsDeletion(void* ins) { void DivPlatformPV1000::notifyInsDeletion(void* ins) {
for (int i=0; i<3; i++) { for (int i=0; i<3; i++) {
chan[i].std.notifyInsDeletion((DivInstrument*)ins); chan[i].std.notifyInsDeletion((DivInstrument*)ins);
} }
} }
void DivPlatformD65010G031::setFlags(const DivConfig& flags) { void DivPlatformPV1000::setFlags(const DivConfig& flags) {
chipClock=COLOR_NTSC*5.0; chipClock=COLOR_NTSC*5.0;
CHECK_CUSTOM_CLOCK; CHECK_CUSTOM_CLOCK;
rate=chipClock/1024; rate=chipClock/1024;
@ -239,15 +239,15 @@ void DivPlatformD65010G031::setFlags(const DivConfig& flags) {
} }
} }
void DivPlatformD65010G031::poke(unsigned int addr, unsigned short val) { void DivPlatformPV1000::poke(unsigned int addr, unsigned short val) {
rWrite(addr,val); rWrite(addr,val);
} }
void DivPlatformD65010G031::poke(std::vector<DivRegWrite>& wlist) { void DivPlatformPV1000::poke(std::vector<DivRegWrite>& wlist) {
for (DivRegWrite& i: wlist) rWrite(i.addr,i.val); for (DivRegWrite& i: wlist) rWrite(i.addr,i.val);
} }
int DivPlatformD65010G031::init(DivEngine* p, int channels, int sugRate, const DivConfig& flags) { int DivPlatformPV1000::init(DivEngine* p, int channels, int sugRate, const DivConfig& flags) {
parent=p; parent=p;
dumpWrites=false; dumpWrites=false;
skipRegisterWrites=false; skipRegisterWrites=false;
@ -260,11 +260,11 @@ int DivPlatformD65010G031::init(DivEngine* p, int channels, int sugRate, const D
return 4; return 4;
} }
void DivPlatformD65010G031::quit() { void DivPlatformPV1000::quit() {
for (int i=0; i<3; i++) { for (int i=0; i<3; i++) {
delete oscBuf[i]; delete oscBuf[i];
} }
} }
DivPlatformD65010G031::~DivPlatformD65010G031() { DivPlatformPV1000::~DivPlatformPV1000() {
} }

View file

@ -17,14 +17,14 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef _D65010G031_H #ifndef _PV1000_H
#define _D65010G031_H #define _PV1000_H
#include "../dispatch.h" #include "../dispatch.h"
#include "sound/d65010g031.h" #include "sound/d65010g031.h"
#include <queue> #include <queue>
class DivPlatformD65010G031: public DivDispatch { class DivPlatformPV1000: public DivDispatch {
struct Channel: public SharedChannel<int> { struct Channel: public SharedChannel<int> {
Channel(): Channel():
SharedChannel<int>(15) {} SharedChannel<int>(15) {}
@ -57,7 +57,7 @@ class DivPlatformD65010G031: public DivDispatch {
const char** getRegisterSheet(); const char** getRegisterSheet();
int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags); int init(DivEngine* parent, int channels, int sugRate, const DivConfig& flags);
void quit(); void quit();
~DivPlatformD65010G031(); ~DivPlatformPV1000();
}; };
#endif #endif

View file

@ -126,7 +126,7 @@ enum DivSystem {
DIV_SYSTEM_YM2203_CSM, DIV_SYSTEM_YM2203_CSM,
DIV_SYSTEM_YM2608_CSM, DIV_SYSTEM_YM2608_CSM,
DIV_SYSTEM_SM8521, DIV_SYSTEM_SM8521,
DIV_SYSTEM_D65010G031 DIV_SYSTEM_PV1000
}; };
struct DivGroovePattern { struct DivGroovePattern {

View file

@ -1833,13 +1833,13 @@ void DivEngine::registerSystems() {
waveOnlyEffectHandlerMap waveOnlyEffectHandlerMap
); );
sysDefs[DIV_SYSTEM_D65010G031]=new DivSysDef( sysDefs[DIV_SYSTEM_PV1000]=new DivSysDef(
"NEC D65010G031", NULL, 0xcb, 0, 3, false, true, 0, false, 0, "Casio PV-1000", NULL, 0xcb, 0, 3, false, true, 0, false, 0,
"Used at Casio PV1000, Nothing but 3 square wave channels.", "a game console with 3 channels of square wave. it's what happens after fusing TIA and VIC together.",
{"Channel 1", "Channel 2", "Channel 3"}, {"Square 1", "Square 2", "Square 3"},
{"CH1", "CH2", "CH3"}, {"S1", "S2", "S3"},
{DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_PULSE}, {DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_PULSE},
{DIV_INS_D65010G031, DIV_INS_D65010G031, DIV_INS_D65010G031} {DIV_INS_PV1000, DIV_INS_PV1000, DIV_INS_PV1000}
); );
sysDefs[DIV_SYSTEM_DUMMY]=new DivSysDef( sysDefs[DIV_SYSTEM_DUMMY]=new DivSysDef(

View file

@ -434,8 +434,8 @@ void FurnaceGUI::drawInsList(bool asChild) {
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SM8521]); ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SM8521]);
name=fmt::sprintf(ICON_FA_GAMEPAD "##_INS%d",i);/*placeholder*/ name=fmt::sprintf(ICON_FA_GAMEPAD "##_INS%d",i);/*placeholder*/
break; break;
case DIV_INS_D65010G031: case DIV_INS_PV1000:
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_D65010G031]); ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_PV1000]);
name=fmt::sprintf(ICON_FA_GAMEPAD "##_INS%d",i); name=fmt::sprintf(ICON_FA_GAMEPAD "##_INS%d",i);
break; break;
default: default:

View file

@ -190,7 +190,7 @@ enum FurnaceGUIColors {
GUI_COLOR_INSTR_GA20, GUI_COLOR_INSTR_GA20,
GUI_COLOR_INSTR_POKEMINI, GUI_COLOR_INSTR_POKEMINI,
GUI_COLOR_INSTR_SM8521, GUI_COLOR_INSTR_SM8521,
GUI_COLOR_INSTR_D65010G031, GUI_COLOR_INSTR_PV1000,
GUI_COLOR_INSTR_UNKNOWN, GUI_COLOR_INSTR_UNKNOWN,
GUI_COLOR_CHANNEL_BG, GUI_COLOR_CHANNEL_BG,

View file

@ -130,7 +130,7 @@ const char* insTypes[DIV_INS_MAX+1]={
"GA20", "GA20",
"Pokémon Mini", "Pokémon Mini",
"SM8521", "SM8521",
"D65010G031", "PV-1000",
NULL NULL
}; };
@ -821,7 +821,7 @@ const FurnaceGUIColorDef guiColors[GUI_COLOR_MAX]={
D(GUI_COLOR_INSTR_GA20,"",ImVec4(0.1f,1.0f,0.4f,1.0f)), D(GUI_COLOR_INSTR_GA20,"",ImVec4(0.1f,1.0f,0.4f,1.0f)),
D(GUI_COLOR_INSTR_POKEMINI,"",ImVec4(1.0f,1.0f,0.3f,1.0f)), D(GUI_COLOR_INSTR_POKEMINI,"",ImVec4(1.0f,1.0f,0.3f,1.0f)),
D(GUI_COLOR_INSTR_SM8521,"",ImVec4(0.5f,0.55f,0.6f,1.0f)), D(GUI_COLOR_INSTR_SM8521,"",ImVec4(0.5f,0.55f,0.6f,1.0f)),
D(GUI_COLOR_INSTR_D65010G031,"",ImVec4(0.5f,0.55f,0.6f,1.0f)),/*placeholder*/ D(GUI_COLOR_INSTR_PV1000,"",ImVec4(0.4f,0.6f,0.7f,1.0f)),
D(GUI_COLOR_INSTR_UNKNOWN,"",ImVec4(0.3f,0.3f,0.3f,1.0f)), D(GUI_COLOR_INSTR_UNKNOWN,"",ImVec4(0.3f,0.3f,0.3f,1.0f)),
D(GUI_COLOR_CHANNEL_BG,"",ImVec4(0.4f,0.6f,0.8f,1.0f)), D(GUI_COLOR_CHANNEL_BG,"",ImVec4(0.4f,0.6f,0.8f,1.0f)),
@ -1003,7 +1003,7 @@ const int availableSystems[]={
DIV_SYSTEM_K007232, DIV_SYSTEM_K007232,
DIV_SYSTEM_GA20, DIV_SYSTEM_GA20,
DIV_SYSTEM_SM8521, DIV_SYSTEM_SM8521,
DIV_SYSTEM_D65010G031, DIV_SYSTEM_PV1000,
DIV_SYSTEM_PCM_DAC, DIV_SYSTEM_PCM_DAC,
DIV_SYSTEM_PONG, DIV_SYSTEM_PONG,
0 // don't remove this last one! 0 // don't remove this last one!
@ -1053,7 +1053,7 @@ const int chipsSquare[]={
DIV_SYSTEM_VIC20, DIV_SYSTEM_VIC20,
DIV_SYSTEM_MSM5232, DIV_SYSTEM_MSM5232,
DIV_SYSTEM_T6W28, DIV_SYSTEM_T6W28,
DIV_SYSTEM_D65010G031, DIV_SYSTEM_PV1000,
0 // don't remove this last one! 0 // don't remove this last one!
}; };

View file

@ -5048,7 +5048,7 @@ void FurnaceGUI::drawInsEdit() {
if (ins->type==DIV_INS_ES5506) { if (ins->type==DIV_INS_ES5506) {
volMax=4095; volMax=4095;
} }
if (ins->type==DIV_INS_MSM6258 || ins->type==DIV_INS_D65010G031) { if (ins->type==DIV_INS_MSM6258 || ins->type==DIV_INS_PV1000) {
volMax=0; volMax=0;
} }
if (ins->type==DIV_INS_MSM6295) { if (ins->type==DIV_INS_MSM6295) {
@ -5118,7 +5118,7 @@ void FurnaceGUI::drawInsEdit() {
if (ins->type==DIV_INS_TIA || ins->type==DIV_INS_AMIGA || ins->type==DIV_INS_SCC || if (ins->type==DIV_INS_TIA || ins->type==DIV_INS_AMIGA || ins->type==DIV_INS_SCC ||
ins->type==DIV_INS_PET || ins->type==DIV_INS_VIC || ins->type==DIV_INS_SEGAPCM || ins->type==DIV_INS_PET || ins->type==DIV_INS_VIC || ins->type==DIV_INS_SEGAPCM ||
ins->type==DIV_INS_FM || ins->type==DIV_INS_K007232 || ins->type==DIV_INS_GA20 || ins->type==DIV_INS_FM || ins->type==DIV_INS_K007232 || ins->type==DIV_INS_GA20 ||
ins->type==DIV_INS_SM8521 || ins->type==DIV_INS_D65010G031) { ins->type==DIV_INS_SM8521 || ins->type==DIV_INS_PV1000) {
dutyMax=0; dutyMax=0;
} }
if (ins->type==DIV_INS_VBOY) { if (ins->type==DIV_INS_VBOY) {
@ -5191,7 +5191,7 @@ void FurnaceGUI::drawInsEdit() {
waveBitMode=true; waveBitMode=true;
} }
if (ins->type==DIV_INS_STD || ins->type==DIV_INS_VRC6_SAW || ins->type==DIV_INS_NES || if (ins->type==DIV_INS_STD || ins->type==DIV_INS_VRC6_SAW || ins->type==DIV_INS_NES ||
ins->type==DIV_INS_T6W28 || ins->type==DIV_INS_D65010G031) ins->type==DIV_INS_T6W28 || ins->type==DIV_INS_PV1000)
waveMax=0; waveMax=0;
if (ins->type==DIV_INS_TIA || ins->type==DIV_INS_VIC || ins->type==DIV_INS_OPLL) waveMax=15; if (ins->type==DIV_INS_TIA || ins->type==DIV_INS_VIC || ins->type==DIV_INS_OPLL) waveMax=15;
if (ins->type==DIV_INS_C64) waveMax=4; if (ins->type==DIV_INS_C64) waveMax=4;

View file

@ -263,7 +263,7 @@ void FurnaceGUI::initSystemPresets() {
); );
ENTRY( ENTRY(
"Casio PV-1000", { "Casio PV-1000", {
CH(DIV_SYSTEM_D65010G031, 1.0f, 0, "") CH(DIV_SYSTEM_PV1000, 1.0f, 0, "")
} }
); );
CATEGORY_END; CATEGORY_END;
@ -2377,7 +2377,7 @@ void FurnaceGUI::initSystemPresets() {
); );
ENTRY( ENTRY(
"NEC D65010G031", { "NEC D65010G031", {
CH(DIV_SYSTEM_D65010G031, 1.0f, 0, "") CH(DIV_SYSTEM_PV1000, 1.0f, 0, "")
} }
); );
CATEGORY_END; CATEGORY_END;

View file

@ -1929,7 +1929,7 @@ void FurnaceGUI::drawSettings() {
UI_COLOR_CONFIG(GUI_COLOR_INSTR_GA20,"GA20"); UI_COLOR_CONFIG(GUI_COLOR_INSTR_GA20,"GA20");
UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEMINI,"Pokémon Mini"); UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEMINI,"Pokémon Mini");
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SM8521,"SM8521"); UI_COLOR_CONFIG(GUI_COLOR_INSTR_SM8521,"SM8521");
UI_COLOR_CONFIG(GUI_COLOR_INSTR_D65010G031,"D65010G031"); UI_COLOR_CONFIG(GUI_COLOR_INSTR_PV1000,"PV-1000");
UI_COLOR_CONFIG(GUI_COLOR_INSTR_UNKNOWN,"Other/Unknown"); UI_COLOR_CONFIG(GUI_COLOR_INSTR_UNKNOWN,"Other/Unknown");
ImGui::TreePop(); ImGui::TreePop();
} }

View file

@ -1723,7 +1723,7 @@ bool FurnaceGUI::drawSysConf(int chan, DivSystem type, DivConfig& flags, bool mo
case DIV_SYSTEM_PET: case DIV_SYSTEM_PET:
case DIV_SYSTEM_VBOY: case DIV_SYSTEM_VBOY:
case DIV_SYSTEM_GA20: case DIV_SYSTEM_GA20:
case DIV_SYSTEM_D65010G031: case DIV_SYSTEM_PV1000:
ImGui::Text("nothing to configure"); ImGui::Text("nothing to configure");
break; break;
case DIV_SYSTEM_VERA: case DIV_SYSTEM_VERA: