From 3ec2ec325ad224af8da4ca8e13025405786b546f Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 15 Jun 2019 16:43:21 -0500 Subject: [PATCH] IStateManager - refactor indexer to not return a keyvalue pair, since it by design will try to return the exact frame, returning the frame is redundant --- .../movie/tasproj/IStateManager.cs | 4 +--- .../movie/tasproj/TasStateManager.cs | 14 +++++++++----- .../tools/TAStudio/TAStudio.MenuItems.cs | 4 ++-- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/IStateManager.cs b/BizHawk.Client.Common/movie/tasproj/IStateManager.cs index c1d430e5bd..95a678ad6a 100644 --- a/BizHawk.Client.Common/movie/tasproj/IStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/IStateManager.cs @@ -6,14 +6,12 @@ namespace BizHawk.Client.Common { public interface IStateManager { - // byte[] this[int frame] { get; } // TODO: I had it refactored to this back in the day - /// /// Retrieves the savestate for the given frame, /// If this frame does not have a state currently, will return an empty array /// /// A savestate for the given frame or an empty array if there isn't one - KeyValuePair this[int frame] { get; } + byte[] this[int frame] { get; } TasStateManagerSettings Settings { get; set; } diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 8568b20d8c..bd556bbe33 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -60,21 +60,21 @@ namespace BizHawk.Client.Common public TasStateManagerSettings Settings { get; set; } - public KeyValuePair this[int frame] + public byte[] this[int frame] { get { if (frame == 0) { - return new KeyValuePair(0, InitialState); + return InitialState; } if (_states.ContainsKey(frame)) { - return new KeyValuePair(frame, _states[frame].State); + return _states[frame].State; } - return new KeyValuePair(-1, new byte[0]); + return new byte[0]; } } @@ -267,8 +267,12 @@ namespace BizHawk.Client.Common public KeyValuePair GetStateClosestToFrame(int frame) { var s = _states.LastOrDefault(state => state.Key < frame); + if (s.Key > 0) + { + return new KeyValuePair(s.Key, s.Value.State); + } - return this[s.Key]; + return new KeyValuePair(0, InitialState); } public int GetStateIndexByFrame(int frame) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index 3cb1c13867..3aa06f75b6 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -815,9 +815,9 @@ namespace BizHawk.Client.EmuHawk if (CurrentTasMovie.TasStateManager.HasState(Emulator.Frame)) { byte[] state = StatableEmulator.SaveStateBinary(); - byte[] greenzone = CurrentTasMovie.TasStateManager[Emulator.Frame].Value; + byte[] greenZone = CurrentTasMovie.TasStateManager[Emulator.Frame]; - if (!state.SequenceEqual(greenzone)) + if (!state.SequenceEqual(greenZone)) { MessageBox.Show($"Bad data between frames {lastState} and {Emulator.Frame}"); return;