From 01dc05375d2a323ad1f56fc154b6a821fd4b03a3 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 21 Feb 2016 16:14:43 -0500 Subject: [PATCH] mgba - more state changes. WIP --- .../Consoles/Nintendo/GBA/LibmGBA.cs | 6 +++--- .../Consoles/Nintendo/GBA/MGBAHawk.cs | 21 +++++++++++-------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs index 5de892aa57..001c6d7d43 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs @@ -55,11 +55,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public static extern void BizPutSaveRam(IntPtr ctx, byte[] src); [DllImport(dll, CallingConvention = cc)] - public static extern int BizGetStateSize(); + public static extern int BizGetStateMaxSize(IntPtr ctx); [DllImport(dll, CallingConvention = cc)] - public static extern void BizGetState(IntPtr ctx, byte[] dest); + public static extern int BizGetState(IntPtr ctx, byte[] dest, int maxsize); [DllImport(dll, CallingConvention = cc)] - public static extern bool BizPutState(IntPtr ctx, byte[] src); + public static extern bool BizPutState(IntPtr ctx, byte[] src, int size); [Flags] public enum Layers : int diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs index e1f7f6ac95..ded2373b6e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs @@ -307,7 +307,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA private void InitStates() { - savebuff = new byte[LibmGBA.BizGetStateSize()]; + savebuff = new byte[LibmGBA.BizGetStateMaxSize(core)]; savebuff2 = new byte[savebuff.Length + 13]; } @@ -334,9 +334,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public void SaveStateBinary(BinaryWriter writer) { - LibmGBA.BizGetState(core, savebuff); - writer.Write(savebuff.Length); - writer.Write(savebuff); + int size = LibmGBA.BizGetState(core, savebuff, savebuff.Length); + if (size < 0) + throw new InvalidOperationException("Core failed to save!"); + writer.Write(size); + writer.Write(savebuff, 0, size); // other variables writer.Write(IsLagFrame); @@ -347,10 +349,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public void LoadStateBinary(BinaryReader reader) { int length = reader.ReadInt32(); - if (length != savebuff.Length) - throw new InvalidOperationException("Save buffer size mismatch!"); + if (length > savebuff.Length) + { + savebuff = new byte[length]; + savebuff2 = new byte[length + 13]; + } reader.Read(savebuff, 0, length); - if (!LibmGBA.BizPutState(core, savebuff)) + if (!LibmGBA.BizPutState(core, savebuff, length)) throw new InvalidOperationException("Core rejected the savestate!"); // other variables @@ -365,8 +370,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA var bw = new BinaryWriter(ms); SaveStateBinary(bw); bw.Flush(); - if (ms.Position != savebuff2.Length) - throw new InvalidOperationException(); ms.Close(); return savebuff2; }