blob: 1005d84580117d71eca4656633f100c6a40edc5a (
plain)
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
|
#include <gametime.hpp>
#include <common.hpp>
static unsigned int tickCount = 0;
static float deltaTime = 1;
// millisecond timers
static unsigned int currentTime = 0;
static unsigned int prevTime;
static float accum = 0.0f;
namespace game {
namespace time {
void setTickCount(unsigned int t) {
tickCount = t;
}
unsigned int getTickCount(void) {
return tickCount;
}
unsigned int getDeltaTime(void) {
return (deltaTime > 0) ? deltaTime : 1;
}
void tick(void) {
tickCount++;
}
void tick(unsigned int ticks) {
tickCount += ticks;
}
void mainLoopHandler(void) {
if (!currentTime)
currentTime = prevTime = millis();
currentTime = millis();
deltaTime = currentTime - prevTime;
prevTime = currentTime;
}
bool tickHasPassed(void) {
accum += deltaTime;
if (accum > MSEC_PER_TICK) {
accum = 0.0f;
return true;
}
return false;
}
}
}
|