1#ifndef INCLUDE_UTILS_DELTATIME_H_
2#define INCLUDE_UTILS_DELTATIME_H_
33 static void init()
noexcept;
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>
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