From cd46188efe312c15d5d8c2c5f727030cd73307b4 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 21:24:09 -0700 Subject: [PATCH 01/11] Remove Unused Variable UpdateFrame can never be true, so all of this code is pointless. --- BizHawk.Client.EmuHawk/MainForm.cs | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 890f896e00..b600429f96 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -612,7 +612,6 @@ namespace BizHawk.Client.EmuHawk public bool FastForward = false; public bool TurboFastForward = false; public bool RestoreReadWriteOnStop = false; - public bool UpdateFrame = false; private int? _pauseOnFrame; public int? PauseOnFrame // If set, upon completion of this frame, the client wil pause @@ -2729,12 +2728,7 @@ namespace BizHawk.Client.EmuHawk } bool isRewinding = suppressCaptureRewind = Rewind(ref runFrame, currentTimestamp); - - if (UpdateFrame) - { - runFrame = true; - } - + float atten = Global.Config.SoundVolume / 100.0f; if (!Global.Config.SoundEnabledNormal) atten = 0; @@ -2908,11 +2902,6 @@ namespace BizHawk.Client.EmuHawk //PressRewind = false; } - if (UpdateFrame) - { - UpdateFrame = false; - } - GlobalWin.Sound.UpdateSound(atten); } From 49d7f79ce5f49c3fdeb4453aeba709bf61fe158f Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 21:48:35 -0700 Subject: [PATCH 02/11] Reduce redundant attenuation code in main loop This simplifies the code for setting the attenuation by setting it to 0, and moving all the checks that change it next to each other. --- BizHawk.Client.EmuHawk/MainForm.cs | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index b600429f96..9a0d7477b5 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2729,9 +2729,7 @@ namespace BizHawk.Client.EmuHawk bool isRewinding = suppressCaptureRewind = Rewind(ref runFrame, currentTimestamp); - float atten = Global.Config.SoundVolume / 100.0f; - if (!Global.Config.SoundEnabledNormal) - atten = 0; + float atten = 0; var coreskipaudio = false; if (runFrame || force) @@ -2803,12 +2801,11 @@ namespace BizHawk.Client.EmuHawk } CaptureRewind(suppressCaptureRewind); + + if (Global.Config.SoundEnabledNormal) + atten = Global.Config.SoundVolume / 100.0f; - if (!_runloopFrameadvance) - { - - } - else if (!Global.Config.MuteFrameAdvance) + if (_runloopFrameadvance && !Global.Config.MuteFrameAdvance) { atten = 0; } @@ -2891,10 +2888,6 @@ namespace BizHawk.Client.EmuHawk } } } - else - { - atten = 0; - } if (Global.ClientControls["Rewind"] || PressRewind) { From d3547b15d46d00bc1cb7b0a86c6174a705f45a64 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 22:02:38 -0700 Subject: [PATCH 03/11] Fix bug with Mute Frame Advance It will actually mute when you hold the Frame Advance button. Previously, the setting did nothing. --- BizHawk.Client.EmuHawk/MainForm.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 9a0d7477b5..b5b8387de2 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2691,12 +2691,12 @@ namespace BizHawk.Client.EmuHawk if (Global.ClientControls["Frame Advance"] || PressFrameAdvance || HoldFrameAdvance) { + _runloopFrameadvance = true; // handle the initial trigger of a frame advance if (_frameAdvanceTimestamp == 0) { PauseEmulator(); runFrame = true; - _runloopFrameadvance = true; _frameAdvanceTimestamp = currentTimestamp; } else @@ -2804,8 +2804,8 @@ namespace BizHawk.Client.EmuHawk if (Global.Config.SoundEnabledNormal) atten = Global.Config.SoundVolume / 100.0f; - - if (_runloopFrameadvance && !Global.Config.MuteFrameAdvance) + + if (_runloopFrameadvance && Global.Config.MuteFrameAdvance) { atten = 0; } From 4aa64b1f34d5d835280576649b11694a717b1420 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 22:37:26 -0700 Subject: [PATCH 04/11] Refactor atten variable checks Cleans up volume checks, makes it a bit easier to follow by removing negations. --- BizHawk.Client.EmuHawk/MainForm.cs | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index b5b8387de2..342f1f3f84 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2801,22 +2801,27 @@ namespace BizHawk.Client.EmuHawk } CaptureRewind(suppressCaptureRewind); - + + // Set volume, if enabled if (Global.Config.SoundEnabledNormal) + { atten = Global.Config.SoundVolume / 100.0f; - - if (_runloopFrameadvance && Global.Config.MuteFrameAdvance) - { - atten = 0; - } - if (isFastForwarding || IsTurboing || isRewinding) - { - atten *= Global.Config.SoundVolumeRWFF / 100.0f; - if (!Global.Config.SoundEnabledRWFF) + if (isFastForwarding || IsTurboing || isRewinding) + { + if (Global.Config.SoundEnabledRWFF) + atten *= Global.Config.SoundVolumeRWFF / 100.0f; + else + atten = 0; + } + + // Mute if using Frame Advance/Frame Progress + if (_runloopFrameadvance && Global.Config.MuteFrameAdvance) + { atten = 0; + } } - + Global.MovieSession.HandleMovieOnFrameLoop(); coreskipaudio = IsTurboing && _currAviWriter == null; From 4bd660894037edb3d4016c7c3616559a19a0dab4 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 22:40:14 -0700 Subject: [PATCH 05/11] Allow Fast Forward Volume to be Louder than Normal Volume Allows FF Volume to override the normal volume, instead of multiplying it (which could only decrease the volume). --- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 342f1f3f84..df7c448a1d 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2810,7 +2810,7 @@ namespace BizHawk.Client.EmuHawk if (isFastForwarding || IsTurboing || isRewinding) { if (Global.Config.SoundEnabledRWFF) - atten *= Global.Config.SoundVolumeRWFF / 100.0f; + atten = Global.Config.SoundVolumeRWFF / 100.0f; else atten = 0; } From 68a362c8ffd2ba46e414cf36a34a3898dec536d7 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 23:14:18 -0700 Subject: [PATCH 06/11] Fix subtle bug in renderSound Bug as follows: renderSound was true when any of the following: _currAviWriter!=null&&_currAviWriter.UsesAudio !IsTurboing || _currAviWriter!=null So, if _currAviWriter!=null, it didn't matter if it has the UsesAudio flag on or not. --- BizHawk.Client.EmuHawk/MainForm.cs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index df7c448a1d..db275970e3 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2731,7 +2731,6 @@ namespace BizHawk.Client.EmuHawk float atten = 0; - var coreskipaudio = false; if (runFrame || force) { var isFastForwarding = Global.ClientControls["Fast Forward"] || IsTurboing; @@ -2824,19 +2823,12 @@ namespace BizHawk.Client.EmuHawk Global.MovieSession.HandleMovieOnFrameLoop(); - coreskipaudio = IsTurboing && _currAviWriter == null; - //why not skip audio if the user doesnt want sound - if (!Global.Config.SoundEnabled) - coreskipaudio = true; + bool renderSound = Global.Config.SoundEnabled || !IsTurboing; + renderSound |= (_currAviWriter != null && _currAviWriter.UsesAudio); - { - bool render = !_throttle.skipnextframe; - bool renderSound = !coreskipaudio; - if (_currAviWriter != null && _currAviWriter.UsesVideo) render = true; - if (_currAviWriter != null && _currAviWriter.UsesAudio) renderSound = true; - Global.Emulator.FrameAdvance(render, renderSound); - } + bool render = !_throttle.skipnextframe || (_currAviWriter != null && _currAviWriter.UsesVideo); + Global.Emulator.FrameAdvance(render, renderSound); Global.MovieSession.HandleMovieAfterFrameLoop(); From 1b8d32e82f3d5a0830fc474ceae378d777307a53 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Thu, 29 Sep 2016 00:04:39 -0700 Subject: [PATCH 07/11] Refactor the FPS Counter to it's own function 1) Takes the block of code that calculates the string to print and gives it it's own function. 2) Stores a static display variable. Fixes incorrect FPS while fast forwarding as a result. 3) Reduces updates per second to 12 from 16. --- BizHawk.Client.EmuHawk/MainForm.cs | 85 +++++++++++++++++------------- 1 file changed, 47 insertions(+), 38 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index db275970e3..07dfa6a82d 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1337,8 +1337,9 @@ namespace BizHawk.Client.EmuHawk private long _frameAdvanceTimestamp; private long _frameRewindTimestamp; private double _runloopLastFps; + private double _runloopDisplayFps; private bool _runloopFrameadvance; - private double _runloopUpdatesPerSecond = 16.0; + private double _runloopUpdatesPerSecond = 12.0; private double _runloopFpsSmoothing = 8.0; private long _runloopSecond; private bool _runloopLastFf; @@ -1405,7 +1406,7 @@ namespace BizHawk.Client.EmuHawk //we need to display FPS somewhere, in this case if (Global.Config.DispSpeedupFeatures == 0) { - str = str + string.Format("({0} fps) -", _runloopLastFps); + str = str + string.Format("({0:0} fps) -", _runloopDisplayFps); } if (Global.Emulator.IsNull()) @@ -2762,42 +2763,7 @@ namespace BizHawk.Client.EmuHawk _runloopLastFps+= _runloopFpsSmoothing; - if ((currentTimestamp - _runloopSecond) * _runloopUpdatesPerSecond >= Stopwatch.Frequency) - { - _runloopLastFps = Stopwatch.Frequency * (_runloopLastFps / (Stopwatch.Frequency + (currentTimestamp - _runloopSecond) * _runloopFpsSmoothing)); - _runloopSecond = currentTimestamp; - updateFpsString = true; - } - - if (updateFpsString) - { - var fps_string = string.Format("{0:0} fps", _runloopLastFps); - if (isRewinding) - { - if (IsTurboing || isFastForwarding) - { - fps_string += " <<<<"; - } - else - { - fps_string += " <<"; - } - } - else if (IsTurboing) - { - fps_string += " >>>>"; - } - else if (isFastForwarding) - { - fps_string += " >>"; - } - - GlobalWin.OSD.FPS = fps_string; - - //need to refresh window caption in this case - if (Global.Config.DispSpeedupFeatures == 0) - SetWindowText(); - } + UpdateFpsDisplay(currentTimestamp, updateFpsString, isRewinding, isFastForwarding); CaptureRewind(suppressCaptureRewind); @@ -2830,6 +2796,7 @@ namespace BizHawk.Client.EmuHawk bool render = !_throttle.skipnextframe || (_currAviWriter != null && _currAviWriter.UsesVideo); Global.Emulator.FrameAdvance(render, renderSound); + Global.MovieSession.HandleMovieAfterFrameLoop(); Global.CheatList.Pulse(); @@ -2895,6 +2862,48 @@ namespace BizHawk.Client.EmuHawk GlobalWin.Sound.UpdateSound(atten); } + private void UpdateFpsDisplay(long currentTimestamp, bool updateFpsString, bool isRewinding, bool isFastForwarding) + { + var timeDiff = (currentTimestamp - _runloopSecond); + if ( timeDiff * _runloopUpdatesPerSecond >= Stopwatch.Frequency) + { + _runloopLastFps = Stopwatch.Frequency * (_runloopLastFps / (Stopwatch.Frequency + timeDiff * _runloopFpsSmoothing)); + _runloopSecond = currentTimestamp; + _runloopDisplayFps = _runloopLastFps; + updateFpsString = true; + } + + if (updateFpsString) + { + var fps_string = string.Format("{0:0} fps", _runloopDisplayFps); + if (isRewinding) + { + if (IsTurboing || isFastForwarding) + { + fps_string += " <<<<"; + } + else + { + fps_string += " <<"; + } + } + else if (IsTurboing) + { + fps_string += " >>>>"; + } + else if (isFastForwarding) + { + fps_string += " >>"; + } + + GlobalWin.OSD.FPS = fps_string; + + //need to refresh window caption in this case + if (Global.Config.DispSpeedupFeatures == 0) + SetWindowText(); + } + } + #endregion #region AVI Stuff From 151c88feb82f91b0fcaea1d59b3c94cee2a21a77 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Thu, 29 Sep 2016 00:18:55 -0700 Subject: [PATCH 08/11] Removes busy-wait This sleep doesn't appear to be needed. It's just busy waiting. We save CPU cycles by not doing this. --- BizHawk.Client.EmuHawk/MainForm.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 07dfa6a82d..08ae92eccf 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -534,8 +534,6 @@ namespace BizHawk.Client.EmuHawk { break; } - - Thread.Sleep(0); } Shutdown(); From 9eafac83d43d9e5d06c96358c652619c925317f3 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Thu, 29 Sep 2016 00:57:32 -0700 Subject: [PATCH 09/11] Improve Absolute Zero Mode by 15-30% Short-circuits out of the Render function in the main program loop. With an NES game running at 8500 FPS before, this brings it to 9700 FPS. With no game loaded, running at 45k FPS, this brings it to 60k FPS. --- BizHawk.Client.EmuHawk/MainForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 08ae92eccf..95ef63e6eb 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1906,6 +1906,10 @@ namespace BizHawk.Client.EmuHawk private void Render() { + if (Global.Config.DispSpeedupFeatures == 0) + { + return; + } //private Size _lastVideoSize = new Size(-1, -1), _lastVirtualSize = new Size(-1, -1); var video = Global.Emulator.VideoProvider(); //bool change = false; From 129fdf2a686f8e153cb8f03ee4b400ee1bfcb31d Mon Sep 17 00:00:00 2001 From: Meerkov Date: Thu, 29 Sep 2016 01:10:23 -0700 Subject: [PATCH 10/11] Revert "Allow Fast Forward Volume to be Louder than Normal Volume" This reverts commit 4bd660894037edb3d4016c7c3616559a19a0dab4. --- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 95ef63e6eb..6730c61d2e 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2777,7 +2777,7 @@ namespace BizHawk.Client.EmuHawk if (isFastForwarding || IsTurboing || isRewinding) { if (Global.Config.SoundEnabledRWFF) - atten = Global.Config.SoundVolumeRWFF / 100.0f; + atten *= Global.Config.SoundVolumeRWFF / 100.0f; else atten = 0; } From 6a9510c9ae9e604938057226ebc4d6fb2956db28 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Thu, 29 Sep 2016 01:19:25 -0700 Subject: [PATCH 11/11] Re-enable Thread Sleep when not in Absolute Zero mode --- BizHawk.Client.EmuHawk/MainForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 6730c61d2e..a871fa8bc4 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -534,6 +534,10 @@ namespace BizHawk.Client.EmuHawk { break; } + if (Global.Config.DispSpeedupFeatures != 0) + { + Thread.Sleep(0); + } } Shutdown();