-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimer.h
84 lines (75 loc) · 3.58 KB
/
Timer.h
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//----------------------------------------------------//
// Timer.h //
// Singleton //
// Used to keep track of the time between each reset //
// A reset is usually called after each frame //
// //
// By: Ather Omar //
//----------------------------------------------------//
#ifndef _TIMER_H
#define _TIMER_H
//---------------------------------------------------------------------
#include <SDL.h>
//---------------------------------------------------------------------
// QuickSDL
//---------------------------------------------------------------------
namespace QuickSDL {
//-----------------------------------------------------------------
// Timer
//-----------------------------------------------------------------
class Timer {
private:
//Needed to make Timer a singleton class
static Timer* sInstance;
//Contains the time of the last reset
unsigned int mStartTicks;
//Stores the number of milliseconds since the last reset
unsigned int mElapsedTicks;
//Stores the time elapsed since the last reset in seconds
float mDelataTime;
//Can be used to speed up or slowdown all entities that transform using it
float mTimeScale;
public:
//-----------------------------------------
//Returns a pointer to the class instance
//-----------------------------------------
static Timer* Instance();
//-----------------------------------------------------
//Releases the class instance and sets it back to NULL
//-----------------------------------------------------
static void Release();
//------------------------------------------------------------------------
//Resets the time elapsed back to 0, is usually called after each frame
//so that mDeltaTime is the time elapsed since last frame
//------------------------------------------------------------------------
void Reset();
//-------------------------------------------------------
//Time elapsed in seconds since the last Reset
//-------------------------------------------------------
float DeltaTime();
//---------------------------------------------------------------
//Sets the TimeScale default value: 1.0f
//---------------------------------------------------------------
void TimeScale(float t = 1.0f);
//---------------------------------------------------------------
//Can be used to speed up or slowdown all transformations
//by multiplying it by the change in position or rotation
//---------------------------------------------------------------
float TimeScale();
//--------------------------------------------------------------------
//Should be called in the EarlyUpdate, updates the time elapsed,
//as well as the DeltaTime since the last Reset
//--------------------------------------------------------------------
void Update();
private:
//------------------------------------------------------------------------------------------
//Contructor is private so that Instance() must be used to get an instance when needed
//------------------------------------------------------------------------------------------
Timer();
//--------------------------------------------------------------------------------------
//Destructor is private so that the instance can only be destroyed using Release()
//--------------------------------------------------------------------------------------
~Timer();
};
}
#endif