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

#include <common.hpp> // millis
#include <config.hpp>

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

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) {
			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;
        }
    }
}