-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTimer.h
74 lines (46 loc) · 1.4 KB
/
CTimer.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
/*******************************************
CTimer.h
Timer class declarations
********************************************/
#pragma once
#include "Windows.h"
class CTimer
{
public:
//////////////////////////////
// Constructor
CTimer();
//////////////////////////////
// Timer control
// Start the timer running
void Start();
// Stop the timer running
void Stop();
// Reset the timer to zero
void Reset();
//////////////////////////////
// Timing
// Get frequency of the timer being used (in counts per second)
float GetFrequency();
// Get time passed (seconds) since since timer was started or last reset
float GetTime();
// Get time passed (seconds) since last call to this function. If this is the first call, then
// the time since timer was started or the last reset is returned
float GetLapTime();
private:
// Is the timer running
bool m_Running;
// Using high resolution timer and if so its frequency
bool m_HighRes;
LARGE_INTEGER m_HighResFreq;
// Start time and last lap start time of high-resolution timer
LARGE_INTEGER m_HighResStart;
LARGE_INTEGER m_HighResLap;
// Time when high-resolution timer was stopped (if it has been)
LARGE_INTEGER m_HighResStop;
// Start time and last lap start time of low-resolution timer
DWORD m_LowResStart;
DWORD m_LowResLap;
// Time when low-resolution timer was stopped (if it has been)
DWORD m_LowResStop;
};