From ade701f873ca7bf256cf479cf7291dc64f073d7b Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 6 Jan 2019 16:09:06 +0300 Subject: [PATCH] tastudio: instead of capturing a tsm state after loading a branch, force greenzone creation when we're navigating past last greenzone frame doesn't fire when you hit frame advance or > button tho (don't know why it thinks mgba has changed) --- .../tools/TAStudio/BookmarksBranchesBox.cs | 1 - BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 15 +++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs index f64cace517..18856a726c 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs @@ -202,7 +202,6 @@ namespace BizHawk.Client.EmuHawk Movie.LoadBranch(branch); var stateInfo = new KeyValuePair(branch.Frame, branch.CoreData); Tastudio.LoadState(stateInfo); - Movie.TasStateManager.Capture(true); QuickBmpFile.Copy(new BitmapBufferVideoProvider(branch.OSDFrameBuffer), Tastudio.VideoProvider); if (Tastudio.Settings.OldControlSchemeForBranches && Tastudio.TasPlaybackBox.RecordingMode) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 8b0647d1f6..6509646d99 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -891,8 +891,19 @@ namespace BizHawk.Client.EmuHawk _unpauseAfterSeeking = (fromRewinding || WasRecording) && !Mainform.EmulatorPaused; TastudioPlayMode(); - KeyValuePair closestState = CurrentTasMovie.TasStateManager.GetStateClosestToFrame(frame); - if (closestState.Value != null && (frame < Emulator.Frame || closestState.Key > Emulator.Frame)) + + // feos: if there is a state BETWEEN the current frame and the last valid (laglog) frame, + // prefer the latter and use state prior to that. otherwise greenzone will never be appended + // TODO: allow gaps in greenzone to overcome this + // we don't want to wait for seeking to end if there are states in the middle of invalid greenzone + // if there are such states, then we can navigate there, hence it's supposed to be a greenzone + KeyValuePair closestState = CurrentTasMovie.TasStateManager + .GetStateClosestToFrame(Math.Min(frame, CurrentTasMovie.LastValidFrame)); + + if (closestState.Value != null + && (frame < Emulator.Frame + || closestState.Key > Emulator.Frame + || CurrentTasMovie.LastValidFrame < Emulator.Frame)) { LoadState(closestState); }