From 3efd98e88737179cf59b2314609345503b05913e Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sun, 1 May 2011 14:15:49 +0000 Subject: [PATCH] SMS - implement lag counter & add to savestates --- BizHawk.Emulation/Consoles/Sega/SMS/Input.cs | 2 ++ BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs | 14 ++++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs b/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs index 9dfddb444d..8322e6ded9 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs @@ -95,6 +95,7 @@ private byte ReadControls1() { + lagged = false; byte value = 0xFF; if (Controller["P1 Up"]) value &= 0xFE; @@ -112,6 +113,7 @@ private byte ReadControls2() { + lagged = false; byte value = 0xFF; if (Controller["P2 Left"]) value &= 0xFE; diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs index aa3b1cf5c0..749fba2a27 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs @@ -44,8 +44,10 @@ namespace BizHawk.Emulation.Consoles.Sega public bool IsGameGear = false; public bool HasYM2413 = false; + private int _lagcount = 0; + private bool lagged = true; public int Frame { get; set; } - public int LagCount { get { return -1; } set { return; } } //TODO: implement this + public int LagCount { get { return _lagcount; } set { _lagcount = value; } } //TODO: implement this private byte Port01 = 0xFF; private byte Port02 = 0xFF; private byte Port3E = 0xAF; @@ -167,6 +169,7 @@ namespace BizHawk.Emulation.Consoles.Sega public void FrameAdvance(bool render) { + lagged = true; Controller.UpdateControls(Frame++); PSG.BeginFrame(Cpu.TotalExecutedCycles); @@ -175,6 +178,8 @@ namespace BizHawk.Emulation.Consoles.Sega Vdp.ExecFrame(render); PSG.EndFrame(Cpu.TotalExecutedCycles); + if (lagged) + _lagcount++; } public void SaveStateText(TextWriter writer) @@ -185,6 +190,7 @@ namespace BizHawk.Emulation.Consoles.Sega Vdp.SaveStateText(writer); writer.WriteLine("Frame {0}", Frame); + writer.WriteLine("Lag {0}", _lagcount); writer.WriteLine("Bank0 {0}", RomBank0); writer.WriteLine("Bank1 {0}", RomBank1); writer.WriteLine("Bank2 {0}", RomBank2); @@ -223,6 +229,8 @@ namespace BizHawk.Emulation.Consoles.Sega RomBank2 = byte.Parse(args[1]); else if (args[0] == "Frame") Frame = int.Parse(args[1]); + else if (args[0] == "Lag") + _lagcount = int.Parse(args[1]); else if (args[0] == "RAM") SystemRam.ReadFromHex(args[1]); else if (args[0] == "SaveRAM") @@ -234,7 +242,7 @@ namespace BizHawk.Emulation.Consoles.Sega { byte[] regs = new byte[YM2413.opll.reg.Length]; regs.ReadFromHex(args[1]); - for (byte i=0; i