game_time.h
1/*
2** ClanLib SDK
3** Copyright (c) 1997-2020 The ClanLib Team
4**
5** This software is provided 'as-is', without any express or implied
6** warranty. In no event will the authors be held liable for any damages
7** arising from the use of this software.
8**
9** Permission is granted to anyone to use this software for any purpose,
10** including commercial applications, and to alter it and redistribute it
11** freely, subject to the following restrictions:
12**
13** 1. The origin of this software must not be misrepresented; you must not
14** claim that you wrote the original software. If you use this software
15** in a product, an acknowledgment in the product documentation would be
16** appreciated but is not required.
17** 2. Altered source versions must be plainly marked as such, and must not be
18** misrepresented as being the original software.
19** 3. This notice may not be removed or altered from any source distribution.
20**
21** Note: Some of the libraries ClanLib may link to may have additional
22** requirements or restrictions.
23**
24** File Author(s):
25**
26** Magnus Norddahl
27*/
28
29#pragma once
30
31#include "../System/cl_platform.h"
32#include <memory>
33
34namespace clan
35{
38
39 class GameTime_Impl;
40
43 {
44 public:
49 GameTime(int ticks_per_second = 20, int max_updates_per_second = 0);
50
52 float get_time_elapsed() const;
53
56
59
61 int get_ticks_elapsed() const;
62
64 float get_tick_time_elapsed() const;
65
68
74
77
79 float get_current_time() const;
80
83
85 uint64_t get_current_time_ms() const;
86
90 void update();
91
93 void reset();
94
95 private:
96 std::shared_ptr<GameTime_Impl> impl;
97 };
98
100}
float get_tick_interpolation_time() const
Returns the current time between ticks as a normalized number.
GameTime(int ticks_per_second=20, int max_updates_per_second=0)
GameTime constructor.
float get_updates_per_second() const
Returns the number of updates that occurred every second (aka fps, frames per second)
uint64_t get_current_time_ms() const
Returns the number of milliseconds since this class was reset()
uint64_t get_time_elapsed_microseconds() const
Returns the time elapsed in seconds since last update in microseconds.
void reset()
Resets the timer.
uint64_t get_current_time_microseconds() const
Returns the number of microseconds since this class was reset()
int get_tick_time_elapsed_ms() const
Returns the time elapsed per tick in milliseconds.
float get_current_time() const
Returns the number of seconds since this class was reset()
int get_ticks_elapsed() const
Returns the number of ticks that elapsed since last update.
int get_time_elapsed_ms() const
Returns the time elapsed in seconds since last update in milliseconds.
float get_tick_time_elapsed() const
Returns the time elapsed per tick.
float get_time_elapsed() const
Returns the time elapsed in seconds since last update.
void update()
Updates time data for the frame to be rendered.
Definition clanapp.h:36