aboutsummaryrefslogtreecommitdiffstats
path: root/src/gametime.cpp
blob: be63885a21ab074f84e4f4f01e3146eb7615cd10 (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
#include <gametime.hpp>

#include <common.hpp>

static unsigned int tickCount = 0;
static unsigned int deltaTime = 1;

// millisecond timers
static unsigned int currentTime = 0;
static unsigned int prevTime, prevPrevTime;

namespace gtime {
    void setTickCount(unsigned int t) {
        tickCount = t;
    }

    unsigned int getTickCount(void) {
        return tickCount;
    }

    unsigned int getDeltaTime(void) {
        return deltaTime;
    }

    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) {
        if (prevPrevTime + MSEC_PER_TICK <= currentTime) {
    		prevPrevTime = currentTime;
            return true;
    	}

        return false;
    }
}