sneak/Jumpy.Shared/FpsCounter.cs
Colin McMillen 524ed70b9d refactor FpsCounter index increment
GitOrigin-RevId: f8c636747e4ab2cc8e99378e525ab2cde70cadb6
2020-02-13 14:45:59 -05:00

24 lines
525 B
C#

using System;
namespace Jumpy {
class FpsCounter {
private double fps = 0;
private int[] frameTimes = new int[60];
private int idx = 0;
public int Fps {
get => (int) Math.Ceiling(fps);
}
public void Update() {
var now = Environment.TickCount; // ms
if (frameTimes[idx] != 0) {
var timeElapsed = now - frameTimes[idx];
fps = 1000.0 * frameTimes.Length / timeElapsed;
}
frameTimes[idx] = now;
idx = (idx + 1) % frameTimes.Length;
}
}
}