From 577f2499053fcc910cd70b7e9603e2219d06b52d Mon Sep 17 00:00:00 2001 From: beirich Date: Wed, 16 Feb 2011 04:45:59 +0000 Subject: [PATCH] Misc code cleanup --- BizHawk.Emulation/Consoles/Calculator/TI83.cs | 8 ++------ BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs | 1 + BizHawk.Emulation/Consoles/Gameboy/Input.cs | 6 ------ .../Consoles/PC Engine/MemoryMap.SF2.cs | 5 ----- BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs | 3 ++- BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs | 6 +----- BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt | 9 +-------- BizHawk.Emulation/Consoles/Sega/SMS/Input.cs | 5 ----- BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs | 4 +++- .../Base Implementations/NullEmulator.cs | 8 +++----- BizHawk.Emulation/Interfaces/IEmulator.cs | 5 ++--- BizHawk.MultiClient/MainForm.cs | 14 ++++++-------- BizHawk.MultiClient/RenderPanel.cs | 2 +- BizHawk.MultiClient/output/gamedb.txt | 4 ++-- 14 files changed, 24 insertions(+), 56 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Calculator/TI83.cs b/BizHawk.Emulation/Consoles/Calculator/TI83.cs index c2a7d0ee89..66beb8b654 100644 --- a/BizHawk.Emulation/Consoles/Calculator/TI83.cs +++ b/BizHawk.Emulation/Consoles/Calculator/TI83.cs @@ -27,12 +27,7 @@ namespace BizHawk.Emulation.Consoles.Calculator bool m_CursorMoved; //------- - public string type - { - get { return "TI83"; } - } - - public byte ReadMemory(ushort addr) + public byte ReadMemory(ushort addr) { int romPage = romPageLow3Bits | (romPageHighBit << 3); //Console.WriteLine("read memory: {0:X4}", addr); @@ -444,6 +439,7 @@ namespace BizHawk.Emulation.Consoles.Calculator return new byte[0]; } + public string SystemId { get { return "TI83"; } } public IList MemoryDomains { get { throw new NotImplementedException(); } } public MemoryDomain MainMemory { get { throw new NotImplementedException(); } } } diff --git a/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs b/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs index 9122dcd1a1..96f03828b3 100644 --- a/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs +++ b/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs @@ -842,6 +842,7 @@ namespace BizHawk.Emulation.Consoles.Gameboy } public bool DeterministicEmulation { get; set; } + public string SystemId { get { return "GB"; } } public IList MemoryDomains { get { throw new NotImplementedException(); } } public MemoryDomain MainMemory { get { throw new NotImplementedException(); } } diff --git a/BizHawk.Emulation/Consoles/Gameboy/Input.cs b/BizHawk.Emulation/Consoles/Gameboy/Input.cs index 54a8500e7c..a2c598a5c6 100644 --- a/BizHawk.Emulation/Consoles/Gameboy/Input.cs +++ b/BizHawk.Emulation/Consoles/Gameboy/Input.cs @@ -2,11 +2,6 @@ { public partial class Gameboy { - public string type - { - get { return "GB"; } - } - public static readonly ControllerDefinition GbController = new ControllerDefinition { Name = "Gameboy Controller", @@ -18,6 +13,5 @@ public ControllerDefinition ControllerDefinition { get { return GbController; } } public IController Controller { get; set; } - } } diff --git a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs index 8fff8028f4..b8581c8462 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs @@ -10,11 +10,6 @@ // However, I believe more fixes will be made in the future, and SF2 works, so this is not // currently a priority. - public string type - { - get { return "PCE"; } - } - private byte SF2MapperLatch; private byte ReadMemorySF2(ushort addr) diff --git a/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs index f89acf7e75..f9a3ccc76f 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs @@ -128,7 +128,8 @@ namespace BizHawk.Emulation.Consoles.TurboGrafx { get { return PSG; } } - + + public string SystemId { get { return "PCE"; } } public string Region { get; set; } public bool DeterministicEmulation { get; set; } diff --git a/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs b/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs index be6ff21740..d1397cb4c1 100644 --- a/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs +++ b/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs @@ -10,11 +10,6 @@ namespace BizHawk.Emulation.Consoles.Sega { public sealed partial class Genesis : IEmulator, IMemoryController { - public string type - { - get { return "GEN"; } - } - // ROM public byte[] RomData; @@ -146,6 +141,7 @@ namespace BizHawk.Emulation.Consoles.Sega public int Frame { get; set; } public bool DeterministicEmulation { get; set; } + public string SystemId { get { return "GEN"; } } public byte[] SaveRam { diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt b/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt index 4ecee1262c..dd3f820ce8 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt +++ b/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt @@ -1,14 +1,7 @@ -======= Sega MasterSystem Compatibility Issues ======= - -* CodeMasters games use a custom mapper and special video modes (both implemented) - + Fantastic Dizzy crashes shortly after starting a new game. Investigating. - + Excellent Dizzy Collection doesn't boot. - -======= Game Gear compatibility issues ======= +======= Game Gear compatibility issues ======= * Outrun has raster effect on the wrong line. I've been able to modify interrupt code to fix it, but so far, not without breaking other games. -* GG Turrican homebrew not starting correctly ======= SG-1000 compatibility checklist ======= diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs b/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs index e5499a16bc..76e19a97b3 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs @@ -13,11 +13,6 @@ } }; - public string type - { - get { return "SMS"; } - } - public ControllerDefinition ControllerDefinition { get { return SmsController; } } public IController Controller { get; set; } diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs index 47d4e8415a..967867f1ad 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs @@ -11,7 +11,7 @@ using BizHawk.Emulation.Sound; + HCounter + Try to clean up the organization of the source code. + Fix remaining broken games - + SMS Fake Stereo Separation + + Lightgun/Paddle/etc if I get really bored **********************************************************/ @@ -311,6 +311,8 @@ namespace BizHawk.Emulation.Consoles.Sega private ISoundProvider ActiveSoundProvider; public ISoundProvider SoundProvider { get { return ActiveSoundProvider; } } + public string SystemId { get { return "SMS"; } } + private string region = "Export"; public string Region { diff --git a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs index 3072deb427..2b106c1f80 100644 --- a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs @@ -6,11 +6,7 @@ namespace BizHawk { public class NullEmulator : IEmulator, IVideoProvider, ISoundProvider { - public string type - { - get { return "NULL"; } - } - + public string SystemId { get { return "NULL"; } } private static readonly ControllerDefinition NullController = new ControllerDefinition { Name = "Null Controller" }; private int[] frameBuffer = new int[256 * 192]; @@ -49,5 +45,7 @@ namespace BizHawk private IList memoryDomains; public IList MemoryDomains { get { return memoryDomains; } } public MemoryDomain MainMemory { get { return memoryDomains[0]; } } + + } } diff --git a/BizHawk.Emulation/Interfaces/IEmulator.cs b/BizHawk.Emulation/Interfaces/IEmulator.cs index 12699494e6..37188b301f 100644 --- a/BizHawk.Emulation/Interfaces/IEmulator.cs +++ b/BizHawk.Emulation/Interfaces/IEmulator.cs @@ -12,12 +12,11 @@ namespace BizHawk ControllerDefinition ControllerDefinition { get; } IController Controller { get; set; } - string type { get; } - void LoadGame(IGame game); void FrameAdvance(bool render); - + int Frame { get; } + string SystemId { get; } bool DeterministicEmulation { get; set; } byte[] SaveRam { get; } diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 07bb990666..c5bec01624 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -371,6 +371,12 @@ namespace BizHawk.MultiClient if (ActiveForm != null) ScreenSaver.ResetTimerPeriodically(); + if (/*Global.Config.RewindEnabled && */Global.ClientControls["Rewind"]) + { + Rewind(Global.ClientControls["Fast Forward"] ? 3 : 1); + return; + } + if (EmulatorPaused == false) { CaptureRewindState(); @@ -380,7 +386,6 @@ namespace BizHawk.MultiClient if (!Global.ClientControls.IsPressed("Frame Advance")) FrameAdvanceDelay = 60; - if (Global.ClientControls["Frame Advance"] && FrameAdvanceDelay > 0) { if (FrameAdvanceDelay == 60) @@ -403,13 +408,6 @@ namespace BizHawk.MultiClient { DoFrameAdvance(); } - - if (/*Global.Config.RewindEnabled && */Global.ClientControls["Rewind"]) - { - PauseEmulator(); - Rewind(Global.ClientControls["Fast Forward"] ? 3 : 1); - return; - } if (Global.ClientControls["Quick Save State"]) { diff --git a/BizHawk.MultiClient/RenderPanel.cs b/BizHawk.MultiClient/RenderPanel.cs index e8a1a8e96d..ccd0acbe14 100644 --- a/BizHawk.MultiClient/RenderPanel.cs +++ b/BizHawk.MultiClient/RenderPanel.cs @@ -255,7 +255,7 @@ namespace BizHawk.MultiClient if (Global.Config.DisplayInput) { string input = ""; - if (Global.Emulator.type == "SMS") + if (Global.Emulator.SystemId == "SMS") { if (Global.Emulator.Controller.IsPressed("P1 Up")) input += "U"; diff --git a/BizHawk.MultiClient/output/gamedb.txt b/BizHawk.MultiClient/output/gamedb.txt index 41c1d8d6fc..8dfe85f71d 100644 --- a/BizHawk.MultiClient/output/gamedb.txt +++ b/BizHawk.MultiClient/output/gamedb.txt @@ -300,8 +300,8 @@ DFA2AE07 V Enduro Racer (corrupted) SMS Insert hex byte $0D at offset $B3A1 to f 5D5C50B3 Enduro Racer (JP) SMS C4BB1676 E-SWAT [A] SMS C10FCE39 E-SWAT [B] SMS -8813514B Excellent Dizzy Collection, The [Proto] SMS CMMapper;PAL -AA140C9C Excellent Dizzy Collection, The [SMS-GG] SMS CMMapper;PAL +8813514B Excellent Dizzy Collection, The [Proto] SMS CMMapper +AA140C9C Excellent Dizzy Collection, The [SMS-GG] SMS CMMapper EC788661 F1 SMS 8AB10CB4 V F1 (first 128KB only) SMS EAEBF323 F-16 Fighter SMS