From ac442130ae6f1e1eda280e01034fd09edc8c74d8 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 24 Jan 2015 16:02:28 +0000 Subject: [PATCH] Refactor IMemoryDomains and MemoryDomains to have setters for MainMemory and SystemBus, so a core can customize instead of using a one size fits all assumption. Remove constructor that sets main memory and refactor accordingly --- .../Base Implementations/MemoryDomain.cs | 36 ++++++++++++++----- .../Interfaces/IMemoryDomains.cs | 4 +-- .../Atari/lynx/Lynx.IMemoryDomains.cs | 2 +- .../Nintendo/GBA/VBANext.IMemoryDomains.cs | 2 +- .../QuickNES/QuickNES.IMemoryDomains.cs | 2 +- .../Sega/Saturn/Yabause.IMemoryDomains.cs | 4 ++- .../Consoles/Sega/gpgx/GPGX.cs | 2 +- .../Consoles/Sony/PSX/Octoshock.cs | 2 +- .../WonderSwan/WonderSwan.IMemoryDomains.cs | 2 +- 9 files changed, 39 insertions(+), 17 deletions(-) diff --git a/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs b/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs index 92e76c66d1..26de0c301b 100644 --- a/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs +++ b/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs @@ -209,19 +209,14 @@ namespace BizHawk.Emulation.Common public class MemoryDomainList : ReadOnlyCollection, IMemoryDomains { - private readonly int _mainMemoryIndex; + private MemoryDomain _mainMemory; + private MemoryDomain _systemBus; public MemoryDomainList(IList domains) : base(domains) { } - public MemoryDomainList(IList domains, int mainMemoryIndex) - : this(domains) - { - _mainMemoryIndex = mainMemoryIndex; - } - public MemoryDomain this[string name] { get @@ -234,7 +229,17 @@ namespace BizHawk.Emulation.Common { get { - return this[_mainMemoryIndex]; + if (_mainMemory != null) + { + return _mainMemory; + } + + return this.First(); + } + + set + { + _mainMemory = value; } } @@ -242,6 +247,11 @@ namespace BizHawk.Emulation.Common { get { + if (_systemBus != null) + { + return true; + } + return this.Any(x => x.Name == "System Bus"); } } @@ -250,8 +260,18 @@ namespace BizHawk.Emulation.Common { get { + if (_systemBus != null) + { + return _systemBus; + } + return this.FirstOrDefault(x => x.Name == "System Bus"); } + + set + { + _systemBus = value; + } } } } diff --git a/BizHawk.Emulation.Common/Interfaces/IMemoryDomains.cs b/BizHawk.Emulation.Common/Interfaces/IMemoryDomains.cs index 8e114f0790..5ed18f76a3 100644 --- a/BizHawk.Emulation.Common/Interfaces/IMemoryDomains.cs +++ b/BizHawk.Emulation.Common/Interfaces/IMemoryDomains.cs @@ -13,10 +13,10 @@ namespace BizHawk.Emulation.Common { MemoryDomain this[string name] { get; } - MemoryDomain MainMemory { get; } + MemoryDomain MainMemory { get; set; } bool HasSystemBus { get; } - MemoryDomain SystemBus { get; } + MemoryDomain SystemBus { get; set; } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.IMemoryDomains.cs index 1529830062..9762d27c3e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.IMemoryDomains.cs @@ -28,7 +28,7 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx if (s1 > 0 && p1 != IntPtr.Zero) mms.Add(MemoryDomain.FromIntPtr("Cart B", s1, MemoryDomain.Endian.Little, p1, false)); - _memoryDomains = new MemoryDomainList(mms, 0); + _memoryDomains = new MemoryDomainList(mms); (ServiceProvider as BasicServiceProvider).Register(_memoryDomains); } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.IMemoryDomains.cs index e3d47bd543..65370ed051 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.IMemoryDomains.cs @@ -63,7 +63,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA mm.Add(cr); } - _memoryDomains = new MemoryDomainList(mm, 0); + _memoryDomains = new MemoryDomainList(mm); (ServiceProvider as BasicServiceProvider).Register(_memoryDomains); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs index 27a61eb3a4..56dc157515 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs @@ -52,7 +52,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES } )); - _memoryDomains = new MemoryDomainList(mm, 0); + _memoryDomains = new MemoryDomainList(mm); (ServiceProvider as BasicServiceProvider).Register(_memoryDomains); } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs index 01ae88b578..01800d115b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.IMemoryDomains.cs @@ -22,7 +22,9 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn } // main memory is in position 2 - _memoryDomains = new MemoryDomainList(ret, 2); + _memoryDomains = new MemoryDomainList(ret); + _memoryDomains.MainMemory = _memoryDomains["Work Ram Low"]; + (ServiceProvider as BasicServiceProvider).Register(_memoryDomains); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index 9cc0c1a9f6..afc7c1542c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -619,7 +619,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx mm.Add(MemoryDomain.FromIntPtrSwap16(name, size, MemoryDomain.Endian.Big, area)); } } - MemoryDomains = new MemoryDomainList(mm, 0); + MemoryDomains = new MemoryDomainList(mm); (ServiceProvider as BasicServiceProvider).Register(MemoryDomains); } diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index 19292243f5..dce651b069 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -618,7 +618,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX OctoshockDll.shock_GetMemData(psx, out ptr, out size, OctoshockDll.eMemType.DCache); mmd.Add(MemoryDomain.FromIntPtr("DCache", size, MemoryDomain.Endian.Little, ptr, true)); - MemoryDomains = new MemoryDomainList(mmd, 0); + MemoryDomains = new MemoryDomainList(mmd); (ServiceProvider as BasicServiceProvider).Register(MemoryDomains); } diff --git a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.IMemoryDomains.cs index 39a63c507e..bf504378ac 100644 --- a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.IMemoryDomains.cs @@ -26,7 +26,7 @@ namespace BizHawk.Emulation.Cores.WonderSwan string sname = Marshal.PtrToStringAnsi(name); mmd.Add(MemoryDomain.FromIntPtr(sname, size, MemoryDomain.Endian.Little, data)); } - (ServiceProvider as BasicServiceProvider).Register(new MemoryDomainList(mmd, 0)); + (ServiceProvider as BasicServiceProvider).Register(new MemoryDomainList(mmd)); } } }