blob: 7999f1c2f98290a1b577b21615b09843ff1db5ba (
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
|
/**
* @file gametime.hpp
* @brief Handles time related operations
*/
#ifndef GAMETIME_H_
#define GAMETIME_H_
namespace game {
namespace time {
void togglePause(void);
void togglePause(bool state);
/**
* Sets the game's tick count to the desired amount.
* @param t desired tick count
*/
void setTickCount(unsigned int t);
/**
* Gets the current tick count.
* @return the tick count
*/
unsigned int getTickCount(void);
/**
* Calculates and returns the delta time.
* @return the delta time
*/
unsigned int getDeltaTime(void);
/**
* Increments the game's tick count.
*/
void tick(void);
/**
* Increments the game's tick count by the given amount of ticks.
* @param ticks the number of ticks to add
*/
void tick(unsigned int ticks);
/**
* Determines if a tick has passed since the last call to this function.
* @return if a tick has passed
*/
bool tickHasPassed(void);
/**
* Handles time updating.
* This should be called from the game's main loop.
*/
void mainLoopHandler(void);
}
}
#endif // GAMETIME_H_
|