A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
System::Timer Struct Reference

#include <TimerManager.hh>

Description

A simple struct to represent a lap or race finish time.

Definition at line 8 of file TimerManager.hh.

Public Member Functions

 Timer ()
 [Unused] Creates a zero'd timer.
 
 Timer (u16 min_, u8 sec_, u16 mil_)
 
 Timer (u32 data)
 
std::strong_ordering operator<=> (const Timer &rhs) const
 
bool operator== (const Timer &rhs) const =default
 
bool operator!= (const Timer &rhs) const =default
 
Timer operator- (const Timer &rhs) const
 
Timer operator+ (f32 ms) const
 

Public Attributes

u16 min
 
u8 sec
 
u16 mil
 
bool valid
 

Constructor & Destructor Documentation

◆ Timer() [1/3]

System::Timer::Timer ( )
0x8051C374

[Unused] Creates a zero'd timer.

Definition at line 6 of file TimerManager.cc.

◆ Timer() [2/3]

System::Timer::Timer ( u16 min_,
u8 sec_,
u16 mil_ )

Definition at line 8 of file TimerManager.cc.

◆ Timer() [3/3]

System::Timer::Timer ( u32 data)

Parses a time from an RKG's 3 byte time format.

See also
RawGhostFile

Definition at line 12 of file TimerManager.cc.

Member Function Documentation

◆ operator+()

Timer System::Timer::operator+ ( f32 ms) const
inline

Definition at line 60 of file TimerManager.hh.

◆ operator-()

Timer System::Timer::operator- ( const Timer & rhs) const
inline0x807EE860

Definition at line 34 of file TimerManager.hh.

◆ operator<=>()

std::strong_ordering System::Timer::operator<=> ( const Timer & rhs) const
inline

Definition at line 14 of file TimerManager.hh.

Member Data Documentation

◆ mil

u16 System::Timer::mil
Todo
We will likely want to expand this to a float for more precise finish times.

Definition at line 88 of file TimerManager.hh.

◆ min

u16 System::Timer::min

Definition at line 86 of file TimerManager.hh.

◆ sec

u8 System::Timer::sec

Definition at line 87 of file TimerManager.hh.

◆ valid

bool System::Timer::valid

Definition at line 89 of file TimerManager.hh.