Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
Time.h
Go to the documentation of this file.
1#ifndef INCLUDE_UTILS_DELTATIME_H_
2#define INCLUDE_UTILS_DELTATIME_H_
3
4#include <chrono>
5
6namespace Utils
7{
8
15class Time
16{
17 // --------------------- DeltaTime ---------------------
18 public:
25 static void updateDeltaTime() noexcept;
26
33 static void init() noexcept;
34
40 static double deltaTime() noexcept;
41
47 static uint32_t getTicks() noexcept;
48
49 private:
50 static double mDeltaTime;
51
52 static std::chrono::time_point<std::chrono::high_resolution_clock>
54 static std::chrono::time_point<std::chrono::high_resolution_clock>
56 static std::chrono::time_point<std::chrono::high_resolution_clock>
58
59 // --------------------- Cap FPS ---------------------
60 public:
66 static void capFPS();
67
68 private:
69 static const int mTargetFPS;
70 static const std::chrono::milliseconds mFrameDuration;
71};
72
73} // namespace Utils
74
75#endif // INCLUDE_UTILS_DELTATIME_H_
Utility class for handling delta time and FPS capping.
Definition Time.h:16
static void init() noexcept
Initializes the time tracking system.
Definition Time.cpp:18
static void updateDeltaTime() noexcept
Updates the delta time value.
Definition Time.cpp:37
static double mDeltaTime
Stores the delta time value in seconds.
Definition Time.h:50
static const int mTargetFPS
The target frames per second.
Definition Time.h:69
static const std::chrono::milliseconds mFrameDuration
The expected duration of each frame.
Definition Time.h:70
static std::chrono::time_point< std::chrono::high_resolution_clock > mStartTime
Stores the program start timestamp.
Definition Time.h:57
static std::chrono::time_point< std::chrono::high_resolution_clock > mPreviousTime
Stores the previous frame's timestamp.
Definition Time.h:53
static uint32_t getTicks() noexcept
Gets the time in milliseconds since the start of the program.
Definition Time.cpp:24
static double deltaTime() noexcept
Retrieves the time elapsed between the last two frames.
Definition Time.cpp:32
static void capFPS()
Caps the FPS to the target frame rate.
Definition Time.cpp:48
static std::chrono::time_point< std::chrono::high_resolution_clock > mCurrentTime
Stores the current frame's timestamp.
Definition Time.h:55
Definition Time.cpp:7