From 2b0dc82d166baaf137287652b8f428a95f69f72d Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 28 Aug 2016 18:42:59 +0300 Subject: [PATCH] tastudio: finally make < > buttons operate identically to advance/rewind hotkeys --- BizHawk.Client.EmuHawk/MainForm.cs | 7 +- .../tools/TAStudio/PlaybackBox.Designer.cs | 4 ++ .../tools/TAStudio/PlaybackBox.cs | 68 +++++++------------ .../TAStudio/TAStudio.IControlMainForm.cs | 1 + .../tools/TAStudio/TAStudio.ListView.cs | 1 + 5 files changed, 34 insertions(+), 47 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 4729fc9c37..582c2bb2f1 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -607,7 +607,8 @@ namespace BizHawk.Client.EmuHawk public LoadRomArgs CurrentlyOpenRomArgs; public bool PauseAVI = false; public bool PressFrameAdvance = false; - public bool PressRewind = false; + public bool HoldFrameAdvance = false; // necessary for tastudio > button + public bool PressRewind = false; // necessary for tastudio < button public bool FastForward = false; public bool TurboFastForward = false; public bool RestoreReadWriteOnStop = false; @@ -2678,7 +2679,7 @@ namespace BizHawk.Client.EmuHawk runFrame = true; } - if (Global.ClientControls["Frame Advance"] || PressFrameAdvance) + if (Global.ClientControls["Frame Advance"] || PressFrameAdvance || HoldFrameAdvance) { // handle the initial trigger of a frame advance if (_frameAdvanceTimestamp == 0) @@ -2890,7 +2891,7 @@ namespace BizHawk.Client.EmuHawk if (Global.ClientControls["Rewind"] || PressRewind) { UpdateToolsAfter(); - PressRewind = false; + //PressRewind = false; } if (UpdateFrame) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.Designer.cs index 4a2d335959..dade7783ff 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.Designer.cs @@ -127,6 +127,8 @@ this.FrameAdvanceButton.Text = ">"; this.FrameAdvanceButton.UseVisualStyleBackColor = true; this.FrameAdvanceButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrameAdvanceButton_MouseDown); + this.FrameAdvanceButton.MouseLeave += new System.EventHandler(this.FrameAdvanceButton_MouseLeave); + this.FrameAdvanceButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.FrameAdvanceButton_MouseUp); // // PauseButton // @@ -149,6 +151,8 @@ this.RewindButton.Text = "<"; this.RewindButton.UseVisualStyleBackColor = true; this.RewindButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.RewindButton_MouseDown); + this.RewindButton.MouseLeave += new System.EventHandler(this.RewindButton_MouseLeave); + this.RewindButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.RewindButton_MouseUp); // // PreviousMarkerButton // diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.cs index 5fff881a94..82c3d9cf39 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/PlaybackBox.cs @@ -115,53 +115,11 @@ namespace BizHawk.Client.EmuHawk Tastudio.GoToPreviousMarker(); } - private void RewindButton_Click(object sender, EventArgs e) - { - if (GlobalWin.MainForm.IsSeeking && !GlobalWin.MainForm.EmulatorPaused) - { - GlobalWin.MainForm.PauseOnFrame--; - // that's a weird condition here, but for whatever reason it works best - if (Global.Emulator.Frame >= GlobalWin.MainForm.PauseOnFrame) - { - GlobalWin.MainForm.PauseEmulator(); - GlobalWin.MainForm.PauseOnFrame = null; - Tastudio.StopSeeking(); - Tastudio.GoToPreviousFrame(); - } - Tastudio.RefreshDialog(); - } - else - { - Tastudio.GoToPreviousFrame(); - } - } - private void PauseButton_Click(object sender, EventArgs e) { Tastudio.TogglePause(); } - private void FrameAdvanceButton_Click(object sender, EventArgs e) - { - if (GlobalWin.MainForm.IsSeeking && !GlobalWin.MainForm.EmulatorPaused) - { - GlobalWin.MainForm.PauseOnFrame++; - // that's a weird condition here, but for whatever reason it works best - if (Global.Emulator.Frame >= GlobalWin.MainForm.PauseOnFrame) - { - GlobalWin.MainForm.PauseEmulator(); - GlobalWin.MainForm.PauseOnFrame = null; - Tastudio.StopSeeking(); - Tastudio.GoToNextFrame(); - } - Tastudio.RefreshDialog(); - } - else - { - Tastudio.GoToNextFrame(); - } - } - private void NextMarkerButton_Click(object sender, EventArgs e) { Tastudio.GoToNextMarker(); @@ -204,12 +162,34 @@ namespace BizHawk.Client.EmuHawk private void RewindButton_MouseDown(object sender, MouseEventArgs e) { - RewindButton_Click(sender, e); + GlobalWin.MainForm.PressRewind = true; + } + + private void RewindButton_MouseUp(object sender, MouseEventArgs e) + { + GlobalWin.MainForm.PressRewind = false; + } + + private void RewindButton_MouseLeave(object sender, EventArgs e) + { + GlobalWin.MainForm.PressRewind = false; } private void FrameAdvanceButton_MouseDown(object sender, MouseEventArgs e) { - FrameAdvanceButton_Click(sender, e); + GlobalWin.MainForm.HoldFrameAdvance = true; } + + private void FrameAdvanceButton_MouseLeave(object sender, EventArgs e) + { + GlobalWin.MainForm.HoldFrameAdvance = false; + } + + private void FrameAdvanceButton_MouseUp(object sender, MouseEventArgs e) + { + GlobalWin.MainForm.HoldFrameAdvance = false; + } + + } } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs index 31cbf2dadc..892ea86cfe 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs @@ -78,6 +78,7 @@ namespace BizHawk.Client.EmuHawk public bool Rewind() { + // copypasted from TasView_MouseWheel(), just without notch logic if (GlobalWin.MainForm.IsSeeking) { GlobalWin.MainForm.PauseOnFrame--; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 08eddc6d41..b5b066aebf 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -670,6 +670,7 @@ namespace BizHawk.Client.EmuHawk if (notch > 1) notch *= 2; + // warning: tastudio rewind hotket/button logic is copypasted from here! if (GlobalWin.MainForm.IsSeeking && !GlobalWin.MainForm.EmulatorPaused) { GlobalWin.MainForm.PauseOnFrame -= notch;