From e3a8c33be5f9f67505fe541bef480d42afa69345 Mon Sep 17 00:00:00 2001 From: Suuper Date: Mon, 13 Jul 2015 22:05:50 -0500 Subject: [PATCH] -Fixed typo in variable name (SupressGeenzonging) -Removed state capture from TasMovie.RecordFrame -Fixed: States weren't captured while left mouse button was still down from clicking a frame. -TAStudio now automatically captures after loading a new movie. --- .../movie/tasproj/TasMovie.Editing.cs | 5 ----- BizHawk.Client.Common/movie/tasproj/TasMovie.cs | 4 ++-- .../tools/TAStudio/TAStudio.ListView.cs | 5 +++-- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 11 ++++++++--- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index f72425d9d2..a9b552e1ea 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -23,11 +23,6 @@ namespace BizHawk.Client.Common LagLog.RemoveFrom(frame); LagLog[frame] = Global.Emulator.AsInputPollable().IsLagFrame; - if (!SupressGreenzonging) - { - StateManager.Capture(); - } - if (frame != 0) ChangeLog.SetGeneralRedo(); } diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs index 7e949f5aed..d6b08693f3 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs @@ -240,11 +240,11 @@ namespace BizHawk.Client.Common return base.GetInputState(frame); } - public bool SupressGreenzonging { get; set; } + public bool SupressGreenzoneing { get; set; } public void GreenzoneCurrentFrame() { - if (!SupressGreenzonging) + if (!SupressGreenzoneing) { LagLog[Global.Emulator.Frame] = Global.Emulator.AsInputPollable().IsLagFrame; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index ddc2a353c8..ec1a3b62d5 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -310,7 +310,6 @@ namespace BizHawk.Client.EmuHawk if (e.Button == MouseButtons.Left) { - CurrentTasMovie.SupressGreenzonging = true; // This is necessary because we will invalidate, but we won't navigate until mouse up, during that time the user may have emulated frames and we don't want to caputre states for those _leftButtonHeld = true; // SuuperW: Exit float editing mode, or re-enter mouse editing if (_floatEditRow != -1) @@ -342,6 +341,8 @@ namespace BizHawk.Client.EmuHawk } else // User changed input { + CurrentTasMovie.SupressGreenzoneing = true; // This is necessary because we will invalidate, but we won't navigate until mouse up, during that time the user may have emulated frames and we don't want to caputre states for those + if (Global.MovieSession.MovieControllerAdapter.Type.BoolButtons.Contains(buttonName)) { CurrentTasMovie.ChangeLog.BeginNewBatch("Paint Bool"); @@ -448,7 +449,7 @@ namespace BizHawk.Client.EmuHawk } else if (e.Button == MouseButtons.Left) { - CurrentTasMovie.SupressGreenzonging = false; + CurrentTasMovie.SupressGreenzoneing = false; _startCursorDrag = false; _startFrameDrag = false; _startBoolDrawColumn = string.Empty; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 91b6974fb4..1e050115da 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -370,6 +370,7 @@ namespace BizHawk.Client.EmuHawk SetTasMovieCallbacks(); CurrentTasMovie.ClearChanges(); // Don't ask to save changes here. HandleMovieLoadStuff(); + CurrentTasMovie.TasStateManager.Capture(); // Capture frame 0 always. RefreshDialog(); } @@ -545,10 +546,14 @@ namespace BizHawk.Client.EmuHawk LoadState(closestState); } - if (GlobalWin.MainForm.EmulatorPaused || GlobalWin.MainForm.IsSeeking || _mouseWheelTimer.Enabled) // make seek frame keep up with emulation on fast scrolls + // frame == Emualtor.Frame when frame == 0 + if (frame > Emulator.Frame) { - GlobalWin.MainForm.PauseOnFrame = frame; - GlobalWin.MainForm.UnpauseEmulator(); + if (GlobalWin.MainForm.EmulatorPaused || GlobalWin.MainForm.IsSeeking || _mouseWheelTimer.Enabled) // make seek frame keep up with emulation on fast scrolls + { + GlobalWin.MainForm.PauseOnFrame = frame; + GlobalWin.MainForm.UnpauseEmulator(); + } } }