-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTime.cpp
More file actions
57 lines (44 loc) · 783 Bytes
/
Copy pathTime.cpp
File metadata and controls
57 lines (44 loc) · 783 Bytes
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
#include "Time.h"
namespace Time {
namespace {
double deltaTime;
int currentFPS;
int FPS;
double currentFrame;
double lastFrame;
double currentTime = 0;
bool debug;
}
double GetFPS() {
return FPS;
}
double GetDeltaTime() {
return deltaTime;
}
void Init(bool debug) {
deltaTime = 0;
FPS = 0;
currentFrame = glfwGetTime();
lastFrame = glfwGetTime();
Time::debug = debug;
}
void Update() {
lastFrame = currentFrame;
currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
currentTime += deltaTime;
if (currentTime >= 1.0) {
FPS = currentFPS;
currentFPS = 0;
if (debug) {
std::cout << FPS << std::endl;
}
currentTime = 0;
}
currentFPS++;
}
double GetTime()
{
return glfwGetTime();
}
}