From 4687f29edc870a2d5236291ed1a6154daf636469 Mon Sep 17 00:00:00 2001 From: hegyak Date: Sat, 13 Feb 2016 09:25:34 -0800 Subject: [PATCH 01/12] Merged d4f2eae8eb2abdb9432e35f6453f4e2c6e44eb2 into Branch/RELEASE Updated VersionInfo.cs to 1.11.5 --- Version/VersionInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Version/VersionInfo.cs b/Version/VersionInfo.cs index 1be1760cbd..6e9e20f866 100644 --- a/Version/VersionInfo.cs +++ b/Version/VersionInfo.cs @@ -2,7 +2,7 @@ static class VersionInfo { public const string MAINVERSION = "1.11.6"; // Use numbers only or the new version notification won't work public static readonly string RELEASEDATE = "March 07, 2016"; - public static readonly bool DeveloperBuild = true; + public static readonly bool DeveloperBuild = false; public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; public static string GetEmuVersion() From 4bd8f93c0353c371c27e7e00d5d76562e317df3f Mon Sep 17 00:00:00 2001 From: hegyak Date: Sun, 6 Mar 2016 18:13:54 -0800 Subject: [PATCH 02/12] Update VersionInfo.cs to 1.11.6 and Merge Commit 9e3d57341f6a26a04358e6e0ec627425029a1671 --- Version/VersionInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Version/VersionInfo.cs b/Version/VersionInfo.cs index 6e9e20f866..e41268152a 100644 --- a/Version/VersionInfo.cs +++ b/Version/VersionInfo.cs @@ -1,7 +1,7 @@ static class VersionInfo { public const string MAINVERSION = "1.11.6"; // Use numbers only or the new version notification won't work - public static readonly string RELEASEDATE = "March 07, 2016"; + public static readonly string RELEASEDATE = "March 7, 2016"; public static readonly bool DeveloperBuild = false; public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; From 8be0c6fe512e922924780ebb46e1011c9a06af23 Mon Sep 17 00:00:00 2001 From: hegyak Date: Sat, 16 Apr 2016 06:33:03 -0700 Subject: [PATCH 03/12] Update Version/VersionInfo.cs --- Version/VersionInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Version/VersionInfo.cs b/Version/VersionInfo.cs index e41268152a..b81beca34f 100644 --- a/Version/VersionInfo.cs +++ b/Version/VersionInfo.cs @@ -2,7 +2,7 @@ static class VersionInfo { public const string MAINVERSION = "1.11.6"; // Use numbers only or the new version notification won't work public static readonly string RELEASEDATE = "March 7, 2016"; - public static readonly bool DeveloperBuild = false; + public static readonly bool DeveloperBuild = true; public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; public static string GetEmuVersion() From 5761b6b7ce33b74c60ffddd9875c21726b9a2050 Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 29 Aug 2016 19:38:36 +0300 Subject: [PATCH 04/12] tastudio: GlobalWin.MainForm alias almost 100 cases of usage is worth it make "recent rom not found" window topmost --- .../Extensions/ToolExtensions.cs | 3 +- .../TAStudio/TAStudio.IControlMainForm.cs | 10 ++-- .../tools/TAStudio/TAStudio.ListView.cs | 42 ++++++++-------- .../tools/TAStudio/TAStudio.MenuItems.cs | 48 +++++++++---------- .../tools/TAStudio/TAStudio.Navigation.cs | 6 +-- .../tools/TAStudio/TAStudio.cs | 35 ++++++++------ 6 files changed, 75 insertions(+), 69 deletions(-) diff --git a/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs b/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs index be6f7dc225..5f9d3d4832 100644 --- a/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs +++ b/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs @@ -221,7 +221,8 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions } else { - var result = MessageBox.Show("Could not open " + path + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error); + // ensure topmost, not to have to minimize everything to see and use our modal window, if it somehow got covered + var result = MessageBox.Show(new Form(){TopMost = true},"Could not open " + path + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error); if (result == DialogResult.Yes) { if (encodedPath != null) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs index 892ea86cfe..2ecc788c54 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs @@ -79,14 +79,14 @@ namespace BizHawk.Client.EmuHawk public bool Rewind() { // copypasted from TasView_MouseWheel(), just without notch logic - if (GlobalWin.MainForm.IsSeeking) + if (Mainform.IsSeeking) { - GlobalWin.MainForm.PauseOnFrame--; + Mainform.PauseOnFrame--; // that's a weird condition here, but for whatever reason it works best - if (Emulator.Frame >= GlobalWin.MainForm.PauseOnFrame) + if (Emulator.Frame >= Mainform.PauseOnFrame) { - GlobalWin.MainForm.PauseEmulator(); - GlobalWin.MainForm.PauseOnFrame = null; + Mainform.PauseEmulator(); + Mainform.PauseOnFrame = null; StopSeeking(); GoToPreviousFrame(); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index b5b066aebf..d1b35b139e 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -62,9 +62,9 @@ namespace BizHawk.Client.EmuHawk { if (_autoRestorePaused == null) { - _autoRestorePaused = GlobalWin.MainForm.EmulatorPaused; - if (GlobalWin.MainForm.IsSeeking) // If seeking, do not shorten seek. - _autoRestoreFrame = GlobalWin.MainForm.PauseOnFrame; + _autoRestorePaused = Mainform.EmulatorPaused; + if (Mainform.IsSeeking) // If seeking, do not shorten seek. + _autoRestoreFrame = Mainform.PauseOnFrame; } GoToLastEmulatedFrameIfNecessary(CurrentTasMovie.LastValidFrame); @@ -77,10 +77,10 @@ namespace BizHawk.Client.EmuHawk return; _seekStartFrame = Emulator.Frame; - GlobalWin.MainForm.PauseOnFrame = frame.Value; - int? diff = GlobalWin.MainForm.PauseOnFrame - _seekStartFrame; + Mainform.PauseOnFrame = frame.Value; + int? diff = Mainform.PauseOnFrame - _seekStartFrame; - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); if (!_seekBackgroundWorker.IsBusy && diff.Value > TasView.VisibleRows) _seekBackgroundWorker.RunWorkerAsync(); @@ -151,7 +151,7 @@ namespace BizHawk.Client.EmuHawk if (columnName == CursorColumnName) { - if (index == Emulator.Frame && index == GlobalWin.MainForm.PauseOnFrame) + if (index == Emulator.Frame && index == Mainform.PauseOnFrame) { bitmap = TasView.HorizontalOrientation ? ts_v_arrow_green_blue : @@ -224,11 +224,11 @@ namespace BizHawk.Client.EmuHawk { TasMovieRecord record = CurrentTasMovie[index]; - if (GlobalWin.MainForm.IsSeeking && GlobalWin.MainForm.PauseOnFrame == index) + if (Mainform.IsSeeking && Mainform.PauseOnFrame == index) { color = CurrentFrame_InputLog; } - else if (!GlobalWin.MainForm.IsSeeking && Emulator.Frame == index) + else if (!Mainform.IsSeeking && Emulator.Frame == index) { color = CurrentFrame_InputLog; } @@ -401,17 +401,17 @@ namespace BizHawk.Client.EmuHawk if (e.Button == MouseButtons.Middle) { - if (GlobalWin.MainForm.EmulatorPaused) + if (Mainform.EmulatorPaused) { TasMovieRecord record = CurrentTasMovie[LastPositionFrame]; if (!record.Lagged.HasValue && LastPositionFrame > Global.Emulator.Frame) StartSeeking(LastPositionFrame); else - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } else { - GlobalWin.MainForm.PauseEmulator(); + Mainform.PauseEmulator(); } return; } @@ -466,11 +466,11 @@ namespace BizHawk.Client.EmuHawk } else // User changed input { - bool wasPaused = GlobalWin.MainForm.EmulatorPaused; + bool wasPaused = Mainform.EmulatorPaused; if (Emulator.Frame > frame || CurrentTasMovie.LastValidFrame > frame) { - if (wasPaused && !GlobalWin.MainForm.IsSeeking && !CurrentTasMovie.LastPositionStable) + if (wasPaused && !Mainform.IsSeeking && !CurrentTasMovie.LastPositionStable) { LastPositionFrame = Emulator.Frame; CurrentTasMovie.LastPositionStable = true; // until new frame is emulated @@ -550,7 +550,7 @@ namespace BizHawk.Client.EmuHawk // taseditor behavior if (!wasPaused) - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else if (e.Button == System.Windows.Forms.MouseButtons.Right) @@ -670,15 +670,15 @@ 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) + // warning: tastudio rewind hotkey/button logic is copypasted from here! + if (Mainform.IsSeeking && !Mainform.EmulatorPaused) { - GlobalWin.MainForm.PauseOnFrame -= notch; + Mainform.PauseOnFrame -= notch; // that's a weird condition here, but for whatever reason it works best - if (notch > 0 && Global.Emulator.Frame >= GlobalWin.MainForm.PauseOnFrame) + if (notch > 0 && Global.Emulator.Frame >= Mainform.PauseOnFrame) { - GlobalWin.MainForm.PauseEmulator(); - GlobalWin.MainForm.PauseOnFrame = null; + Mainform.PauseEmulator(); + Mainform.PauseOnFrame = null; StopSeeking(); GoToFrame(Emulator.Frame - notch); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index 9957ac3051..1bd8be02f4 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -41,7 +41,7 @@ namespace BizHawk.Client.EmuHawk private void NewTasMenuItem_Click(object sender, EventArgs e) { - if (GlobalWin.MainForm.GameIsClosing) + if (Mainform.GameIsClosing) { Close(); } @@ -387,7 +387,7 @@ namespace BizHawk.Client.EmuHawk // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them // FCEUX Taseditor does't do this, but I think it is the expected behavior in editor programs - var wasPaused = GlobalWin.MainForm.EmulatorPaused; + var wasPaused = Mainform.EmulatorPaused; if (_tasClipboard.Any()) { @@ -404,7 +404,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -416,7 +416,7 @@ namespace BizHawk.Client.EmuHawk private void PasteInsertMenuItem_Click(object sender, EventArgs e) { - var wasPaused = GlobalWin.MainForm.EmulatorPaused; + var wasPaused = Mainform.EmulatorPaused; if (_tasClipboard.Any()) { @@ -433,7 +433,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -447,7 +447,7 @@ namespace BizHawk.Client.EmuHawk { if (TasView.AnyRowsSelected) { - var wasPaused = GlobalWin.MainForm.EmulatorPaused; + var wasPaused = Mainform.EmulatorPaused; var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame; var rollBackFrame = TasView.FirstSelectedIndex.Value; @@ -480,7 +480,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -494,7 +494,7 @@ namespace BizHawk.Client.EmuHawk { if (TasView.AnyRowsSelected) { - bool wasPaused = GlobalWin.MainForm.EmulatorPaused; + bool wasPaused = Mainform.EmulatorPaused; bool needsToRollback = !(TasView.FirstSelectedIndex > Emulator.Frame); int rollBackFrame = TasView.FirstSelectedIndex.Value; @@ -514,7 +514,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -528,7 +528,7 @@ namespace BizHawk.Client.EmuHawk { if (TasView.AnyRowsSelected) { - var wasPaused = GlobalWin.MainForm.EmulatorPaused; + var wasPaused = Mainform.EmulatorPaused; var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame; var rollBackFrame = TasView.FirstSelectedIndex.Value; if (rollBackFrame >= CurrentTasMovie.InputLogLength) @@ -549,7 +549,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -563,7 +563,7 @@ namespace BizHawk.Client.EmuHawk { if (TasView.AnyRowsSelected) { - var wasPaused = GlobalWin.MainForm.EmulatorPaused; + var wasPaused = Mainform.EmulatorPaused; var framesToInsert = TasView.SelectedRows.ToList(); var insertionFrame = Math.Min(TasView.LastSelectedIndex.Value + 1, CurrentTasMovie.InputLogLength); var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame; @@ -583,7 +583,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -595,7 +595,7 @@ namespace BizHawk.Client.EmuHawk private void InsertFrameMenuItem_Click(object sender, EventArgs e) { - var wasPaused = GlobalWin.MainForm.EmulatorPaused; + var wasPaused = Mainform.EmulatorPaused; var insertionFrame = TasView.AnyRowsSelected ? TasView.FirstSelectedIndex.Value : 0; var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame; @@ -610,7 +610,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -621,7 +621,7 @@ namespace BizHawk.Client.EmuHawk private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) { - bool wasPaused = GlobalWin.MainForm.EmulatorPaused; + bool wasPaused = Mainform.EmulatorPaused; int insertionFrame = TasView.AnyRowsSelected ? TasView.FirstSelectedIndex.Value : 0; bool needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame; @@ -641,7 +641,7 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } } else @@ -720,7 +720,7 @@ namespace BizHawk.Client.EmuHawk int goToFrame = CurrentTasMovie.TasStateManager.LastEmulatedFrame; do { - GlobalWin.MainForm.FrameAdvance(); + Mainform.FrameAdvance(); if (CurrentTasMovie.TasStateManager.HasState(Emulator.Frame)) { @@ -936,7 +936,7 @@ namespace BizHawk.Client.EmuHawk { new MovieHeaderEditor(CurrentTasMovie) { - Owner = GlobalWin.MainForm, + Owner = Mainform, Location = this.ChildPointToScreen(TasView) }.Show(); UpdateChangesIndicator(); @@ -946,7 +946,7 @@ namespace BizHawk.Client.EmuHawk { new StateHistorySettingsForm(CurrentTasMovie.TasStateManager.Settings) { - Owner = GlobalWin.MainForm, + Owner = Mainform, Location = this.ChildPointToScreen(TasView), Statable = this.StatableEmulator }.ShowDialog(); @@ -1231,13 +1231,13 @@ namespace BizHawk.Client.EmuHawk StartFromNowSeparator.Visible =StartNewProjectFromNowMenuItem.Visible || StartANewProjectFromSaveRamMenuItem.Visible; RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView.SelectedRows.Contains(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). - CancelSeekContextMenuItem.Enabled = GlobalWin.MainForm.PauseOnFrame.HasValue; + CancelSeekContextMenuItem.Enabled = Mainform.PauseOnFrame.HasValue; BranchContextMenuItem.Visible = TasView.CurrentCell.RowIndex == Emulator.Frame; } private void CancelSeekContextMenuItem_Click(object sender, EventArgs e) { - GlobalWin.MainForm.PauseOnFrame = null; + Mainform.PauseOnFrame = null; RefreshTasView(); } @@ -1255,7 +1255,7 @@ namespace BizHawk.Client.EmuHawk TasMovie newProject = CurrentTasMovie.ConvertToSavestateAnchoredMovie( index, (byte[])StatableEmulator.SaveStateBinary().Clone()); - GlobalWin.MainForm.PauseEmulator(); + Mainform.PauseEmulator(); LoadFile(new FileInfo(newProject.Filename), true); } } @@ -1270,7 +1270,7 @@ namespace BizHawk.Client.EmuHawk TasMovie newProject = CurrentTasMovie.ConvertToSaveRamAnchoredMovie( SaveRamEmulator.CloneSaveRam()); - GlobalWin.MainForm.PauseEmulator(); + Mainform.PauseEmulator(); LoadFile(new FileInfo(newProject.Filename), true); } } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs index f7186c1239..63232eb129 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Navigation.cs @@ -43,10 +43,10 @@ namespace BizHawk.Client.EmuHawk { if (frame == Emulator.Frame + 1) // We are at the end of the movie and advancing one frame, therefore we are recording, simply emulate a frame { - bool wasPaused = GlobalWin.MainForm.EmulatorPaused; - GlobalWin.MainForm.FrameAdvance(); + bool wasPaused = Mainform.EmulatorPaused; + Mainform.FrameAdvance(); if (!wasPaused) - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } else { diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 305aceb5d4..453e4bf494 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -110,10 +110,15 @@ namespace BizHawk.Client.EmuHawk get { return Global.MovieSession.Movie as TasMovie; } } + public MainForm Mainform + { + get { return GlobalWin.MainForm; } + } + /// /// Separates "restore last position" logic from seeking caused by navigation. /// TASEditor never kills LastPositionFrame, and it only pauses on it, - /// if it hasn't been greenzoned beforehand and middle mouse button was pressed + /// if it hasn't been greenzoned beforehand and middle mouse button was pressed. /// public int LastPositionFrame { get; set; } @@ -250,7 +255,7 @@ namespace BizHawk.Client.EmuHawk } int diff = Global.Emulator.Frame - _seekStartFrame.Value; - int unit = GlobalWin.MainForm.PauseOnFrame.Value - _seekStartFrame.Value; + int unit = Mainform.PauseOnFrame.Value - _seekStartFrame.Value; double progress = 0; if (diff != 0 && unit != 0) @@ -509,16 +514,16 @@ namespace BizHawk.Client.EmuHawk private void EngageTastudio() { - GlobalWin.MainForm.PauseOnFrame = null; + Mainform.PauseOnFrame = null; GlobalWin.OSD.AddMessage("TAStudio engaged"); SetTasMovieCallbacks(); SetTextProperty(); - GlobalWin.MainForm.PauseEmulator(); - GlobalWin.MainForm.RelinquishControl(this); + Mainform.PauseEmulator(); + Mainform.RelinquishControl(this); _originalEndAction = Global.Config.MovieEndAction; - GlobalWin.MainForm.ClearRewindData(); + Mainform.ClearRewindData(); Global.Config.MovieEndAction = MovieEndAction.Record; - GlobalWin.MainForm.SetMainformMovieInfo(); + Mainform.SetMainformMovieInfo(); Global.MovieSession.ReadOnly = true; } @@ -652,7 +657,7 @@ namespace BizHawk.Client.EmuHawk if (movie == null) movie = CurrentTasMovie; SetTasMovieCallbacks(movie as TasMovie); - bool result = GlobalWin.MainForm.StartNewMovie(movie, record); + bool result = Mainform.StartNewMovie(movie, record); TastudioPlayMode(); _initializing = false; @@ -704,17 +709,17 @@ namespace BizHawk.Client.EmuHawk private void TastudioStopMovie() { Global.MovieSession.StopMovie(false); - GlobalWin.MainForm.SetMainformMovieInfo(); + Mainform.SetMainformMovieInfo(); } private void DisengageTastudio() { - GlobalWin.MainForm.PauseOnFrame = null; + Mainform.PauseOnFrame = null; GlobalWin.OSD.AddMessage("TAStudio disengaged"); Global.MovieSession.Movie = MovieService.DefaultInstance; - GlobalWin.MainForm.TakeBackControl(); + Mainform.TakeBackControl(); Global.Config.MovieEndAction = _originalEndAction; - GlobalWin.MainForm.SetMainformMovieInfo(); + Mainform.SetMainformMovieInfo(); // Do not keep TAStudio's disk save states. //if (Directory.Exists(statesPath)) Directory.Delete(statesPath, true); //TODO - do we need to dispose something here instead? @@ -801,7 +806,7 @@ namespace BizHawk.Client.EmuHawk if (_autoRestorePaused.HasValue && !_autoRestorePaused.Value) { // this happens when we're holding the left button while unpaused - view scrolls down, new input gets drawn, seek pauses - GlobalWin.MainForm.UnpauseEmulator(); + Mainform.UnpauseEmulator(); } _autoRestorePaused = null; } @@ -824,7 +829,7 @@ namespace BizHawk.Client.EmuHawk // frame == Emualtor.Frame when frame == 0 if (frame > Emulator.Frame) { - if (GlobalWin.MainForm.EmulatorPaused || GlobalWin.MainForm.IsSeeking) // make seek frame keep up with emulation on fast scrolls + if (Mainform.EmulatorPaused || Mainform.IsSeeking) // make seek frame keep up with emulation on fast scrolls { StartSeeking(frame); } @@ -866,7 +871,7 @@ namespace BizHawk.Client.EmuHawk public void TogglePause() { - GlobalWin.MainForm.TogglePause(); + Mainform.TogglePause(); } private void SetSplicer() From 9e8c152ddeb48df8e1aaabb994370cc51e82f964 Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 29 Aug 2016 21:18:55 +0300 Subject: [PATCH 05/12] tastudio history: fix bug where undoing the movie extension (caused by drawing beyond the movie length) would swallow all the movie --- BizHawk.Client.Common/movie/tasproj/TasMovie.History.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.History.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.History.cs index d59a8b82e5..1b00ba1d3c 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.History.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.History.cs @@ -335,6 +335,8 @@ namespace BizHawk.Client.Common var minuend = Math.Min(lastFrame + 1, movie.InputLogLength); if (firstFrame > minuend) undoLength = minuend; + else if (firstFrame == minuend) + undoLength = Math.Max(lastFrame + 1, movie.InputLogLength) - firstFrame; else undoLength = minuend - firstFrame; From d1ac02ebb380ea92262db41f8b641e5e01dd439f Mon Sep 17 00:00:00 2001 From: feos Date: Wed, 31 Aug 2016 21:24:09 +0300 Subject: [PATCH 06/12] tracer: more fixes to bugs found by actual usage --- BizHawk.Client.EmuHawk/tools/TraceLogger.cs | 26 ++++++++++++++------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TraceLogger.cs b/BizHawk.Client.EmuHawk/tools/TraceLogger.cs index 89e16166fc..d38dce1cbe 100644 --- a/BizHawk.Client.EmuHawk/tools/TraceLogger.cs +++ b/BizHawk.Client.EmuHawk/tools/TraceLogger.cs @@ -229,7 +229,7 @@ namespace BizHawk.Client.EmuHawk private void SetTracerBoxTitle() { - if (Tracer.Enabled) + if (LoggingEnabled.Checked) { if (ToFileRadio.Checked) { @@ -393,10 +393,17 @@ namespace BizHawk.Client.EmuHawk //Tracer.Enabled = LoggingEnabled.Checked; SetTracerBoxTitle(); - if (LoggingEnabled.Checked && LogFile != null) + if (LogFile != null && ToFileRadio.Checked) { - StartLogFile(); OpenLogFile.Enabled = true; + if (LoggingEnabled.Checked) + { + StartLogFile(); + } + else + { + CloseFile(); + } } } @@ -433,6 +440,7 @@ namespace BizHawk.Client.EmuHawk { LogFile = file; FileBox.Text = LogFile.FullName; + _segmentCount = 0; } } @@ -450,12 +458,14 @@ namespace BizHawk.Client.EmuHawk LogFile.Directory.Create(); } - if (LogFile.Exists) - { - LogFile.Delete(); - } + // never delete, especially from ticking checkboxes + // append = false is enough, and even that only happens when actually enabling logging + //if (LogFile.Exists) + //{ + // LogFile.Delete(); + //} - using (LogFile.Create()) { } + //using (LogFile.Create()) { } // created automatically FileBox.Text = LogFile.FullName; From 597b46b183640b45cff381b39d5b204382d75088 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 1 Sep 2016 08:26:43 -0400 Subject: [PATCH 07/12] slight fix to release build script --- Dist/BuildGithubReleaseBranch.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dist/BuildGithubReleaseBranch.bat b/Dist/BuildGithubReleaseBranch.bat index 0e28bdf291..4bf64cf3c8 100644 --- a/Dist/BuildGithubReleaseBranch.bat +++ b/Dist/BuildGithubReleaseBranch.bat @@ -12,7 +12,7 @@ mkdir %WORKDIR% rem http://stackoverflow.com/questions/13750182/git-how-to-archive-from-remote-repository-directly cd %WORKDIR% -git clone --depth=1 --single-branch --branch Release http://github.com/TASVideos/BizHawk.git . +git clone --depth=1 --single-branch --branch release http://github.com/TASVideos/BizHawk.git . rem use updated build scripts copy /y ..\BuildAndPackage_Release.bat dist From 29b78f559bb02da89c37a839bc2b58b1d7837036 Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 1 Sep 2016 21:22:57 +0300 Subject: [PATCH 08/12] build scripts: account for lua move, "release" branch spelling --- Dist/BuildAndPackage.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dist/BuildAndPackage.bat b/Dist/BuildAndPackage.bat index c64992180c..3696b9a5b5 100644 --- a/Dist/BuildAndPackage.bat +++ b/Dist/BuildAndPackage.bat @@ -44,7 +44,7 @@ rmdir /s /q temp\lua rmdir /s /q temp\firmware rmdir /s /q gitsucks -git --git-dir ../.git archive --format zip --output lua.zip master output/Lua +git --git-dir ../.git archive --format zip --output lua.zip master Assets/Lua git --git-dir ../.git archive --format zip --output firmware.zip master output/Firmware rem Getting externaltools example from my repo rem I once talked about a dedicated repo for external tools, think about moving the exemple to it it it happend @@ -54,7 +54,7 @@ rmdir /s /q HelloWorld_BizHawkTool unzip lua.zip -d gitsucks rem del lua.zip -move gitsucks\output\Lua temp +move gitsucks\Assets\Lua temp unzip Firmware.zip -d gitsucks rem del firmware.zip move gitsucks\output\Firmware temp From 4b96378a56e00a346bcaf7ced8f736ecc29704e8 Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 1 Sep 2016 21:53:24 +0300 Subject: [PATCH 09/12] changelog --- Dist/changelog.txt | 203 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 202 insertions(+), 1 deletion(-) diff --git a/Dist/changelog.txt b/Dist/changelog.txt index 1715894afa..1624cc1834 100644 --- a/Dist/changelog.txt +++ b/Dist/changelog.txt @@ -1,5 +1,206 @@ ========================================= -1.11.5 (in progress) +1.11.7 +========================================= + +* NesHawk +** Numerous accuracy improvements, passes many more accuracy tests now +*** See [EmulatorResources/NESAccuracyTests|Accuracy Tests] for more details +** Fix Micro Machines +** Fix Time Lord +** Fix Saint Seiya +** Correctly boot all the HVC-SNROM Board ROMs now. +** Support UNIF DripGame http://www.qmtpro.com/~nes/drip/ +** Fix shaking in Little Ninja Bros (E) +** Support SNES controllers +** VRC2 - only support V\H miorring - fixes wai wai world issue +** Mapper 011 - fix mirroring on some boards + +* Atari 2600 +** Major core overhaul that includes many accuracy improvements, bug fixes, sound improvmeents, timing improvements, and game compatibility +** Fixes compumate mapper +** implement mapper m4A50 +** Add sega mapper mod +** Pick the correct mapper for Tapper and Congo Bongo based off SHA1 hash + +* Saturn +** Trace Logger support + +* PSX +** Trace Logger support +** Patch for "Fantastic Pinball Kyutenkai" lockup (not likely to affect sync but could in principle) + +* N64 +** Trace Logger support (Interpreter/Pure Interpreter core type only) +** Implement memory execute callbacks (Interpreter/Pure Interpreter core type only) +** Fix crash & memory leak when opening hex editor with the N64 core loaded + +* SNES +** Fix crash when advancing after tracer was disabled +** System Bus map has been extended to read mapped ROM space +** Fix SNES trace logging to not lose information + +* SMSHawk +** Overscan display option + +* Genesis +** Improve disassembler +** Fix bug in genesis z80 CDL that made addresses in mirrored z80 ram region crash +** Output and input hex values in Settings + +* GBA +** Add SRAM memdomain to both VBANext and mGBA +** mGBA - fix bug where hard reset caused memorydomains to get permanently wrecked + +* Coleco +** Add Venture to list of no skips + +* PCEHawk +** Don't crash when loading PCE-CD and SGX games +** Fix PCE-CD virtual pads + +* Wonderswan +** Support settings to change colors + +* EmuHawk +** Make direct3d9 prereq check non-fatal and make d3d display method initialization fail non-fatal, falling back to gdi+ +** D3D display method - survive ctrl+alt+del (fix #522) +** Fix flashes of garbage while changing vsync toggle (includes when fast-forwarding) on D3D display method +** Fix crashes when sending fullscreen windows to other monitors sometimes +** Fix deleting recent roms when missing +** Fix #615 - Garbage on the screen when starting paused with d3d +** Don't allow user to add more then 2 GB/GBC ROMs into the Bundler (#472) +** Fix the Apple IIe being labeled as PlayStation in the title +** Ram Tools - fix usability issues with negative numbers (#669) +** Ram Search - fix for unhandled exception when entering . in to the specific address box +** Allow independent sound volume control during Fast-Forward and Rewind +** Lua +*** Fix #595 - movie.getinput() exception, and movie.mode() confusion +*** Remove background color parameter from gui.text() function +*** Lua text - display trailing spaces +*** Fix regressions in lua's support for UTF-8 strings +*** Add gui.DrawFinish() which will let you choose when to finish drawing; and add optional argument to gui.DrawNew which when set to false lets you keep it from being cleared +** Movie subtitles +*** Trim trailing spaces +*** Sort by frame and then by Y pos (to properly order multiline subs) +*** Concat multilines (optionally) on export +*** Option to skip color tag on export +** Tastudio +*** Recording mode (works with TAStudio checkbox and global ReadOnly hotkey) +*** Autosave and backup features +*** Option to set the gap between states to be saved to .tasproj +*** Overhaul of seek and restore logic: navigation seeking no longer resets Restore frame +*** Make < and > PlaybackBox buttons act identically to FrameAdvance and Rewind hotkeys +*** Properly set input while unpaused +*** Fix all errors related to doing actions while seeking and saving +*** Replace Saving progressbar with hourglass cursor and status bar report +*** Fix N64 crash that happened when capturing states +*** Fix #515 again - TAStudio ignores ClientSettings.json +*** Allow 2 more digits for FramesPrompt +*** Fix #597 - Selecting a lot of frames + Copying throws an error +*** Fix crash when pasting input beyond movie length +*** Set SeekingCutoffInterval to VisibleRows +*** Set ScrollSpeed to 6 +*** Fix rerecord counting +*** Ability to load .tasproj with corrupted GreenZone +*** Hide more columns by default (GBA, PSX) +*** Optimize column width +*** Ignore InputRoll hotkeys and numeric branch hotkeys during float editing mode +*** bk2 export: stop endlessly appending extensions +*** Stop recording marker history edits to history +*** Unpausing with the Pause hotkey ignores seek frame +*** Make Rewind hotkey work the same as outside TAStudio (step'n'run) +*** "Esc" key cancels seeking +*** Global hotkeys for AutoRestore, TurboSeek, FollowCursor, Insert/Delete/Clone/Clear +*** Option to trigger AutoRestore on MouseDown +*** Show user text instead of timestamp in BranchView +*** Fix #672 - Not Showing Analog Up, Down, Left, Right for N64 +*** Don't pass Ctrl+C hotkey to MainForm +*** Stop copying nothing on Cut command +*** Stop seeking when movie stops +*** Fix to how Undo/Redo works with recording frames +** Trace Logger +*** Log file segmentation +*** Spacing unification for all cores +*** Fix GB trace logger +*** Fix logging to window and saving to file +*** File->Save Log menu item in Trace Logger window +*** Fix an unhandled exception when saving a log from the window +*** Fixed the bug where if a tracelog line contains more than one "[", everything after the second [ will be mistakenly thrown out +** Debugger +*** Add address mask setting for breakpoints +*** Indicate breakpoint hit +** Code-Data Logger +*** Add auto-start and auto-save to CDL +*** Fix copypaste bug in GB for some games with large cartram +*** support GB link +** VirtualPads +*** Fix polar coord when center is non-zero +*** Fix automation of virtualpad analogsticks from movie playback + +========================================= +1.11.6 +========================================= + +* Genesis +** Disassembler support +** Trace Logger support +** Sprite Layer toggles, and custom backdrop color +** Add "M68K BUS" and "S68K BUS" domains +** Capture Sega CD flag in movie files +** Enable low-pass filter + +* Atari2600 +** Double and quad size players are now correctly delayed an extra pixel. +** Added an R to the State output to indicate when the RDY signal is false. +** Use the RDY flag to halt the CPU instead of a loop in the TIA. + +* mGBA +** Capture SRAM in savestates, ALL PREVIOUS SAVESTATES are now incompatible +** Update to the latest mGBA +** Layer toggle + +* Saturn +** fix bug in GLManager causing yabause in opengl mode to not work unless frameadvancing + +* TI-83 +** Implement Trace Logger + +* Colecovision +** Implement Trace Logger + +* EmuHawk +** Fix ramwatch crashing bug involving core reboots and watchlist hanging on to stale emulator instances +** Hex Editor - fix exception when pressing "Ok" on the "Go to Address" input prompt in the Hex Editor with an empty string +** GameShark tool - layout improvements +** Make Screenshot Raw to Clipboard and Screenshot Client to Clipboard into configurable hotkeys instead of hardcoded shortcut keys in the menu items +** Cheats - comparison type column +** Lua +*** add emu.disassemble(uint pc, string name) +*** Set file watchers on lua session autoload +*** Better auto-complete for Sublime Text 2 +*** Call the lua loadstate callback before redrawing the screen and other updates +** Trace Logger +*** Capture headers in log files +*** Separate Disassmbly and Registers in separate columns +*** Remember column widths +*** Add an Open button +*** Use .log extention (allows extension based user syntax highlight) +** Debugger +*** Don't update when unpaused. only update PC when we really need it. +*** Add a Run button +*** Registers - format reg names on launch, smarter spacing. +*** Return address in hex when copying. +*** Fix how Seek To determines the PC register +*** Update when maximized +** Multi-disk bundler +*** Fix ROM path generation +*** Add a remove button +** TAStudio +*** Fix some savestate bugs +*** Don't allow saving while saving. + +========================================= +1.11.5 ========================================= *GBA From 869f7519f9eabf9e2d4c73b194450d5b99e8587e Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 1 Sep 2016 22:49:56 +0300 Subject: [PATCH 10/12] proper date and version --- Version/VersionInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Version/VersionInfo.cs b/Version/VersionInfo.cs index b81beca34f..4c698645eb 100644 --- a/Version/VersionInfo.cs +++ b/Version/VersionInfo.cs @@ -1,8 +1,8 @@ static class VersionInfo { - public const string MAINVERSION = "1.11.6"; // Use numbers only or the new version notification won't work - public static readonly string RELEASEDATE = "March 7, 2016"; - public static readonly bool DeveloperBuild = true; + public const string MAINVERSION = "1.11.7"; // Use numbers only or the new version notification won't work + public static readonly string RELEASEDATE = "September 1, 2016"; + public static readonly bool DeveloperBuild = false; public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; public static string GetEmuVersion() From 89d857aee66f62dbd21788cf4a2f205c83540f98 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 2 Sep 2016 11:48:01 -0400 Subject: [PATCH 11/12] put back DeveloperBuild = true --- Version/VersionInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Version/VersionInfo.cs b/Version/VersionInfo.cs index 4c698645eb..63920f73d6 100644 --- a/Version/VersionInfo.cs +++ b/Version/VersionInfo.cs @@ -2,7 +2,7 @@ static class VersionInfo { public const string MAINVERSION = "1.11.7"; // Use numbers only or the new version notification won't work public static readonly string RELEASEDATE = "September 1, 2016"; - public static readonly bool DeveloperBuild = false; + public static readonly bool DeveloperBuild = true; public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; public static string GetEmuVersion() From 197f577ecf422b215f5a96826496f65c794ecd09 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 2 Sep 2016 12:25:20 -0400 Subject: [PATCH 12/12] Add alyosha as a neshawk author in CoreAttributes --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index 7d84c76b43..9d025046f0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { [CoreAttributes( "NesHawk", - "zeromus, natt, adelikat", + "zeromus, natt, alyosha, adelikat", isPorted: false, isReleased: true )]