From e687c4ab1a957b6d56c5e55ecce425f5255521eb Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 6 Aug 2015 20:03:30 +0300 Subject: [PATCH] tastudio: don't count rerecords while drawing --- BizHawk.Client.Common/movie/tasproj/TasMovie.cs | 2 +- .../tools/TAStudio/TAStudio.ListView.cs | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs index 464bf8451d..dfc712afb7 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs @@ -179,7 +179,7 @@ namespace BizHawk.Client.Common var anyInvalidated = StateManager.Invalidate(frame + 1); Changes = true; // TODO check if this actually removed anything before flagging changes - if (anyInvalidated) + if (anyInvalidated && Global.MovieSession.Movie.IsCountingRerecords) { base.Rerecords++; } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 0c044bef1e..9a95c4565c 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -599,7 +599,11 @@ namespace BizHawk.Client.EmuHawk e.NewCell == null || e.NewCell.RowIndex == null || e.NewCell.Column == null) { return; - } + } + + // skip rerecord counting on drawing entirely, mouse down is enough + // avoid introducing another global + bool wasCountingRerecords = Global.MovieSession.Movie.IsCountingRerecords; int startVal, endVal; int frame = e.NewCell.RowIndex.Value; @@ -714,6 +718,8 @@ namespace BizHawk.Client.EmuHawk // Left-click else if (TasView.IsPaintDown && e.NewCell.RowIndex.HasValue && !string.IsNullOrEmpty(_startBoolDrawColumn)) { + Global.MovieSession.Movie.IsCountingRerecords = false; + if (e.OldCell.RowIndex.HasValue && e.NewCell.RowIndex.HasValue) { for (int i = startVal; i <= endVal; i++) // Inclusive on both ends (drawing up or down) @@ -733,7 +739,9 @@ namespace BizHawk.Client.EmuHawk } else if (TasView.IsPaintDown && e.NewCell.RowIndex.HasValue && !string.IsNullOrEmpty(_startFloatDrawColumn)) - { + { + Global.MovieSession.Movie.IsCountingRerecords = false; + if (e.OldCell.RowIndex.HasValue && e.NewCell.RowIndex.HasValue) { for (int i = startVal; i <= endVal; i++) // Inclusive on both ends (drawing up or down) @@ -752,6 +760,8 @@ namespace BizHawk.Client.EmuHawk } } + Global.MovieSession.Movie.IsCountingRerecords = wasCountingRerecords; + if (mouseButtonHeld) { TasView.MakeIndexVisible(TasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed