From 91c5eda52682f83955b088079c8060057dac15c4 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 21:04:53 -0700 Subject: [PATCH] Update FPS Counter Changes the FPS counter to fade. Why: FPS counter has a bug where it doesn't normalize the frame count to the time passed since last update. This can result in an error of 1 FPS. When running at 30 FPS, that is ~3.33%. The lower the FPS, the worse this error grows. 1) Adds a parameter for how often to update the FPS (e.g. 16 times per second). 2) Normalizes to the number of seconds passed since last update (fixing the bug). 3) Adds a smoothing parameter (e.g. weigh the most recent interval at 8x, and normalize with current displayed date). This results in less jumpy FPS because it takes into account historical data. --- BizHawk.Client.EmuHawk/MainForm.cs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 018be37bc0..72c8fc2809 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1337,10 +1337,11 @@ namespace BizHawk.Client.EmuHawk private bool _runloopFrameProgress; private long _frameAdvanceTimestamp; private long _frameRewindTimestamp; - private int _runloopFps; - private int _runloopLastFps; - private bool _runloopFrameadvance; - private long _runloopSecond; + private double _runloopLastFps; + private bool _runloopFrameadvance; + private double _runloopUpdatesPerSecond = 16.0; + private double _runloopFpsSmoothing = 8.0; + private long _runloopSecond; private bool _runloopLastFf; private bool _inResizeLoop; @@ -2768,20 +2769,19 @@ namespace BizHawk.Client.EmuHawk GlobalWin.Tools.UpdateToolsBefore(); } - _runloopFps++; + _runloopLastFps+= _runloopFpsSmoothing; - if ((double)(currentTimestamp - _runloopSecond) / Stopwatch.Frequency >= 1.0) - { - _runloopLastFps = _runloopFps; - _runloopSecond = currentTimestamp; - _runloopFps = 0; + if ((currentTimestamp - _runloopSecond) * _runloopUpdatesPerSecond >= Stopwatch.Frequency) + { + _runloopLastFps = Stopwatch.Frequency * (_runloopLastFps / (Stopwatch.Frequency + (currentTimestamp - _runloopSecond) * _runloopFpsSmoothing)); + _runloopSecond = currentTimestamp; updateFpsString = true; } if (updateFpsString) { - var fps_string = _runloopLastFps + " fps"; - if (isRewinding) + var fps_string = string.Format("{0:0} fps", _runloopLastFps); + if (isRewinding) { if (IsTurboing || isFastForwarding) {