/*
|
|
* Copyright (C) 2023 Christopher J. Howard
|
|
*
|
|
* This file is part of Antkeeper source code.
|
|
*
|
|
* Antkeeper source code is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Antkeeper source code is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "game/loop.hpp"
|
|
#include <algorithm>
|
|
|
|
|
|
loop::loop():
|
|
update_callback([](double, double){}),
|
|
render_callback([](double){}),
|
|
update_frequency(60.0),
|
|
update_period(1.0 / update_frequency),
|
|
max_frame_duration(update_period)
|
|
{
|
|
reset();
|
|
}
|
|
|
|
void loop::set_update_callback(std::function<void(double, double)> callback)
|
|
{
|
|
update_callback = callback;
|
|
}
|
|
|
|
void loop::set_render_callback(std::function<void(double)> callback)
|
|
{
|
|
render_callback = callback;
|
|
}
|
|
|
|
void loop::set_update_frequency(double frequency)
|
|
{
|
|
update_frequency = frequency;
|
|
update_period = 1.0 / update_frequency;
|
|
}
|
|
|
|
void loop::set_max_frame_duration(double duration)
|
|
{
|
|
max_frame_duration = duration;
|
|
}
|
|
|
|
double loop::get_frame_duration() const
|
|
{
|
|
return frame_duration;
|
|
}
|
|
|
|
void loop::reset()
|
|
{
|
|
elapsed_time = 0.0;
|
|
accumulator = 0.0;
|
|
frame_start = std::chrono::high_resolution_clock::now();
|
|
frame_end = frame_start;
|
|
frame_duration = 0.0;
|
|
}
|
|
|
|
void loop::tick()
|
|
{
|
|
frame_end = std::chrono::high_resolution_clock::now();
|
|
frame_duration = static_cast<double>(std::chrono::duration_cast<std::chrono::nanoseconds>(frame_end - frame_start).count()) / 1000000000.0;
|
|
frame_start = frame_end;
|
|
|
|
accumulator += std::min<double>(max_frame_duration, frame_duration);
|
|
|
|
while (accumulator >= update_period)
|
|
{
|
|
update_callback(elapsed_time, update_period);
|
|
elapsed_time += update_period;
|
|
accumulator -= update_period;
|
|
}
|
|
|
|
render_callback(accumulator * update_frequency);
|
|
}
|
|
|