-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameTimer.cpp
82 lines (70 loc) · 1.62 KB
/
GameTimer.cpp
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
#include "GameTimer.h"
using namespace _GameTimer;
GameTimer::GameTimer()
:mSecondsPerCount(0.0), mDeltaTime(-1.0), mBaseCount(0), mPauseCount(0), mStopCount(0), mPrevCount(0), mCurrCount(0), isStopped(false) {
// 计算计数器每秒多少count
__int64 countsPerSec;
QueryPerformanceFrequency((LARGE_INTEGER*)&countsPerSec);// 获取一count多少秒
mSecondsPerCount = 1.0 / (double)countsPerSec;
}
// 计算每帧间隔
void GameTimer::Tick() {
// 如果停止,则每帧间隔为0
if (isStopped) {
mDeltaTime = 0.0;
return;
}
// 计算当前时刻count
__int64 currCount;
QueryCnt(&currCount);
mCurrCount = currCount;
mDeltaTime = Cnt2Sec(mCurrCount - mPrevCount);// 计算时间差
mPrevCount = mCurrCount;
// 使时间差为非负值
if (mDeltaTime < 0.0)
mDeltaTime = 0.0;
}
// 获得每帧时间
float GameTimer::DeltaTime() const {
return (float)mDeltaTime;
}
// 重置计时器
void GameTimer::Reset() {
__int64 currCount;
QueryCnt(&currCount);
mBaseCount = currCount;
mPrevCount = currCount;
mStopCount = 0;
isStopped = false;
}
// 关闭计时器
void GameTimer::Stop() {
if (!isStopped) {
__int64 currCount;
QueryCnt(&currCount);
mStopCount = currCount;
isStopped = true;
}
}
// 打开计时器
void GameTimer::Start() {
__int64 startCount;
QueryCnt(&startCount);
if (isStopped) {
mPauseCount += (startCount - mStopCount);
mPrevCount = startCount;
mStopCount = 0;
isStopped = false;
}
}
// 运行时间 不包括暂停
float GameTimer::TotalTime() const {
if (isStopped)
return Cnt2Sec(mStopCount - mBaseCount - mPauseCount);
else
return Cnt2Sec(mCurrCount - mBaseCount - mPauseCount);
}
// 获取isStopped
bool GameTimer::IsStopped() {
return isStopped;
}