Middleware class that tracks framerate and times. More...
#include <tracked_drawable.hpp>
Classes | |
struct | frame_info |
Public Member Functions | |
tracked_drawable () | |
auto | get_info () const -> utils::optional< frame_info > |
Returns the current frame time and info, or nullopt if no times have been recorded. More... | |
Protected Member Functions | |
~tracked_drawable () | |
void | update_count () |
Records time since last invocation. More... | |
Private Types | |
using | clock = std::chrono::steady_clock |
using | times = std::tuple< clock::duration, clock::duration, clock::duration > |
Private Member Functions | |
void | process () override |
Inherited from events::pump_monitor. More... | |
auto | get_times () const -> times |
Get min, average, and max frametimes in steady_clock resolution. More... | |
![]() | |
pump_monitor () | |
virtual | ~pump_monitor () |
Private Attributes | |
boost::circular_buffer< clock::duration > | frametimes_ |
unsigned | render_count_ |
unsigned | render_counter_ |
clock::time_point | last_lap_ |
clock::time_point | last_render_ |
Middleware class that tracks framerate and times.
It should be used in conjunction with classes that implement top_level_drawable. Strictly, it will measure the between invocations of update_count, which should be invoked from the render function.
Definition at line 34 of file tracked_drawable.hpp.
|
private |
Definition at line 64 of file tracked_drawable.hpp.
|
private |
Definition at line 65 of file tracked_drawable.hpp.
gui2::tracked_drawable::tracked_drawable | ( | ) |
Definition at line 28 of file tracked_drawable.cpp.
|
protected |
Definition at line 37 of file tracked_drawable.cpp.
References gui2::dialogs::fps::hide().
auto gui2::tracked_drawable::get_info | ( | ) | const -> utils::optional<frame_info> |
Returns the current frame time and info, or nullopt if no times have been recorded.
Definition at line 54 of file tracked_drawable.cpp.
References frametimes_, get_times(), render_count_, and s.
|
private |
Get min, average, and max frametimes in steady_clock resolution.
Definition at line 76 of file tracked_drawable.cpp.
References frametimes_.
Referenced by get_info().
|
overrideprivatevirtual |
Inherited from events::pump_monitor.
Implements events::pump_monitor.
Definition at line 45 of file tracked_drawable.cpp.
References prefs::get(), gui2::dialogs::fps::hide(), and gui2::dialogs::fps::show().
|
protected |
Records time since last invocation.
Definition at line 87 of file tracked_drawable.cpp.
References frametimes_, last_lap_, last_render_, render_count_, render_counter_, and s.
|
private |
Definition at line 70 of file tracked_drawable.hpp.
Referenced by get_info(), get_times(), and update_count().
|
private |
Definition at line 75 of file tracked_drawable.hpp.
Referenced by update_count().
|
private |
Definition at line 76 of file tracked_drawable.hpp.
Referenced by update_count().
|
private |
Definition at line 72 of file tracked_drawable.hpp.
Referenced by get_info(), and update_count().
|
private |
Definition at line 73 of file tracked_drawable.hpp.
Referenced by update_count().