From ce3c9364dfb568d023845d1b261f738c2b7e480b Mon Sep 17 00:00:00 2001 From: feos Date: Tue, 15 Sep 2015 21:47:59 +0300 Subject: [PATCH] tastudio: ban state removal per branch load. todo: figure out way to skip removal internally in StateToRemove(). --- BizHawk.Client.Common/movie/tasproj/TasMovie.cs | 2 +- .../movie/tasproj/TasStateManager.cs | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs index 01307aa681..df4b19679c 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs @@ -478,7 +478,7 @@ namespace BizHawk.Client.Common StateManager.LoadBranch(Branches.IndexOf(branch)); - StateManager.SetState(branch.Frame, branch.CoreData); + StateManager.SetState(branch.Frame, branch.CoreData, skipRemoval: true); //ChangeLog = branch.ChangeLog; Markers = branch.Markers; diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 67ee4e7c62..81ce1929e9 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -313,7 +313,10 @@ namespace BizHawk.Client.Common i = 0; do { - shouldRemove = findState(accessed[i]); + if (accessed.Count > i) + shouldRemove = findState(accessed[i]); + else + break; // Keep marker states markerSkips--; @@ -385,9 +388,11 @@ namespace BizHawk.Client.Common Used += (ulong)States[index].Length; } - internal void SetState(int frame, byte[] state) + internal void SetState(int frame, byte[] state, bool skipRemoval = false) { - MaybeRemoveStates(); // Remove before adding so this state won't be removed. + if (!skipRemoval) + MaybeRemoveStates(); // Remove before adding so this state won't be removed. + if (States.ContainsKey(frame)) { if (stateHasDuplicate(frame, -1) != -2) @@ -860,7 +865,7 @@ namespace BizHawk.Client.Common continue; // TODO: It might be a better idea to just not put state 0 in BranchStates. if (kvp.Value.ContainsKey(identifier)) - SetState(kvp.Key, kvp.Value[identifier].State); + SetState(kvp.Key, kvp.Value[identifier].State, skipRemoval: true); } currentBranch = index;