TDME2 1.9.121
Timing.h
Go to the documentation of this file.
1
2#pragma once
3
4#include <array>
5
6#include <tdme/tdme.h>
8
9using std::array;
10
11/**
12 * Timing class
13 * @author Andreas Drewke
14 * @version $Id$
15 */
17{
18 friend class Engine;
19
20public:
21 static constexpr int64_t UNDEFINED { -1LL };
22
23private:
24 int64_t frame;
25 int64_t startTime;
28 float fps;
30 array<float, 60 * 3> avarageFPSSequence;
31 int avarageFPSIndex { 0 };
32
33 /**
34 * Updates timing
35 */
36 void updateTiming();
37
38 /**
39 * Public constructor
40 */
41 Timing();
42
43public:
44 /**
45 * @return frames that have been rendered
46 */
47 inline int64_t getFrame() {
48 return frame;
49 }
50
51 /**
52 * @return start time
53 */
54 inline int64_t getStartTime() {
55 return startTime;
56 }
57
58 /**
59 * @return total time the engine is running
60 */
61 inline int64_t getTotalTime() {
63 }
64
65 /**
66 * @return time last frame has been rendered in ms
67 */
68 inline int64_t getLastFrameAtTime() {
69 return lastFrameAtTime;
70 }
71
72 /**
73 * @return time current frame has been rendered in ms
74 */
75 inline int64_t getCurrentFrameAtTime() {
76 return currentFrameAtTime;
77 }
78
79 /**
80 * Gets the time passed between last and current frame
81 * @return delta time
82 */
83 inline int64_t getDeltaTime() {
85 return 0LL;
86 }
88 }
89
90 /**
91 * @return avarage fps
92 */
93 inline float getFPS() {
94 return fps;
95 }
96
97 /**
98 * @return avarage fps
99 */
100 inline float getAvarageFPS() {
101 return avarageFPS;
102 }
103
104};
Engine main class.
Definition: Engine.h:122
Timing class.
Definition: Timing.h:17
int64_t getLastFrameAtTime()
Definition: Timing.h:68
void updateTiming()
Updates timing.
Definition: Timing.cpp:29
int64_t getFrame()
Definition: Timing.h:47
int64_t getDeltaTime()
Gets the time passed between last and current frame.
Definition: Timing.h:83
array< float, 60 *3 > avarageFPSSequence
Definition: Timing.h:30
static constexpr int64_t UNDEFINED
Definition: Timing.h:21
int64_t getCurrentFrameAtTime()
Definition: Timing.h:75
int64_t getTotalTime()
Definition: Timing.h:61
float getFPS()
Definition: Timing.h:93
float getAvarageFPS()
Definition: Timing.h:100
int64_t currentFrameAtTime
Definition: Timing.h:27
int64_t startTime
Definition: Timing.h:25
int64_t getStartTime()
Definition: Timing.h:54
int64_t lastFrameAtTime
Definition: Timing.h:26
Timing()
Public constructor.
Definition: Timing.cpp:13