From 0f36bce22a3649763c633c0ce80459c990767d4b Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 23 Apr 2017 10:53:26 -0500 Subject: [PATCH] Intellivision - actually support lag variable setting, and some misc cleanup --- .../BizHawk.Emulation.Cores.csproj | 3 ++ .../Intellivision/Intellivision.IEmulator.cs | 14 ++----- .../Intellivision.IInputPollable.cs | 37 +++++++++++++++++++ .../Intellivision/Intellivision.IStatable.cs | 13 +++---- .../Intellivision/Intellivision.MemoryMap.cs | 11 +++--- .../Consoles/Intellivision/Intellivision.cs | 28 ++------------ 6 files changed, 57 insertions(+), 49 deletions(-) create mode 100644 BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IInputPollable.cs diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index d389b70458..a9d9eeafbc 100644 --- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -412,6 +412,9 @@ + + Intellivision.cs + Intellivision.cs diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IEmulator.cs index 98ded4f658..05538860d4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IEmulator.cs @@ -33,7 +33,7 @@ namespace BizHawk.Emulation.Cores.Intellivision _cpu.PendingCycles = 14934 - 3791 + _cpu.GetPendingCycles(); _stic.Sr1 = true; - islag = true; + _islag = true; bool active_display = _stic.active_display; @@ -108,8 +108,8 @@ namespace BizHawk.Emulation.Cores.Intellivision } _stic.in_vb_2 = false; - if (islag) - lagcount++; + if (_islag) + _lagcount++; if (Controller.IsPressed("Power")) @@ -119,11 +119,6 @@ namespace BizHawk.Emulation.Cores.Intellivision SoftReset(); } - private int _frame; - public bool islag; - public int lagcount; - private int stic_row; - public int Frame => _frame; public string SystemId => "INTV"; @@ -136,14 +131,13 @@ namespace BizHawk.Emulation.Cores.Intellivision public void ResetCounters() { _frame = 0; - lagcount = 0; + _lagcount = 0; } public CoreComm CoreComm { get; } public void Dispose() { - } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IInputPollable.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IInputPollable.cs new file mode 100644 index 0000000000..1a3853e2c2 --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IInputPollable.cs @@ -0,0 +1,37 @@ +using BizHawk.Emulation.Common; + +namespace BizHawk.Emulation.Cores.Intellivision +{ + public partial class Intellivision : IInputPollable + { + public int LagCount + { + get + { + return _lagcount; } + + set + { + _lagcount = value; + } + } + + public bool IsLagFrame + { + get + { + return _islag; + } + + set + { + _islag = value; + } + } + + public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem(); + + private bool _islag; + private int _lagcount; + } +} diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IStatable.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IStatable.cs index a9283c33fb..dbd1d05759 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IStatable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IStatable.cs @@ -8,10 +8,7 @@ namespace BizHawk.Emulation.Cores.Intellivision { public partial class Intellivision : IStatable { - public bool BinarySaveStatesPreferred - { - get { return true; } - } + public bool BinarySaveStatesPreferred => true; public void SaveStateText(TextWriter writer) { @@ -37,8 +34,8 @@ namespace BizHawk.Emulation.Cores.Intellivision public byte[] SaveStateBinary() { - MemoryStream ms = new MemoryStream(); - BinaryWriter bw = new BinaryWriter(ms); + var ms = new MemoryStream(); + var bw = new BinaryWriter(ms); SaveStateBinary(bw); bw.Flush(); return ms.ToArray(); @@ -57,8 +54,8 @@ namespace BizHawk.Emulation.Cores.Intellivision ser.Sync("ExecutiveRom", ref ExecutiveRom, false); ser.Sync("GraphicsRom", ref GraphicsRom, false); ser.Sync("GraphicsRam", ref GraphicsRam, false); - ser.Sync("islag", ref islag); - ser.Sync("lagcount", ref lagcount); + ser.Sync("islag", ref _islag); + ser.Sync("lagcount", ref _lagcount); _cpu.SyncState(ser); _stic.SyncState(ser); diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs index 2bab10b2be..760e02f2df 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs @@ -1,6 +1,4 @@ -using System; - -namespace BizHawk.Emulation.Cores.Intellivision +namespace BizHawk.Emulation.Cores.Intellivision { public sealed partial class Intellivision { @@ -44,13 +42,14 @@ namespace BizHawk.Emulation.Cores.Intellivision if (addr==0x01FE) { if (!peek) - islag = false; - return _psg.Register[14]; + _islag = false; + return _psg.Register[14]; } + if (addr == 0x01FF) { if (!peek) - islag = false; + _islag = false; return _psg.Register[15]; } break; diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs index 88330d7013..9a5d6888d6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs @@ -1,6 +1,4 @@ using System; -using System.IO; -using System.Collections.Generic; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Components.CP1610; @@ -58,8 +56,6 @@ namespace BizHawk.Emulation.Cores.Intellivision Connect(); - //_cpu.LogData(); - LoadExecutiveRom(CoreComm.CoreFileProvider.GetFirmware("INTV", "EROM", true, "Executive ROM is required.")); LoadGraphicsRom(CoreComm.CoreFileProvider.GetFirmware("INTV", "GROM", true, "Graphics ROM is required.")); @@ -73,27 +69,6 @@ namespace BizHawk.Emulation.Cores.Intellivision private ITraceable Tracer { get; set; } - public int LagCount - { - get {return lagcount;} - - set{} - } - - public bool IsLagFrame - { - get {return islag;} - - set {} - } - - public IInputCallbackSystem InputCallbacks - { - get { return _inputCallbacks; } - } - - private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem(); - private byte[] _rom; private GameInfo _gameInfo; @@ -102,6 +77,9 @@ namespace BizHawk.Emulation.Cores.Intellivision private STIC _stic; private PSG _psg; + private int _frame; + private int stic_row; + public void Connect() { _cpu.SetIntRM(_stic.GetSr1());