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

Description

Definition at line 20 of file RaceManager.hh.

Public Member Functions

void init ()
 
void calc ()
 
Timer getLapSplit (size_t idx) const
 Gets the lap split, which is the difference between the given lap and the previous one.
 
Getters
u16 checkpointId () const
 
f32 raceCompletion () const
 
s8 jugemId () const
 
const std::array< Timer, 3 > & lapTimers () const
 
const TimerlapTimer (size_t idx) const
 
const TimerraceTimer () const
 
const KPadinputs () const
 

Private Member Functions

MapdataCheckPointcalcCheckpoint (u16 checkpointId, f32 distanceRatio)
 
bool areCheckpointsSubsequent (const MapdataCheckPoint *checkpoint, u16 nextCheckpointId) const
 
void decrementLap ()
 
void incrementLap ()
 
void endRace (const Timer &finishTime)
 

Private Attributes

u16 m_checkpointId
 
f32 m_raceCompletion
 
f32 m_checkpointFactor
 The proportion of a lap for the current checkpoint.
 
f32 m_checkpointStartLapCompletion
 
f32 m_lapCompletion
 
s8 m_jugemId
 
s16 m_currentLap
 
s8 m_maxLap
 
s8 m_maxKcp
 
std::array< Timer, 3 > m_lapTimers
 
Timer m_raceTimer
 
const KPadm_inputs
 

Constructor & Destructor Documentation

◆ Player()

System::RaceManager::Player::Player ( )
0x80533ED8

Definition at line 102 of file RaceManager.cc.

◆ ~Player()

virtual System::RaceManager::Player::~Player ( )
inlinevirtual

Definition at line 23 of file RaceManager.hh.

Member Function Documentation

◆ areCheckpointsSubsequent()

bool System::RaceManager::Player::areCheckpointsSubsequent ( const MapdataCheckPoint * checkpoint,
u16 nextCheckpointId ) const
nodiscardprivateInlined in 0x80534DF8

Definition at line 233 of file RaceManager.cc.

◆ calc()

void System::RaceManager::Player::calc ( )
0x80535304

Definition at line 139 of file RaceManager.cc.

◆ calcCheckpoint()

MapdataCheckPoint * System::RaceManager::Player::calcCheckpoint ( u16 checkpointId,
f32 distanceRatio )
private0x80534DF8

Definition at line 185 of file RaceManager.cc.

◆ checkpointId()

u16 System::RaceManager::Player::checkpointId ( ) const
inlinenodiscard

Definition at line 31 of file RaceManager.hh.

◆ decrementLap()

void System::RaceManager::Player::decrementLap ( )
private0x80534D6C

Definition at line 245 of file RaceManager.cc.

◆ endRace()

void System::RaceManager::Player::endRace ( const Timer & finishTime)
private0x805347F4

Definition at line 283 of file RaceManager.cc.

◆ getLapSplit()

Timer System::RaceManager::Player::getLapSplit ( size_t lap) const
nodiscard0x8053572C

Gets the lap split, which is the difference between the given lap and the previous one.

Parameters
lapOne-indexed lap.
Returns
The split timer.

Definition at line 168 of file RaceManager.cc.

◆ incrementLap()

void System::RaceManager::Player::incrementLap ( )
private0x805349B8

Definition at line 258 of file RaceManager.cc.

◆ init()

void System::RaceManager::Player::init ( )
0x80534194

Definition at line 123 of file RaceManager.cc.

◆ inputs()

const KPad * System::RaceManager::Player::inputs ( ) const
inlinenodiscard

Definition at line 56 of file RaceManager.hh.

◆ jugemId()

s8 System::RaceManager::Player::jugemId ( ) const
inlinenodiscard

Definition at line 39 of file RaceManager.hh.

◆ lapTimer()

const Timer & System::RaceManager::Player::lapTimer ( size_t idx) const
inlinenodiscard

Definition at line 47 of file RaceManager.hh.

◆ lapTimers()

const std::array< Timer, 3 > & System::RaceManager::Player::lapTimers ( ) const
inlinenodiscard

Definition at line 43 of file RaceManager.hh.

◆ raceCompletion()

f32 System::RaceManager::Player::raceCompletion ( ) const
inlinenodiscard

Definition at line 35 of file RaceManager.hh.

◆ raceTimer()

const Timer & System::RaceManager::Player::raceTimer ( ) const
inlinenodiscard

Definition at line 52 of file RaceManager.hh.

Member Data Documentation

◆ m_checkpointFactor

f32 System::RaceManager::Player::m_checkpointFactor
private

The proportion of a lap for the current checkpoint.

Definition at line 72 of file RaceManager.hh.

◆ m_checkpointId

u16 System::RaceManager::Player::m_checkpointId
private

Definition at line 70 of file RaceManager.hh.

◆ m_checkpointStartLapCompletion

f32 System::RaceManager::Player::m_checkpointStartLapCompletion
private

Definition at line 73 of file RaceManager.hh.

◆ m_currentLap

s16 System::RaceManager::Player::m_currentLap
private

Definition at line 76 of file RaceManager.hh.

◆ m_inputs

const KPad* System::RaceManager::Player::m_inputs
private

Definition at line 81 of file RaceManager.hh.

◆ m_jugemId

s8 System::RaceManager::Player::m_jugemId
private

Definition at line 75 of file RaceManager.hh.

◆ m_lapCompletion

f32 System::RaceManager::Player::m_lapCompletion
private

Definition at line 74 of file RaceManager.hh.

◆ m_lapTimers

std::array<Timer, 3> System::RaceManager::Player::m_lapTimers
private

Definition at line 79 of file RaceManager.hh.

◆ m_maxKcp

s8 System::RaceManager::Player::m_maxKcp
private

Definition at line 78 of file RaceManager.hh.

◆ m_maxLap

s8 System::RaceManager::Player::m_maxLap
private

Definition at line 77 of file RaceManager.hh.

◆ m_raceCompletion

f32 System::RaceManager::Player::m_raceCompletion
private

Definition at line 71 of file RaceManager.hh.

◆ m_raceTimer

Timer System::RaceManager::Player::m_raceTimer
private

Definition at line 80 of file RaceManager.hh.