From 6732cd50fff4be1d0a3cb430365c423b95727a64 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sun, 1 May 2011 12:59:26 +0000 Subject: [PATCH] Make LagCount get/set in IEmulator and refactored emulators. Implemented the Lag counter in the NES core. --- BizHawk.Emulation/Consoles/Calculator/TI83.cs | 2 +- BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs | 2 +- BizHawk.Emulation/Consoles/Nintendo/NES/Core.cs | 8 ++++++-- BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs | 4 +++- BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs | 2 +- BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs | 2 +- BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs | 2 +- .../Interfaces/Base Implementations/NullEmulator.cs | 4 +++- BizHawk.Emulation/Interfaces/IEmulator.cs | 2 +- 9 files changed, 18 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Calculator/TI83.cs b/BizHawk.Emulation/Consoles/Calculator/TI83.cs index 64ac4f3d97..f358b9d9bd 100644 --- a/BizHawk.Emulation/Consoles/Calculator/TI83.cs +++ b/BizHawk.Emulation/Consoles/Calculator/TI83.cs @@ -663,7 +663,7 @@ namespace BizHawk.Emulation.Consoles.Calculator } public int Frame {get; set;} - public int LagCount { get { return 0; } } + public int LagCount { get { return 0; } set { return; } } public bool DeterministicEmulation { get { return true; } set { } } diff --git a/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs b/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs index 03e0461f37..02ca29e67c 100644 --- a/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs +++ b/BizHawk.Emulation/Consoles/Gameboy/Gameboy.cs @@ -652,7 +652,7 @@ namespace BizHawk.Emulation.Consoles.Gameboy get { throw new NotImplementedException(); } } - public int LagCount { get { return 0; } } //TODO: implement + public int LagCount { get { return 0; } set { return; } } //TODO: implement public byte[] SaveRam { diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Core.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Core.cs index bf2e355153..d94ade818a 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/Core.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Core.cs @@ -65,7 +65,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo bool resetSignal; public void FrameAdvance(bool render) { - if (resetSignal) + lagged = true; + if (resetSignal) { cpu.PC = cpu.ReadWord(MOS6502.ResetVector); apu.WriteReg(0x4015, 0); @@ -77,6 +78,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo Controller.UnpressButton("Reset"); resetSignal = Controller["Reset"]; ppu.FrameAdvance(); + if (lagged) + _lagcount++; } protected void RunCpu(int ppu_cycles) @@ -160,7 +163,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo //many todos here if (addr == 0x4016) { - byte ret = ports[0].Read(); + lagged = false; + byte ret = ports[0].Read(); return ret; } else return 0; diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs index 94ff1f4ec5..e449dc0aba 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs @@ -214,8 +214,10 @@ namespace BizHawk.Emulation.Consoles.Nintendo int _frame; + int _lagcount; + bool lagged = true; public int Frame { get { return _frame; } set { _frame = value; } } - public int LagCount { get { return 0; } } //TODO: implement this + public int LagCount { get { return _lagcount; } set { _lagcount = value; } } public bool DeterministicEmulation { get { return true; } set { } } diff --git a/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs index f4d2328548..b6dbd28310 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/PCEngine.cs @@ -96,7 +96,7 @@ namespace BizHawk.Emulation.Consoles.TurboGrafx } public int Frame { get; set; } - public int LagCount { get { return 0; } } //TODO: Implement this + public int LagCount { get { return 0; } set { return; } } //TODO: Implement this public void FrameAdvance(bool render) { diff --git a/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs b/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs index d819eb9484..688160e306 100644 --- a/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs +++ b/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.cs @@ -140,7 +140,7 @@ namespace BizHawk.Emulation.Consoles.Sega } public int Frame { get; set; } - public int LagCount { get { return 0; } } //TODO: Implement + public int LagCount { get { return 0; } set { return; } } //TODO: Implement public bool DeterministicEmulation { get; set; } public string SystemId { get { return "GEN"; } } diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs index 7b23d0fc13..c0f10f6ee7 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs @@ -45,7 +45,7 @@ namespace BizHawk.Emulation.Consoles.Sega public bool HasYM2413 = false; public int Frame { get; set; } - public int LagCount { get { return 0; } } //TODO: implement this + public int LagCount { get { return 0; } set { return; } } //TODO: implement this private byte Port01 = 0xFF; private byte Port02 = 0xFF; private byte Port3E = 0xAF; diff --git a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs index 37ba39f52e..5eb78125fd 100644 --- a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs @@ -33,7 +33,9 @@ namespace BizHawk public void SetControllersAsMnemonic(string mnemonic) { return; } public int Frame { get; set; } - public int LagCount { get { return 0; } } + //public int LagCount { get { return 0; } } + public int LagCount { get; set; } + public byte[] SaveRam { get { return new byte[0]; } } public bool DeterministicEmulation { get; set; } public bool SaveRamModified { get; set; } diff --git a/BizHawk.Emulation/Interfaces/IEmulator.cs b/BizHawk.Emulation/Interfaces/IEmulator.cs index d272b9ce9b..af18988737 100644 --- a/BizHawk.Emulation/Interfaces/IEmulator.cs +++ b/BizHawk.Emulation/Interfaces/IEmulator.cs @@ -19,7 +19,7 @@ namespace BizHawk void FrameAdvance(bool render); int Frame { get; } - int LagCount { get; } + int LagCount { get; set; } string SystemId { get; } bool DeterministicEmulation { get; set; }