From 51660dd0233de65929847618f1a4161af9b7bac2 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 31 May 2014 17:03:21 +0000 Subject: [PATCH] Add SetCpuRegister() to IEmulator. Implemented it in Atari 2600, 7800, C64, Neshawk, and technically dual gameboy (passes it to L and R where it will fail). The rest throw NotImplementedExceptions. Lua - add emu.setregister(), catches NotImplementedExceptions and informs the user. --- .../lua/EmuLuaLibrary.Emu.cs | 18 +++++++++++++ .../Base Implementations/NullEmulator.cs | 2 ++ .../Interfaces/IEmulator.cs | 7 +++++ BizHawk.Emulation.Cores/Calculator/TI83.cs | 5 ++++ .../Computers/Commodore64/C64.Core.cs | 24 +++++++++++++++++ .../Consoles/Atari/2600/Atari2600.cs | 27 +++++++++++++++++++ .../Consoles/Atari/7800/Atari7800.Core.cs | 27 +++++++++++++++++++ .../Consoles/Coleco/ColecoVision.cs | 5 ++++ .../Consoles/Intellivision/Intellivision.cs | 5 ++++ .../Consoles/Nintendo/GBA/Meteor.cs | 5 ++++ .../Consoles/Nintendo/Gameboy/Gambatte.cs | 5 ++++ .../Consoles/Nintendo/Gameboy/GambatteLink.cs | 15 +++++++++++ .../Consoles/Nintendo/N64/N64.cs | 5 ++++ .../Consoles/Nintendo/NES/NES.cs | 27 +++++++++++++++++++ .../Consoles/Nintendo/QuickNES/QuickNES.cs | 5 ++++ .../Consoles/Nintendo/SNES/LibsnesCore.cs | 5 ++++ .../Consoles/PC Engine/PCEngine.cs | 5 ++++ .../Consoles/Sega/Genesis/Genesis.cs | 5 ++++ .../Consoles/Sega/SMS/SMS.cs | 5 ++++ .../Consoles/Sega/Saturn/Yabause.cs | 5 ++++ .../Consoles/Sega/gpgx/GPGX.cs | 5 ++++ .../Consoles/Sony/PSP/PSP.cs | 5 ++++ .../Consoles/Sony/PSX/Octoshock.cs | 5 ++++ .../Consoles/WonderSwan/WonderSwan.cs | 5 ++++ BizHawk.Emulation.Cores/LibRetroEmulator.cs | 5 ++++ 25 files changed, 232 insertions(+) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs index 724d5bd702..73f5f31343 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs @@ -99,6 +99,24 @@ namespace BizHawk.Client.Common return table; } + [LuaMethodAttributes( + "setregister", + "sets the given register name to the given value" + )] + public void SetRegister(string register, int value) + { + try + { + Global.Emulator.SetCpuRegister(register, value); + } + catch (NotImplementedException) + { + Log(string.Format( + "Error: {0} does not yet implement setregister()", + Global.Emulator.Attributes().CoreName)); + } + } + [LuaMethodAttributes( "getsystemid", "Returns the ID string of the current core loaded. Note: No ROM loaded will return the string NULL" diff --git a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs index 9e806b6416..7af96de7da 100644 --- a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs @@ -88,6 +88,8 @@ namespace BizHawk.Emulation.Common return new Dictionary(); } + public void SetCpuRegister(string register, int value) { } + bool xmas; Pleg pleg; diff --git a/BizHawk.Emulation.Common/Interfaces/IEmulator.cs b/BizHawk.Emulation.Common/Interfaces/IEmulator.cs index 7ca2caca1b..c19bed4cca 100644 --- a/BizHawk.Emulation.Common/Interfaces/IEmulator.cs +++ b/BizHawk.Emulation.Common/Interfaces/IEmulator.cs @@ -145,6 +145,13 @@ namespace BizHawk.Emulation.Common /// Dictionary GetCpuFlagsAndRegisters(); + /// + /// Sets a given Cpu register to the given value + /// + /// + /// + void SetCpuRegister(string register, int value); + // ====settings interface==== // in addition to these methods, it's expected that the constructor or Load() method diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index 265dc2c1ce..a91bc2af6b 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -1046,5 +1046,10 @@ namespace BizHawk.Emulation.Cores.Calculators { "Flag S", cpu.RegisterF.Bit(7) ? 1 : 0 } }; } + + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } } } \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Core.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Core.cs index fee8252eab..666c92abe1 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Core.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Core.cs @@ -103,6 +103,30 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 { "Flag T", board.cpu.FlagT ? 1 : 0 } }; } + + public void SetCpuRegister(string register, int value) + { + switch (register) + { + default: + throw new InvalidOperationException(); + case "A": + board.cpu.A = (byte)value; + break; + case "X": + board.cpu.X = (byte)value; + break; + case "Y": + board.cpu.Y = (byte)value; + break; + case "S": + board.cpu.S = (byte)value; + break; + case "PC": + board.cpu.PC = (byte)value; + break; + } + } } static public class C64Util diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index d6d80114f5..0291938fc5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -193,6 +193,33 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 }; } + public void SetCpuRegister(string register, int value) + { + switch(register) + { + default: + throw new InvalidOperationException(); + case "A": + Cpu.A = (byte)value; + break; + case "X": + Cpu.X = (byte)value; + break; + case "Y": + Cpu.Y = (byte)value; + break; + case "S": + Cpu.S = (byte)value; + break; + case "PC": + Cpu.PC = (byte)value; + break; + case "Flag I": + Cpu.FlagI = value > 0; + break; + } + } + public bool StartAsyncSound() { return true; } public void EndAsyncSound() { } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.Core.cs b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.Core.cs index 7bf67503a4..6f5aec8ed9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.Core.cs @@ -35,5 +35,32 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800 { "Flag Z", theMachine.CPU.fZ ? 1 : 0 } }; } + + public void SetCpuRegister(string register, int value) + { + switch (register) + { + default: + throw new InvalidOperationException(); + case "A": + theMachine.CPU.A = (byte)value; + break; + case "P": + theMachine.CPU.P = (byte)value; + break; + case "PC": + theMachine.CPU.PC = (byte)value; + break; + case "S": + theMachine.CPU.S = (byte)value; + break; + case "X": + theMachine.CPU.X = (byte)value; + break; + case "Y": + theMachine.CPU.Y = (byte)value; + break; + } + } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs index 93d3f08323..30e92e344e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs @@ -293,5 +293,10 @@ namespace BizHawk.Emulation.Cores.ColecoVision { "Flag S", Cpu.RegisterF.Bit(7) ? 1 : 0 } }; } + + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } } } \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs index 2a17c9bea8..e93e2f1f45 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs @@ -28,6 +28,11 @@ namespace BizHawk.Emulation.Cores.Intellivision throw new NotImplementedException(); } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public void Connect() { Cpu.SetIntRM(Stic.GetSr1()); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs index c8259bc869..eb055c0394 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs @@ -26,6 +26,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA return ret; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public static readonly ControllerDefinition GBAController = new ControllerDefinition { diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 30409cb1bd..bfa0ed525d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -201,6 +201,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy }; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + /// /// true if the emulator is currently emulating CGB /// diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs index a60b6a88c2..fee32e0ce7 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs @@ -30,6 +30,21 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy return left.Union(right).ToList().ToDictionary(pair => pair.Key, pair => pair.Value); } + public void SetCpuRegister(string register, int value) + { + if (register.StartsWith("Left ")) + { + L.SetCpuRegister(register.Replace("Left ", ""), value); + } + + else if (register.StartsWith("Right ")) + { + L.SetCpuRegister(register.Replace("Right ", ""), value); + } + + throw new InvalidOperationException(); + } + Gameboy L; Gameboy R; // counter to ensure we do 35112 samples per frame diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs index 84a7790068..c9141970f3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs @@ -394,6 +394,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 return ret; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + private mupen64plusApi.MemoryCallback readcb; private mupen64plusApi.MemoryCallback writecb; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index 2956fd91fc..f99a0a7c51 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -887,6 +887,33 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES }; } + public void SetCpuRegister(string register, int value) + { + switch (register) + { + default: + throw new InvalidOperationException(); + case "A": + cpu.A = (byte)value; + break; + case "X": + cpu.X = (byte)value; + break; + case "Y": + cpu.Y = (byte)value; + break; + case "S": + cpu.S = (byte)value; + break; + case "PC": + cpu.PC = (byte)value; + break; + case "Flag I": + cpu.FlagI = value > 0; + break; + } + } + NESSettings Settings = new NESSettings(); NESSyncSettings SyncSettings = new NESSyncSettings(); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs index 69701f0ebc..9fa418d557 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs @@ -373,6 +373,11 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES return ret; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + #endregion #region settings diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 6e66646b5a..c244874c0a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -125,6 +125,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES }; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public class MyScanlineHookManager : ScanlineHookManager { public MyScanlineHookManager(LibsnesCore core) diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index 591004c52f..77cef3cc01 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -545,6 +545,11 @@ namespace BizHawk.Emulation.Cores.PCEngine }; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public void Dispose() { if (disc != null) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs index e8f73e6f03..0eff5350d6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs @@ -279,6 +279,11 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis }; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + int vdpcallback(int level) // Musashi handler { InterruptCallback(level); diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs index a92ef60d30..2869c3e760 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs @@ -510,6 +510,11 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem }; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public void Dispose() { } public object GetSettings() { return Settings.Clone(); } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs index bb57cd3078..1764f62d7b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs @@ -139,6 +139,11 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn throw new NotImplementedException(); } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public bool GLMode { get; private set; } public void SetGLRes(int factor, int width, int height) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index 05af29fd77..3b4005baad 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -586,6 +586,11 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx return ret; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public void UpdateVDPViewContext(LibGPGX.VDPView view) { LibGPGX.gpgx_get_vdp_view(view); diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs index e6b5a3fbea..15b285d973 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs @@ -67,6 +67,11 @@ namespace BizHawk.Emulation.Cores.Sony.PSP throw new NotImplementedException(); } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + bool disposed = false; static PSP attachedcore = null; GCHandle vidhandle; diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index 06bbf85ce1..2b59f01eb3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -36,6 +36,11 @@ namespace BizHawk.Emulation.Cores.Sony.PSX throw new NotImplementedException(); } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + public static bool CheckIsPSX(DiscSystem.Disc disc) { bool ret = false; diff --git a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs index 213e9c655d..f0c06fc773 100644 --- a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs +++ b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs @@ -296,6 +296,11 @@ namespace BizHawk.Emulation.Cores.WonderSwan return ret; } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + #endregion #region Settings diff --git a/BizHawk.Emulation.Cores/LibRetroEmulator.cs b/BizHawk.Emulation.Cores/LibRetroEmulator.cs index c4961b2a05..b4d219c6b5 100644 --- a/BizHawk.Emulation.Cores/LibRetroEmulator.cs +++ b/BizHawk.Emulation.Cores/LibRetroEmulator.cs @@ -380,6 +380,11 @@ namespace BizHawk.Emulation.Cores throw new NotImplementedException(); } + public void SetCpuRegister(string register, int value) + { + throw new NotImplementedException(); + } + #endregion public void Dispose()