#include "FrameWatcher.h" #include FrameWatcher::FrameWatcher() { } FrameWatcher::~FrameWatcher() { } void FrameWatcher::do_tick() { elapsed_time = get_elapsed_time(); delta_time = elapsed_time - current_time; current_time = elapsed_time; if (delta_time > 0.2f) delta_time = 0.2f; accumulator_time += delta_time; while ((accumulator_time - step_size) >= step_size) { accumulator_time -= step_size; // ==== DELTA TIME LOCKED ==== } } float FrameWatcher::get_elapsed_time() { static std::chrono::time_point start; static bool started = false; if (!started) { start = std::chrono::system_clock::now(); started = true; } std::chrono::time_point now = std::chrono::system_clock::now(); std::chrono::duration elapsed_time = now - start; return static_cast(elapsed_time.count()); }