From 4ffcc9654a582d65543e0f894a2cbe8ad70f126d Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 13 May 2017 10:11:13 -0500 Subject: [PATCH] C64 - refactor cartridge classes to not use SyncObject --- .../Computers/Commodore64/C64.Motherboard.cs | 8 ++++- .../Commodore64/Cartridge/CartridgeDevice.cs | 32 +++++++++++++++++-- .../Commodore64/Cartridge/CartridgePort.cs | 6 +++- .../Commodore64/Cartridge/Mapper0000.cs | 14 ++++++-- .../Commodore64/Cartridge/Mapper0001.cs | 12 ++++++- .../Commodore64/Cartridge/Mapper0005.cs | 18 +++++++++-- .../Commodore64/Cartridge/Mapper000A.cs | 8 +++++ .../Commodore64/Cartridge/Mapper000B.cs | 7 ++++ .../Commodore64/Cartridge/Mapper000F.cs | 12 ++++++- .../Commodore64/Cartridge/Mapper0011.cs | 6 ++++ .../Commodore64/Cartridge/Mapper0012.cs | 9 ++++++ .../Commodore64/Cartridge/Mapper0013.cs | 13 +++++++- .../Commodore64/Cartridge/Mapper0020.cs | 25 ++++++++++++++- .../Commodore64/Cartridge/Mapper002B.cs | 10 ++++++ 14 files changed, 166 insertions(+), 14 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs index da745c65ee..bbdc0ebaef 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs @@ -312,7 +312,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 Vic.SyncState(ser); ser.EndSection(); - ser.BeginSection("CartPort"); SaveState.SyncObject(ser, CartPort); ser.EndSection(); // TODO: only if cart + if (CartPort.IsConnected) + { + ser.BeginSection("CartPort"); + CartPort.SyncState(ser); + ser.EndSection(); + } + ser.BeginSection("Cassette"); SaveState.SyncObject(ser, Cassette); ser.EndSection(); ser.BeginSection("Serial"); SaveState.SyncObject(ser, Serial); ser.EndSection(); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgeDevice.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgeDevice.cs index d4316e1e18..3e6412599a 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgeDevice.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgeDevice.cs @@ -130,14 +130,19 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge [SaveState.SaveWithName("ExRom")] protected bool pinExRom; + [SaveState.SaveWithName("Game")] protected bool pinGame; + [SaveState.SaveWithName("IRQ")] protected bool pinIRQ; + [SaveState.SaveWithName("NMI")] protected bool pinNMI; + [SaveState.SaveWithName("Reset")] protected bool pinReset; + [SaveState.DoNotSave] protected bool validCartridge; @@ -253,9 +258,18 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge } } + protected abstract void SyncStateInternal(Serializer ser); + public virtual void SyncState(Serializer ser) { - SaveState.SyncObject(ser, this); + ser.Sync("pinExRom", ref pinExRom); + ser.Sync("pinGame", ref pinGame); + ser.Sync("pinIRQ", ref pinIRQ); + ser.Sync("pinNMI", ref pinNMI); + ser.Sync("pinReset", ref pinReset); + + ser.Sync("_driveLightEnabled", ref _driveLightEnabled); + ser.Sync("_driveLightOn", ref _driveLightOn); } [SaveState.DoNotSave] @@ -283,7 +297,19 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { } - public bool DriveLightEnabled { get; protected set; } - public bool DriveLightOn { get; protected set; } + private bool _driveLightEnabled; + private bool _driveLightOn; + + public bool DriveLightEnabled + { + get { return _driveLightEnabled; } + protected set { _driveLightEnabled = value; } + } + + public bool DriveLightOn + { + get { return _driveLightOn; } + protected set { _driveLightOn = value; } + } } } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgePort.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgePort.cs index 443399f6f3..6bb41c28e1 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgePort.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/CartridgePort.cs @@ -132,7 +132,11 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge public void SyncState(Serializer ser) { - SaveState.SyncObject(ser, this); + ser.Sync("_connected", ref _connected); + + ser.BeginSection("CartridgeDevice"); + _cartridgeDevice.SyncState(ser); + ser.EndSection(); } public bool DriveLightEnabled { get { return _connected && _cartridgeDevice.DriveLightEnabled; } } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0000.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0000.cs index 6e70cca4b5..c858aebe53 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0000.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0000.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using BizHawk.Common; namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { @@ -7,12 +8,15 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { [SaveState.DoNotSave] private readonly int[] _romA; + [SaveState.SaveWithName("RomMaskA")] - private readonly int _romAMask; + private int _romAMask; + [SaveState.DoNotSave] private readonly int[] _romB; + [SaveState.SaveWithName("RomMaskB")] - private readonly int _romBMask; + private int _romBMask; // standard cartridge mapper (Commodore) // note that this format also covers Ultimax carts @@ -77,6 +81,12 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge } } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("RomMaskA", ref _romAMask); + ser.Sync("RomMaskB", ref _romBMask); + } + public override int Peek8000(int addr) { return _romA[addr & _romAMask]; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0001.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0001.cs index dddfc84aea..16ba69708b 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0001.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0001.cs @@ -1,11 +1,13 @@ using System; using System.Collections.Generic; +using BizHawk.Common; + namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { internal sealed class Mapper0001 : CartridgeDevice { - [SaveState.SaveWithName("RAM")] private readonly int[] _ram = new int[0x2000]; + [SaveState.SaveWithName("RAM")] private int[] _ram = new int[0x2000]; [SaveState.SaveWithName("RAMEnabled")] private bool _ramEnabled; [SaveState.DoNotSave] private readonly int[] _rom = new int[0x8000]; [SaveState.SaveWithName("ROMOffset")] private int _romOffset; @@ -24,6 +26,14 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge _cartEnabled = true; } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("RAM", ref _ram, useNull: false); + ser.Sync("RAMEnabled", ref _ramEnabled); + ser.Sync("ROMOffset", ref _romOffset); + ser.Sync("CartEnabled", ref _cartEnabled); + } + public override void HardReset() { base.HardReset(); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0005.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0005.cs index f17f72027e..21d651db7d 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0005.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0005.cs @@ -8,17 +8,23 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge internal sealed class Mapper0005 : CartridgeDevice { [SaveState.DoNotSave] - private readonly int[][] _banksA; //8000 + private readonly int[][] _banksA; // 8000 + [SaveState.DoNotSave] - private readonly int[][] _banksB = new int[0][]; //A000 + private readonly int[][] _banksB = new int[0][]; // A000 + [SaveState.SaveWithName("BankMask")] - private readonly int _bankMask; + private int _bankMask; + [SaveState.SaveWithName("BankNumber")] private int _bankNumber; + [SaveState.DoNotSave] private int[] _currentBankA; + [SaveState.DoNotSave] private int[] _currentBankB; + [SaveState.DoNotSave] private readonly int[] _dummyBank; @@ -105,6 +111,12 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge BankSet(0); } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("BankMask", ref _bankMask); + ser.Sync("BankNumber", ref _bankNumber); + } + private void BankSet(int index) { _bankNumber = index & _bankMask; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000A.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000A.cs index f88eb76d91..cafc4c48a4 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000A.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000A.cs @@ -2,6 +2,8 @@ using System.Collections.Generic; using System.Linq; +using BizHawk.Common; + namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { // Epyx Fastload. Uppermost page is always visible at DFxx. @@ -17,6 +19,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge [SaveState.SaveWithName("CapacitorCycles")] private int _capacitorCycles; + [SaveState.DoNotSave] private readonly int[] _rom; @@ -27,6 +30,11 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge pinGame = true; } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("CapacitorCycles", ref _capacitorCycles); + } + public override void ExecutePhase() { pinExRom = !(_capacitorCycles > 0); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000B.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000B.cs index a9f0682ac1..969a37223c 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000B.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000B.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; +using BizHawk.Common; + namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { // Westermann Learning mapper. @@ -30,6 +32,11 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge validCartridge = true; } + protected override void SyncStateInternal(Serializer ser) + { + // Nothing to save + } + public override int Peek8000(int addr) { return _rom[addr]; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000F.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000F.cs index 8e72fee8c7..7246cfe020 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000F.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper000F.cs @@ -15,10 +15,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { [SaveState.DoNotSave] private readonly int[][] _banks; // 8000 + [SaveState.SaveWithName("BankMask")] - private readonly int _bankMask; + private int _bankMask; + [SaveState.SaveWithName("BankNumber")] private int _bankNumber; + [SaveState.SaveWithName("CurrentBank")] private int[] _currentBank; @@ -84,6 +87,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge BankSet(0); } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("BankMask", ref _bankMask); + ser.Sync("BankNumber", ref _bankNumber); + ser.Sync("CurrentBank", ref _currentBank, useNull: false); + } + protected void BankSet(int index) { _bankNumber = index & _bankMask; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0011.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0011.cs index 7680cd1d14..1f5e67489d 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0011.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0011.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using BizHawk.Common; namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { @@ -14,6 +15,11 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge // required to pass information to base class } + protected override void SyncStateInternal(Serializer ser) + { + // Nothing to save + } + public override void PokeDE00(int addr, int val) { // do nothing diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0012.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0012.cs index dd7bd341b3..628d76cfa4 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0012.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0012.cs @@ -9,10 +9,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { [SaveState.DoNotSave] private readonly int[] _bankMain; + [SaveState.DoNotSave] private readonly int[][] _bankHigh; + [SaveState.SaveWithName("BankHighSelected")] private int[] _bankHighSelected; + [SaveState.SaveWithName("BankIndex")] private int _bankIndex; @@ -51,6 +54,12 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("BankHighSelected", ref _bankHighSelected, useNull: false); + ser.Sync("BankIndex", ref _bankIndex); + } + public override int Peek8000(int addr) { return _bankMain[addr]; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0013.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0013.cs index 26b335f26a..7630ee4144 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0013.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0013.cs @@ -16,12 +16,16 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { [SaveState.DoNotSave] private readonly int[][] _banks; // 8000 + [SaveState.SaveWithName("BankMask")] - private readonly int _bankMask; + private int _bankMask; + [SaveState.SaveWithName("BankNumber")] private int _bankNumber; + [SaveState.DoNotSave] private int[] _currentBank; + [SaveState.SaveWithName("ROMEnable")] private bool _romEnable; @@ -72,6 +76,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge BankSet(0); } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("BankMask", ref _bankMask); + ser.Sync("BankNumber", ref _bankNumber); + ser.Sync("ROMEnable", ref _romEnable); + } + private void BankSet(int index) { _bankNumber = index & _bankMask; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0020.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0020.cs index 1606ae5d19..e57529b232 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0020.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0020.cs @@ -26,26 +26,37 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { [SaveState.SaveWithName("BankOffset")] private int _bankOffset = 63 << 13; + [SaveState.DoNotSave] private int[] _banksA = new int[64 << 13]; // 8000 + [SaveState.DoNotSave] private int[] _banksB = new int[64 << 13]; // A000 + [SaveState.DoNotSave] private readonly int[] _originalMediaA; // 8000 + [SaveState.DoNotSave] private readonly int[] _originalMediaB; // A000 + [SaveState.SaveWithName("BoardLed")] private bool _boardLed; + [SaveState.SaveWithName("Jumper")] private bool _jumper = false; + [SaveState.SaveWithName("StateBits")] private int _stateBits; + [SaveState.SaveWithName("RAM")] - private readonly int[] _ram = new int[256]; + private int[] _ram = new int[256]; + [SaveState.SaveWithName("CommandLatch55")] private bool _commandLatch55; + [SaveState.SaveWithName("CommandLatchAA")] private bool _commandLatchAa; + [SaveState.SaveWithName("InternalROMState")] private int _internalRomState; @@ -94,6 +105,18 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge _originalMediaB = _banksB.Select(d => d).ToArray(); } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("BankOffset", ref _bankOffset); + ser.Sync("BoardLed", ref _boardLed); + ser.Sync("Jumper", ref _jumper); + ser.Sync("StateBits", ref _stateBits); + ser.Sync("RAM", ref _ram, useNull: false); + ser.Sync("CommandLatch55", ref _commandLatchAa); + ser.Sync("CommandLatchAA", ref _commandLatchAa); + ser.Sync("InternalROMState", ref _internalRomState); + } + private void BankSet(int index) { _bankOffset = (index & 0x3F) << 13; diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper002B.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper002B.cs index b0c70466e2..8dc06c1efb 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper002B.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper002B.cs @@ -2,6 +2,8 @@ using System.Collections.Generic; using System.Linq; +using BizHawk.Common; + namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { // Prophet 64 cartridge. Because we can. @@ -12,8 +14,10 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge { [SaveState.DoNotSave] private readonly int[] _rom; + [SaveState.SaveWithName("RomOffset")] private int _romOffset; + [SaveState.SaveWithName("RomEnabled")] private bool _romEnabled; @@ -33,6 +37,12 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge } } + protected override void SyncStateInternal(Serializer ser) + { + ser.Sync("RomOffset", ref _romOffset); + ser.Sync("RomEnabled", ref _romEnabled); + } + public override void HardReset() { _romEnabled = true;