mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
50 lines
1.4 KiB
C#
50 lines
1.4 KiB
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace MSFSPopoutPanelManager.SimConnectAgent
|
|
{
|
|
public class FpsCalc
|
|
{
|
|
private const int FPS_LEN = 20;
|
|
private static readonly float[] FpsStatistic = new float[FPS_LEN];
|
|
private static int _fpsIndex = -1;
|
|
private static int _avgFps;
|
|
|
|
public static int GetAverageFps(int newValue)
|
|
{
|
|
if (_fpsIndex == -1)
|
|
{
|
|
// initialize FpsStatistic array
|
|
for (var i = 0; i < FPS_LEN; i++)
|
|
FpsStatistic[i] = newValue;
|
|
|
|
_avgFps = Convert.ToInt32(newValue);
|
|
_fpsIndex = 1;
|
|
}
|
|
else
|
|
{
|
|
var deltaFps = newValue - _avgFps;
|
|
|
|
if (deltaFps < 0 && Math.Abs(deltaFps) > _avgFps * 0.1) // FPS suddenly drops more than 10%
|
|
{
|
|
newValue += Math.Abs(deltaFps) / 2; // Let the new FPS to be only half the delta drop
|
|
}
|
|
|
|
FpsStatistic[_fpsIndex] = newValue;
|
|
_fpsIndex++;
|
|
if (_fpsIndex >= FPS_LEN)
|
|
_fpsIndex = 0;
|
|
|
|
_avgFps = Convert.ToInt32(FpsStatistic.Sum() / FPS_LEN);
|
|
}
|
|
|
|
return _avgFps;
|
|
}
|
|
|
|
public static void Reset()
|
|
{
|
|
_fpsIndex = -1;
|
|
_avgFps = 0;
|
|
}
|
|
}
|
|
}
|