-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtimer.cpp
39 lines (32 loc) · 1.01 KB
/
timer.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
#include "framework.h"
namespace Framework
{
// Timer implementation
Timer::Timer()
: m_timestep(0.0f),
m_time(0.0f),
m_frameCount(0),
m_iFrameCur(0)
{
i64 frequency;
QueryPerformanceFrequency((LARGE_INTEGER *)&frequency);
m_period = 1.0f / float(frequency);
QueryPerformanceCounter((LARGE_INTEGER *)&m_startupTimestamp);
for (int i = 0; i < dim(m_lastFrameTimestamps); ++i)
m_lastFrameTimestamps[i] = m_startupTimestamp;
}
void Timer::OnFrameStart()
{
++m_frameCount;
i64 timestamp;
QueryPerformanceCounter((LARGE_INTEGER *)×tamp);
m_time = float(timestamp - m_startupTimestamp) * m_period;
// Calculate smoothed timestep over several frames,
// to help with microstuttering. Maintain a ring buffer
// of frame timestamps to implement this.
m_timestep = float(timestamp - m_lastFrameTimestamps[m_iFrameCur]) *
m_period / float(dim(m_lastFrameTimestamps));
m_lastFrameTimestamps[m_iFrameCur] = timestamp;
m_iFrameCur = (m_iFrameCur + 1) % dim(m_lastFrameTimestamps);
}
}