-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGameTime.cs
62 lines (44 loc) · 1.52 KB
/
GameTime.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// <copyright file="GameTime.cs" company="Software Antics">
// Copyright (c) Software Antics. All rights reserved.
// </copyright>
namespace FinalEngine.Runtime;
using System;
using FinalEngine.Runtime.Invocation;
public sealed class GameTime : IGameTime
{
private const double OneSecondAsMilliSeconds = 1000.0d;
private readonly double waitTime;
private readonly IStopwatchInvoker watch;
private double lastTime;
public GameTime(double frameCap)
: this(new StopwatchInvoker(), frameCap)
{
}
internal GameTime(IStopwatchInvoker watch, double frameCap)
{
this.watch = watch ?? throw new ArgumentNullException(nameof(watch));
if (frameCap <= 0.0d)
{
throw new DivideByZeroException($"The specified {nameof(frameCap)} parameter must be greater than zero.");
}
this.waitTime = OneSecondAsMilliSeconds / frameCap;
}
public static float Delta { get; private set; }
public static float FrameRate { get; private set; }
bool IGameTime.CanProcessNextFrame()
{
if (!this.watch.IsRunning)
{
this.watch.Restart();
}
double currentTime = this.watch.Elapsed.TotalMilliseconds;
if (currentTime >= this.lastTime + this.waitTime)
{
Delta = (float)(currentTime - this.lastTime);
FrameRate = (float)Math.Round(OneSecondAsMilliSeconds / Delta);
this.lastTime = currentTime;
return true;
}
return false;
}
}