From f3bb7421ed40ae11ae2a9d106f941ca0457588e3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 1 Nov 2013 20:53:47 +0000 Subject: [PATCH] detangle and move some savestate code to client.common --- BizHawk.Client.Common/7z/sdk/ICoder.cs | 1 + .../BizHawk.Client.Common.csproj | 1 + BizHawk.Client.Common/SavestateManager.cs | 151 ++++++++++++++++ BizHawk.Client.Common/movie/MovieSession.cs | 8 + BizHawk.MultiClient/MainForm.Movie.cs | 9 - BizHawk.MultiClient/MainForm.cs | 162 ++---------------- 6 files changed, 178 insertions(+), 154 deletions(-) create mode 100644 BizHawk.Client.Common/SavestateManager.cs diff --git a/BizHawk.Client.Common/7z/sdk/ICoder.cs b/BizHawk.Client.Common/7z/sdk/ICoder.cs index a87019e2df..7db184bff6 100644 --- a/BizHawk.Client.Common/7z/sdk/ICoder.cs +++ b/BizHawk.Client.Common/7z/sdk/ICoder.cs @@ -31,6 +31,7 @@ namespace SevenZip.Sdk /// /// The exception that is thrown when the value of an argument is outside the allowable range. /// + [Serializable] internal class InvalidParamException : ApplicationException { public InvalidParamException() : base("Invalid Parameter") {} diff --git a/BizHawk.Client.Common/BizHawk.Client.Common.csproj b/BizHawk.Client.Common/BizHawk.Client.Common.csproj index 91230f65e9..72c76e326a 100644 --- a/BizHawk.Client.Common/BizHawk.Client.Common.csproj +++ b/BizHawk.Client.Common/BizHawk.Client.Common.csproj @@ -128,6 +128,7 @@ + diff --git a/BizHawk.Client.Common/SavestateManager.cs b/BizHawk.Client.Common/SavestateManager.cs new file mode 100644 index 0000000000..f1e44982f5 --- /dev/null +++ b/BizHawk.Client.Common/SavestateManager.cs @@ -0,0 +1,151 @@ +using System; +using System.IO; + +using BizHawk.Common; + +namespace BizHawk.Client.Common +{ + public static class SavestateManager + { + public static void SaveStateFile(string filename, string name) + { + if (Global.Config.SaveStateType == Config.SaveStateTypeE.Text || + (Global.Config.SaveStateType == Config.SaveStateTypeE.Default && !Global.Emulator.BinarySaveStatesPreferred)) + { + // text mode savestates + var writer = new StreamWriter(filename); + Global.Emulator.SaveStateText(writer); + Global.MovieSession.HandleMovieSaveState(writer); + if (Global.Config.SaveScreenshotWithStates) + { + writer.Write("Framebuffer "); + Global.Emulator.VideoProvider.GetVideoBuffer().SaveAsHex(writer); + } + writer.Close(); + } + else + { + // binary savestates + using (FileStream fs = new FileStream(filename, FileMode.Create, FileAccess.Write)) + using (BinaryStateSaver bs = new BinaryStateSaver(fs)) + { + bs.PutCoreState( + delegate(Stream s) + { + BinaryWriter bw = new BinaryWriter(s); + Global.Emulator.SaveStateBinary(bw); + bw.Flush(); + }); + if (Global.Config.SaveScreenshotWithStates) + { + bs.PutFrameBuffer( + delegate(Stream s) + { + var buff = Global.Emulator.VideoProvider.GetVideoBuffer(); + BinaryWriter bw = new BinaryWriter(s); + bw.Write(buff); + bw.Flush(); + }); + } + if (Global.MovieSession.Movie.IsActive) + { + bs.PutInputLog( + delegate(Stream s) + { + StreamWriter sw = new StreamWriter(s); + // this never should have been a core's responsibility + sw.WriteLine("Frame {0}", Global.Emulator.Frame); + Global.MovieSession.HandleMovieSaveState(sw); + sw.Flush(); + }); + } + } + } + } + + public static bool LoadStateFile(string path, string name) + { + // try to detect binary first + BinaryStateLoader bw = BinaryStateLoader.LoadAndDetect(path); + if (bw != null) + { + try + { + bool succeed = false; + + if (Global.MovieSession.Movie.IsActive) + { + bw.GetInputLogRequired( + delegate(Stream s) + { + StreamReader sr = new StreamReader(s); + succeed = Global.MovieSession.HandleMovieLoadState(sr); + }); + if (!succeed) + { + return false; + } + } + + bw.GetCoreState( + delegate(Stream s) + { + BinaryReader br = new BinaryReader(s); + Global.Emulator.LoadStateBinary(br); + }); + + bw.GetFrameBuffer( + delegate(Stream s) + { + BinaryReader br = new BinaryReader(s); + int i; + var buff = Global.Emulator.VideoProvider.GetVideoBuffer(); + try + { + for (i = 0; i < buff.Length; i++) + { + int j = br.ReadInt32(); + buff[i] = j; + } + } + catch (EndOfStreamException) { } + }); + } + finally + { + bw.Dispose(); + } + + return true; + } + else // text mode + { + if (Global.MovieSession.HandleMovieLoadState(path)) + { + using (var reader = new StreamReader(path)) + { + Global.Emulator.LoadStateText(reader); + + while (true) + { + string str = reader.ReadLine(); + if (str == null) break; + if (str.Trim() == "") continue; + + string[] args = str.Split(' '); + if (args[0] == "Framebuffer") + { + Global.Emulator.VideoProvider.GetVideoBuffer().ReadFromHex(args[1]); + } + } + } + return true; + } + else + { + return false; + } + } + } + } +} diff --git a/BizHawk.Client.Common/movie/MovieSession.cs b/BizHawk.Client.Common/movie/MovieSession.cs index 6ff8a3c138..5f4a7baafd 100644 --- a/BizHawk.Client.Common/movie/MovieSession.cs +++ b/BizHawk.Client.Common/movie/MovieSession.cs @@ -192,6 +192,14 @@ namespace BizHawk.Client.Common } } + public bool HandleMovieLoadState(string path) + { + using (var sr = new StreamReader(path)) + { + return Global.MovieSession.HandleMovieLoadState(sr); + } + } + //OMG this needs to be refactored! public bool HandleMovieLoadState(StreamReader reader) { diff --git a/BizHawk.MultiClient/MainForm.Movie.cs b/BizHawk.MultiClient/MainForm.Movie.cs index 32475efa0e..e7a3ef628c 100644 --- a/BizHawk.MultiClient/MainForm.Movie.cs +++ b/BizHawk.MultiClient/MainForm.Movie.cs @@ -129,15 +129,6 @@ namespace BizHawk.MultiClient SetMainformMovieInfo(); } - private bool HandleMovieLoadState(string path) - { - using (var sr = new StreamReader(path)) - { - SetMainformMovieInfo(); - return Global.MovieSession.HandleMovieLoadState(sr); - } - } - //On movie load, these need to be set based on the contents of the movie file private void SetSyncDependentSettings() { diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 5d1d910a38..8dbea04287 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -752,7 +752,7 @@ namespace BizHawk.MultiClient { PauseStatusButton.Image = Properties.Resources.Blank; PauseStatusButton.Visible = false; - PauseStatusButton.ToolTipText = ""; + PauseStatusButton.ToolTipText = String.Empty; } } @@ -888,7 +888,7 @@ namespace BizHawk.MultiClient break; case "NES": NESSubMenu.Visible = true; - NESSpeicalMenuControls(); + NESSpecialMenuControls(); break; case "PCE": case "PCECD": @@ -953,7 +953,7 @@ namespace BizHawk.MultiClient }); } - void NESSpeicalMenuControls() + void NESSpecialMenuControls() { // ugly and hacky NESSpecialControlsMenuItem.Visible = false; @@ -2502,66 +2502,14 @@ namespace BizHawk.MultiClient public void SaveStateFile(string filename, string name, bool fromLua) { - if (Global.Config.SaveStateType == Config.SaveStateTypeE.Text || - (Global.Config.SaveStateType == Config.SaveStateTypeE.Default && !Global.Emulator.BinarySaveStatesPreferred)) - { - // text mode savestates - var writer = new StreamWriter(filename); - Global.Emulator.SaveStateText(writer); - Global.MovieSession.HandleMovieSaveState(writer); - if (Global.Config.SaveScreenshotWithStates) - { - writer.Write("Framebuffer "); - Global.Emulator.VideoProvider.GetVideoBuffer().SaveAsHex(writer); - } - writer.Close(); - //DateTime end = DateTime.UtcNow; - //Console.WriteLine("n64 savestate BINARY time: {0}", (end - start).TotalMilliseconds); - } - else - { - // binary savestates - using (FileStream fs = new FileStream(filename, FileMode.Create, FileAccess.Write)) - using (BinaryStateSaver bs = new BinaryStateSaver(fs)) - { - bs.PutCoreState( - delegate(Stream s) - { - BinaryWriter bw = new BinaryWriter(s); - Global.Emulator.SaveStateBinary(bw); - bw.Flush(); - }); - if (Global.Config.SaveScreenshotWithStates) - { - bs.PutFrameBuffer( - delegate(Stream s) - { - var buff = Global.Emulator.VideoProvider.GetVideoBuffer(); - BinaryWriter bw = new BinaryWriter(s); - bw.Write(buff); - bw.Flush(); - }); - } - if (Global.MovieSession.Movie.IsActive) - { - bs.PutInputLog( - delegate(Stream s) - { - StreamWriter sw = new StreamWriter(s); - // this never should have been a core's responsibility - sw.WriteLine("Frame {0}", Global.Emulator.Frame); - Global.MovieSession.HandleMovieSaveState(sw); - sw.Flush(); - }); - } - } - //DateTime end = DateTime.UtcNow; - //Console.WriteLine("n64 savestate TEXT time: {0}", (end - start).TotalMilliseconds); - } + SavestateManager.SaveStateFile(filename, name); + GlobalWinF.OSD.AddMessage("Saved state: " + name); if (!fromLua) + { UpdateStatusSlots(); + } } private void SaveStateAs() @@ -2588,97 +2536,21 @@ namespace BizHawk.MultiClient public void LoadStateFile(string path, string name, bool fromLua = false) { GlobalWinF.DisplayManager.NeedsToPaint = true; - // try to detect binary first - BinaryStateLoader bw = BinaryStateLoader.LoadAndDetect(path); - if (bw != null) + + if (SavestateManager.LoadStateFile(path, name)) { - try - { - bool succeed = false; - - if (Global.MovieSession.Movie.IsActive) - { - bw.GetInputLogRequired( - delegate(Stream s) - { - StreamReader sr = new StreamReader(s); - SetMainformMovieInfo(); - succeed = Global.MovieSession.HandleMovieLoadState(sr); - }); - if (!succeed) - goto cleanup; - } - - bw.GetCoreState( - delegate(Stream s) - { - BinaryReader br = new BinaryReader(s); - Global.Emulator.LoadStateBinary(br); - }); - - bw.GetFrameBuffer( - delegate(Stream s) - { - BinaryReader br = new BinaryReader(s); - int i; - var buff = Global.Emulator.VideoProvider.GetVideoBuffer(); - try - { - for (i = 0; i < buff.Length; i++) - { - int j = br.ReadInt32(); - buff[i] = j; - } - } - catch (EndOfStreamException) - { - } - - }); - - - } - finally - { - bw.Dispose(); - } + SetMainformMovieInfo(); + GlobalWinF.OSD.ClearGUIText(); + UpdateToolsBefore(fromLua); + UpdateToolsAfter(fromLua); + UpdateToolsLoadstate(); + GlobalWinF.OSD.AddMessage("Loaded state: " + name); + LuaConsole1.LuaImp.CallLoadStateEvent(name); } else { - // text mode - - if (HandleMovieLoadState(path)) - { - using (var reader = new StreamReader(path)) - { - Global.Emulator.LoadStateText(reader); - - while (true) - { - string str = reader.ReadLine(); - if (str == null) break; - if (str.Trim() == "") continue; - - string[] args = str.Split(' '); - if (args[0] == "Framebuffer") - { - Global.Emulator.VideoProvider.GetVideoBuffer().ReadFromHex(args[1]); - } - } - - } - } - else - GlobalWinF.OSD.AddMessage("Loadstate error!"); + GlobalWinF.OSD.AddMessage("Loadstate error!"); } - - cleanup: - GlobalWinF.OSD.ClearGUIText(); - UpdateToolsBefore(fromLua); - UpdateToolsAfter(fromLua); - UpdateToolsLoadstate(); - GlobalWinF.OSD.AddMessage("Loaded state: " + name); - LuaConsole1.LuaImp.CallLoadStateEvent(name); } public void LoadState(string name, bool fromLua = false)