blob: 7ef824c8bb08c0d7ba1d3aa9d2ff3ddf4e413b80 (
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
64
65
66
67
68
69
|
#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;
}
bool isPaused(void) {
return paused;
}
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) {
if (!paused)
tickCount++;
}
void tick(unsigned int ticks) {
if (!paused)
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 (!paused && accum > MSEC_PER_TICK) {
accum = 0.0f;
return true;
}
return false;
}
}
}
|