From f59ebfe126fb67e83ecb96edf45a681b7b6fec3b Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 21 Nov 2016 23:59:12 +0300 Subject: [PATCH] tastudio: refactor restore logic again, fixes some more bugs (_autoRestoreFrame completely replaced by LastPositionFrame) --- .../tools/TAStudio/TAStudio.ListView.cs | 19 +---- .../tools/TAStudio/TAStudio.MenuItems.cs | 72 +++---------------- .../tools/TAStudio/TAStudio.Navigation.cs | 9 ++- .../tools/TAStudio/TAStudio.cs | 8 +-- 4 files changed, 19 insertions(+), 89 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index ac9e0a2480..7c2f6c8bc0 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -56,7 +56,6 @@ namespace BizHawk.Client.EmuHawk } private bool _triggerAutoRestore; // If true, autorestore will be called on mouse up - private int? _autoRestoreFrame; // The frame auto-restore will restore to, if set private bool? _autoRestorePaused = null; private int? _seekStartFrame = null; private bool _wasRecording = false; @@ -71,13 +70,6 @@ namespace BizHawk.Client.EmuHawk { if (Global.Emulator.Frame > CurrentTasMovie.LastValidFrame) { - if (_autoRestorePaused == null) - { - _autoRestorePaused = Mainform.EmulatorPaused; - if (Mainform.IsSeeking) // If seeking, do not shorten seek. - _autoRestoreFrame = Mainform.PauseOnFrame; - } - GoToLastEmulatedFrameIfNecessary(CurrentTasMovie.LastValidFrame); } } @@ -105,7 +97,7 @@ namespace BizHawk.Client.EmuHawk TastudioRecordMode(); _wasRecording = false; } - + Mainform.PauseOnFrame = null; if (CurrentTasMovie != null) RefreshDialog(); } @@ -494,15 +486,6 @@ namespace BizHawk.Client.EmuHawk { bool wasPaused = Mainform.EmulatorPaused; - if (Emulator.Frame > frame || CurrentTasMovie.LastValidFrame > frame) - { - if (wasPaused && !Mainform.IsSeeking && !CurrentTasMovie.LastPositionStable) - { - LastPositionFrame = Emulator.Frame; - CurrentTasMovie.LastPositionStable = true; // until new frame is emulated - } - } - if (Global.MovieSession.MovieControllerAdapter.Type.BoolButtons.Contains(buttonName)) { CurrentTasMovie.ChangeLog.BeginNewBatch("Paint Bool " + buttonName + " from frame " + frame); diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index 5386665ecf..f4f3396138 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -415,14 +415,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(TasView.FirstSelectedIndex.Value); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -462,14 +455,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(TasView.FirstSelectedIndex.Value); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -511,14 +497,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(rollBackFrame); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -545,14 +524,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(rollBackFrame); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -580,14 +552,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(rollBackFrame); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -614,14 +579,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(insertionFrame); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -641,14 +599,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(insertionFrame); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { @@ -672,14 +623,7 @@ namespace BizHawk.Client.EmuHawk if (needsToRollback) { GoToLastEmulatedFrameIfNecessary(insertionFrame); - if (wasPaused) - { - DoAutoRestore(); - } - else - { - Mainform.UnpauseEmulator(); - } + DoAutoRestore(); } else { diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs index 63232eb129..e0f421f8f8 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs @@ -18,11 +18,14 @@ namespace BizHawk.Client.EmuHawk if (frame <= Emulator.Frame) { + if ((Mainform.EmulatorPaused || !Mainform.IsSeeking) && + !CurrentTasMovie.LastPositionStable) + { + LastPositionFrame = Emulator.Frame; + CurrentTasMovie.LastPositionStable = true; // until new frame is emulated + } GoToFrame(frame); } - - if (!_autoRestoreFrame.HasValue || _autoRestoreFrame.Value < restoreFrame) - _autoRestoreFrame = restoreFrame; } } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index c8d285a047..9ac1948a56 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -792,11 +792,11 @@ namespace BizHawk.Client.EmuHawk private void DoAutoRestore() { - if (Settings.AutoRestoreLastPosition && _autoRestoreFrame.HasValue) + if (Settings.AutoRestoreLastPosition && LastPositionFrame != -1) { - if (_autoRestoreFrame > Emulator.Frame) // Don't unpause if we are already on the desired frame, else runaway seek + if (LastPositionFrame > Emulator.Frame) // Don't unpause if we are already on the desired frame, else runaway seek { - StartSeeking(_autoRestoreFrame); + StartSeeking(LastPositionFrame); } } else @@ -808,7 +808,7 @@ namespace BizHawk.Client.EmuHawk } _autoRestorePaused = null; } - _autoRestoreFrame = null; + //_autoRestoreFrame = null; } private void StartAtNearestFrameAndEmulate(int frame)