diff --git a/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs b/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs index 9cab4bab69..e179cd4a31 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs @@ -46,9 +46,9 @@ namespace BizHawk.Client.Common return; // Nothing to do } - if (frame >= LagLog.Count) + if (frame == LagLog.Count) { - do { LagLog.Add(value.Value); } while (frame >= LagLog.Count); + LagLog.Add(value.Value); } else LagLog[frame] = value.Value; @@ -99,8 +99,8 @@ namespace BizHawk.Client.Common { LagLog.Clear(); WasLag.Clear(); - if (br.BaseStream.Length > 0) - { + //if (br.BaseStream.Length > 0) + //{ BaseStream.Length does not return the expected value. int formatVersion = br.ReadByte(); if (formatVersion == 0) { @@ -125,7 +125,7 @@ namespace BizHawk.Client.Common for (int i = length; i < lenWas; i++) WasLag.Add(br.ReadBoolean()); } - } + //} } public bool? History(int frame) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index dc9fb75bf5..5719e08222 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -58,7 +58,6 @@ namespace BizHawk.Client.Common return freq; } } - private int _lastCapture = 0; private int maxStates { get { return (int)(Settings.Cap / _expectedStateSize); } } @@ -159,7 +158,6 @@ namespace BizHawk.Client.Common if (shouldCapture) { SetState(frame, (byte[])Core.SaveStateBinary().Clone()); - _lastCapture = frame; } } @@ -175,7 +173,9 @@ namespace BizHawk.Client.Common if (Used > Settings.Cap) { - MoveStateToDisk(accessed.Last()); + int lastMemState = -1; + do { lastMemState++; } while (States[accessed[lastMemState]] == null); + MoveStateToDisk(accessed[lastMemState]); } } private int StateToRemove() @@ -188,7 +188,7 @@ namespace BizHawk.Client.Common shouldRemove++; // No need to have two savestates with only lag frames between them. - for (int i = shouldRemove + 1; i < States.Count - 1; i++) + for (int i = shouldRemove; i < States.Count - 1; i++) { if (AllLag(States.ElementAt(i).Key, States.ElementAt(i + 1).Key)) { @@ -284,7 +284,8 @@ namespace BizHawk.Client.Common if (States[index] == null) { - MoveStateToDisk(accessed[0]); + if (States[accessed[0]] != null) + MoveStateToDisk(accessed[0]); MoveStateToMemory(index); } @@ -323,16 +324,9 @@ namespace BizHawk.Client.Common DiskUsed -= _expectedStateSize; // Length?? else Used -= (ulong)state.Value.Length; + accessed.Remove(state.Key); States.Remove(state.Key); } - - if (!States.ContainsKey(_lastCapture)) - { - if (States.Count == 0) - _lastCapture = -1; - else - _lastCapture = States.Last().Key; - } } } @@ -343,27 +337,33 @@ namespace BizHawk.Client.Common public void Clear() { States.Clear(); + accessed.Clear(); Used = 0; - _lastCapture = -1; + DiskUsed = 0; } public void ClearStateHistory() { if (States.Any()) { - var power = States.FirstOrDefault(s => s.Key == 0); + KeyValuePair power = States.FirstOrDefault(s => s.Key == 0); + if (power.Value == null) + { + StateAccessed(power.Key); + power = States.FirstOrDefault(s => s.Key == 0); + } States.Clear(); + accessed.Clear(); if (power.Value.Length > 0) { - States.Add(0, power.Value); + SetState(0, power.Value); Used = (ulong)power.Value.Length; - _lastCapture = 0; } else { Used = 0; - _lastCapture = -1; + DiskUsed = 0; } } } @@ -376,6 +376,8 @@ namespace BizHawk.Client.Common ulong saveUsed = Used + DiskUsed; do { + // TODO: Use a different method to remove states. + // e.g. Saving should place higher priority on keeping markers int index = StateToRemove(); noSave.Add(index); if (States.ElementAt(index).Value == null) @@ -385,13 +387,14 @@ namespace BizHawk.Client.Common } while (saveUsed > (ulong)Settings.DiskSaveCapacitymb * 1024 * 1024); } - bw.Write(States.Count); - foreach (var kvp in States) + bw.Write(States.Count - noSave.Count); + for (int i = 0; i < States.Count; i++) { - if (noSave.Contains(kvp.Key)) + if (noSave.Contains(States.ElementAt(i).Key)) continue; - StateAccessed(kvp.Key); + StateAccessed(States.ElementAt(i).Key); + KeyValuePair kvp = States.ElementAt(i); bw.Write(kvp.Key); bw.Write(kvp.Value.Length); bw.Write(kvp.Value); @@ -401,19 +404,19 @@ namespace BizHawk.Client.Common public void Load(BinaryReader br) { States.Clear(); - if (br.BaseStream.Length > 0) + //if (br.BaseStream.Length > 0) + //{ BaseStream.Length does not return the expected value. + int nstates = br.ReadInt32(); + for (int i = 0; i < nstates; i++) { - int nstates = br.ReadInt32(); - for (int i = 0; i < nstates; i++) - { - int frame = br.ReadInt32(); - int len = br.ReadInt32(); - byte[] data = br.ReadBytes(len); - SetState(frame, data); - //States.Add(frame, data); - //Used += len; - } + int frame = br.ReadInt32(); + int len = br.ReadInt32(); + byte[] data = br.ReadBytes(len); + SetState(frame, data); + //States.Add(frame, data); + //Used += len; } + //} } public KeyValuePair GetStateClosestToFrame(int frame) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index dbf3eeca5b..c348a2e11e 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -513,10 +513,6 @@ namespace BizHawk.Client.EmuHawk components.Dispose(); } - // Do not keep TAStudio's disk save states. TODO: This might not be a good place to put this. - if (Directory.Exists(PathManager.MakeAbsolutePath(Global.Config.PathEntries["Global", "TAStudio states"].Path, null))) - Directory.Delete(PathManager.MakeAbsolutePath(Global.Config.PathEntries["Global", "TAStudio states"].Path, null), true); - base.Dispose(disposing); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 35b5fe8db3..057bbe0cf6 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -412,7 +412,6 @@ namespace BizHawk.Client.EmuHawk } _rightClickLastFrame = -1; - _triggerAutoRestore = true; _triggerAutoRestoreFromFrame = TasView.CurrentCell.RowIndex.Value; // TODO: Turn off ChangeLog.IsRecording and handle the GeneralUndo here. CurrentTasMovie.ChangeLog.BeginNewBatch("Right-Click Edit"); @@ -545,6 +544,7 @@ namespace BizHawk.Client.EmuHawk else if (_rightClickFrame != -1) { + _triggerAutoRestore = true; _supressContextMenu = true; if (frame > CurrentTasMovie.InputLogLength - _rightClickInput.Length) frame = CurrentTasMovie.InputLogLength - _rightClickInput.Length; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs index 550b83f5cf..b6abed8d4e 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs @@ -43,7 +43,7 @@ namespace BizHawk.Client.EmuHawk if (CurrentTasMovie[goToFrame].HasState) // Go back 1 frame and emulate to get the display (we don't store that) { CurrentTasMovie.SwitchToPlay(); - LoadState(CurrentTasMovie.TasStateManager[frame]); // STATE ACCESS + LoadState(CurrentTasMovie.TasStateManager[goToFrame]); // STATE ACCESS if (frame > 0) // We can't emulate up to frame 0! { @@ -71,7 +71,7 @@ namespace BizHawk.Client.EmuHawk if (CurrentTasMovie[goToFrame].HasState) // Can we go directly there? { CurrentTasMovie.SwitchToPlay(); - LoadState(CurrentTasMovie.TasStateManager[frame]); // STATE ACCESS + LoadState(CurrentTasMovie.TasStateManager[goToFrame]); // STATE ACCESS Emulator.FrameAdvance(true); GlobalWin.DisplayManager.NeedsToPaint = true; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index e85581bd4c..c8372176e7 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -161,6 +161,9 @@ namespace BizHawk.Client.EmuHawk GlobalWin.MainForm.TakeBackControl(); Global.Config.MovieEndAction = _originalEndAction; GlobalWin.MainForm.SetMainformMovieInfo(); + // Do not keep TAStudio's disk save states. + if (Directory.Exists(PathManager.MakeAbsolutePath(Global.Config.PathEntries["Global", "TAStudio states"].Path, null))) + Directory.Delete(PathManager.MakeAbsolutePath(Global.Config.PathEntries["Global", "TAStudio states"].Path, null), true); } private void NewTasMovie()