snes c# cleanup

This commit is contained in:
zeromus 2017-03-10 08:22:45 -06:00
parent b7baea2a8e
commit b4ad2f40d9
2 changed files with 11 additions and 15 deletions

View File

@ -1,5 +1,5 @@
using System;
using System.IO.MemoryMappedFiles;
using System.Runtime.InteropServices;
namespace BizHawk.Common
{
@ -8,26 +8,21 @@ namespace BizHawk.Common
public string Name;
public string BlockName;
public int Size;
public MemoryMappedFile mmf;
public MemoryMappedViewAccessor mmva;
public byte* Ptr;
byte[] bytes;
GCHandle handle;
public void Allocate()
{
//we can't allocate 0 bytes here.. so just allocate 1 byte here if 0 was requested. it should be OK, and we dont have to handle cases where blocks havent been allocated
int sizeToAlloc = Size;
if (sizeToAlloc == 0) sizeToAlloc = 1;
mmf = MemoryMappedFile.CreateNew(BlockName, sizeToAlloc);
mmva = mmf.CreateViewAccessor();
mmva.SafeMemoryMappedViewHandle.AcquirePointer(ref Ptr);
bytes = new byte[Size];
handle = GCHandle.Alloc(bytes, GCHandleType.Pinned);
Ptr = (byte*)handle.AddrOfPinnedObject();
}
public void Dispose()
{
if (mmf == null) return;
mmva.Dispose();
mmf.Dispose();
mmf = null;
handle.Free();
bytes = null;
}
}
}

View File

@ -69,8 +69,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
{
instanceDll.Dispose();
foreach (var smb in DeallocatedMemoryBlocks.Values)
smb.Dispose();
foreach (var smb in DeallocatedMemoryBlocks.Values) smb.Dispose();
foreach (var smb in SharedMemoryBlocks.Values) smb.Dispose();
SharedMemoryBlocks.Clear();
DeallocatedMemoryBlocks.Clear();
}