blob: 6f6ac0e3eb0e6fe7489cd7c727dfaf582261c2cc (
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
56
57
58
59
60
61
62
63
|
#include <gametime.hpp>
#include <common.hpp> // millis
#include <config.hpp>
static unsigned int tickCount = 0;
static unsigned int deltaTime = 1;
static bool paused = false;
namespace game {
namespace time {
void togglePause(void) {
paused ^= true;
}
void togglePause(bool state) {
paused = state;
}
void setTickCount(unsigned int t) {
tickCount = t;
}
unsigned int getTickCount(void) {
return tickCount;
}
unsigned int getDeltaTime(void) {
return paused ? 0 : ((deltaTime > 0) ? deltaTime : 1);
}
void tick(void) {
tickCount++;
}
void tick(unsigned int ticks) {
tickCount += ticks;
}
void mainLoopHandler(void) {
static unsigned int cur = 0, prev;
if (cur == 0)
cur = prev = millis();
cur = millis();
deltaTime = cur - prev;
prev = cur;
}
bool tickHasPassed(void) {
static unsigned int accum = 0;
accum += deltaTime;
if (accum > MSEC_PER_TICK) {
accum = 0.0f;
return true;
}
return false;
}
}
}
|