From ceae8d71b5ca1b3a00c079b342f96adc22041dc4 Mon Sep 17 00:00:00 2001 From: goyuken Date: Fri, 15 Aug 2014 21:21:17 +0000 Subject: [PATCH] memory domain: minor refactor and cleanup --- BizHawk.Emulation.Common/MemoryDomain.cs | 35 +++++++++++++++++++ .../Consoles/Nintendo/GBA/Meteor.cs | 22 +----------- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 18 ++-------- .../Consoles/Sega/gpgx/GPGX.cs | 16 +-------- .../Consoles/WonderSwan/WonderSwan.cs | 18 +--------- 5 files changed, 40 insertions(+), 69 deletions(-) diff --git a/BizHawk.Emulation.Common/MemoryDomain.cs b/BizHawk.Emulation.Common/MemoryDomain.cs index 089b9193fe..dd7ef12e33 100644 --- a/BizHawk.Emulation.Common/MemoryDomain.cs +++ b/BizHawk.Emulation.Common/MemoryDomain.cs @@ -25,6 +25,41 @@ namespace BizHawk.Emulation.Common PokeByte = pokeByte; } + /// + /// create a memorydomain that references an unmanaged memory block + /// + /// + /// + /// + /// must remain valid as long as the MemoryDomain exists! + /// + public unsafe static MemoryDomain FromIntPtr(string name, int size, Endian endian, IntPtr data) + { + if (data == IntPtr.Zero) + throw new ArgumentNullException("data"); + if (size <= 0) + throw new ArgumentOutOfRangeException("size"); + byte *p = (byte*) data; + return new MemoryDomain + ( + name, + size, + endian, + delegate(int addr) + { + if (addr < 0 || addr >= size) + throw new ArgumentOutOfRangeException(); + return p[addr]; + }, + delegate(int addr, byte val) + { + if (addr < 0 || addr >= size) + throw new ArgumentOutOfRangeException(); + p[addr] = val; + } + ); + } + public MemoryDomain() { } public override string ToString() diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs index b8aab92517..b387aae8a6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs @@ -243,27 +243,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA if (data == IntPtr.Zero) throw new Exception("libmeteor_getmemoryarea() returned NULL??"); - MemoryDomain md = new MemoryDomain(name, size, MemoryDomain.Endian.Little, - delegate(int addr) - { - unsafe - { - byte* d = (byte*)data; - if (addr < 0 || addr >= size) - throw new IndexOutOfRangeException(); - return d[addr]; - } - }, - delegate(int addr, byte val) - { - unsafe - { - byte* d = (byte*)data; - if (addr < 0 || addr >= size) - throw new IndexOutOfRangeException(); - d[addr] = val; - } - }); + MemoryDomain md = MemoryDomain.FromIntPtr(name, size, MemoryDomain.Endian.Little, data); _MemoryDomains.Add(md); } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index c576863f5c..021ed5041f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -689,7 +689,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy #region MemoryDomains - unsafe void CreateMemoryDomain(LibGambatte.MemoryAreas which, string name) + void CreateMemoryDomain(LibGambatte.MemoryAreas which, string name) { IntPtr data = IntPtr.Zero; int length = 0; @@ -702,21 +702,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy if (data == IntPtr.Zero && length > 0) throw new Exception("bad return from gambatte_getmemoryarea()"); - byte* ptr = (byte*)data; - - _MemoryDomains.Add(new MemoryDomain(name, length, MemoryDomain.Endian.Little, - delegate(int addr) - { - if (addr < 0 || addr >= length) - throw new ArgumentOutOfRangeException(); - return ptr[addr]; - }, - delegate(int addr, byte val) - { - if (addr < 0 || addr >= length) - throw new ArgumentOutOfRangeException(); - ptr[addr] = val; - })); + _MemoryDomains.Add(MemoryDomain.FromIntPtr(name, length, MemoryDomain.Endian.Little, data)); } void InitMemoryDomains() diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index c4213e13f3..7ecdb3d886 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -582,23 +582,9 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx if (area == IntPtr.Zero || pname == IntPtr.Zero || size == 0) continue; string name = Marshal.PtrToStringAnsi(pname); - byte* p = (byte*)area; - mm.Add(new MemoryDomain(name, size, MemoryDomain.Endian.Unknown, - delegate(int addr) - { - if (addr < 0 || addr >= size) - throw new ArgumentOutOfRangeException(); - return p[addr]; - }, - delegate(int addr, byte val) - { - if (addr < 0 || addr >= size) - throw new ArgumentOutOfRangeException(); - p[addr] = val; - })); + mm.Add(MemoryDomain.FromIntPtr(name, size, MemoryDomain.Endian.Unknown, area)); } - MemoryDomains = new MemoryDomainList(mm, 0); } diff --git a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs index f63bf09adc..2972db8701 100644 --- a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs +++ b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs @@ -315,23 +315,7 @@ namespace BizHawk.Emulation.Cores.WonderSwan if (size == 0) continue; string sname = Marshal.PtrToStringAnsi(name); - byte *p = (byte*)data; - mmd.Add(new MemoryDomain( - sname, - size, - MemoryDomain.Endian.Little, - delegate(int addr) - { - if (addr < 0 || addr >= size) - throw new ArgumentOutOfRangeException(); - return p[addr]; - }, - delegate(int addr, byte value) - { - if (addr < 0 || addr >= size) - throw new ArgumentOutOfRangeException(); - p[addr] = value; - })); + mmd.Add(MemoryDomain.FromIntPtr(sname, size, MemoryDomain.Endian.Little, data)); } MemoryDomains = new MemoryDomainList(mmd, 0); }