From 16ee704332c307fb9e249112502c2b8d89593cf6 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 8 Jan 2023 07:54:20 +1000 Subject: [PATCH] Deduplicate `MemoryDomainDelegateSysBusNES` --- .../Base Implementations/MemoryDomainImpls.cs | 81 +------------------ 1 file changed, 4 insertions(+), 77 deletions(-) diff --git a/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs b/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs index 41534954e6..6393101dd3 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs @@ -397,74 +397,9 @@ namespace BizHawk.Emulation.Common => _monitor.Exit(); } - public class MemoryDomainDelegateSysBusNES : MemoryDomain + public class MemoryDomainDelegateSysBusNES : MemoryDomainDelegate { - private Action _poke; - - // TODO: use an array of Ranges - private Action, byte[]> _bulkPeekByte { get; set; } - private Action, bool, ushort[]> _bulkPeekUshort { get; set; } - private Action, bool, uint[]> _bulkPeekUint { get; set; } - - public Func Peek { get; set; } - - public Action Poke - { - get => _poke; - set - { - _poke = value; - Writable = value != null; - } - } - - private Action sendcheattocore { get; set; } - - public override byte PeekByte(long addr) - { - return Peek(addr); - } - - public override void PokeByte(long addr, byte val) - { - _poke?.Invoke(addr, val); - } - - public override void BulkPeekByte(Range addresses, byte[] values) - { - if (_bulkPeekByte != null) - { - _bulkPeekByte.Invoke(addresses, values); - } - else - { - base.BulkPeekByte(addresses, values); - } - } - - public override void BulkPeekUshort(Range addresses, bool bigEndian, ushort[] values) - { - if (_bulkPeekUshort != null) - { - _bulkPeekUshort.Invoke(addresses, bigEndian, values); - } - else - { - base.BulkPeekUshort(addresses, bigEndian, values); - } - } - - public override void BulkPeekUint(Range addresses, bool bigEndian, uint[] values) - { - if (_bulkPeekUint != null) - { - _bulkPeekUint.Invoke(addresses, bigEndian, values); - } - else - { - base.BulkPeekUint(addresses, bigEndian, values); - } - } + private readonly Action sendcheattocore; public override void SendCheatToCore(int addr, byte value, int compare, int comparetype) { @@ -486,15 +421,7 @@ namespace BizHawk.Emulation.Common Action poke, int wordSize, Action nescheatpoke = null) - { - Name = name; - EndianType = endian; - Size = size; - Peek = peek; - _poke = poke; - Writable = poke != null; - WordSize = wordSize; - sendcheattocore = nescheatpoke; - } + : base(name, size, endian, peek, poke, wordSize) + => sendcheattocore = nescheatpoke; } }