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

Description

Definition at line 71 of file MapdataCheckPath.hh.

Inheritance diagram for System::MapdataCheckPathAccessor:

Public Member Functions

 MapdataCheckPathAccessor (const MapSectionHeader *header)
 
MapdataCheckPathfindCheckpathForCheckpoint (u16 checkpointId) const
 
f32 lapProportion () const
 
- Public Member Functions inherited from System::MapdataAccessorBase< MapdataCheckPath, MapdataCheckPath::SData >
 MapdataAccessorBase (const MapSectionHeader *header)
 
 MapdataAccessorBase (const MapdataAccessorBase &)=delete
 
 MapdataAccessorBase (MapdataAccessorBase &&)=delete
 
MapdataCheckPathget (u16 i) const
 
MapdataCheckPath::SDatagetData (u16 i) const
 
u16 size () const
 
void init (const MapdataCheckPath::SData *start, u16 count)
 

Private Attributes

f32 m_lapProportion
 Minimum proportion of a lap a checkpath can be. Calculated as 1/(maxDepth+1).
 

Additional Inherited Members

- Protected Attributes inherited from System::MapdataAccessorBase< MapdataCheckPath, MapdataCheckPath::SData >
MapdataCheckPath ** m_entries
 
u16 m_entryCount
 
const MapSectionHeaderm_sectionHeader
 

Constructor & Destructor Documentation

◆ MapdataCheckPathAccessor()

System::MapdataCheckPathAccessor::MapdataCheckPathAccessor ( const MapSectionHeader * header)
Inlined in 0x8051377C

Definition at line 44 of file MapdataCheckPath.cc.

Member Function Documentation

◆ findCheckpathForCheckpoint()

MapdataCheckPath * System::MapdataCheckPathAccessor::findCheckpathForCheckpoint ( u16 checkpointId) const
nodiscard0x80515014

Definition at line 67 of file MapdataCheckPath.cc.

◆ lapProportion()

f32 System::MapdataCheckPathAccessor::lapProportion ( ) const
nodiscard

Definition at line 78 of file MapdataCheckPath.cc.

Member Data Documentation

◆ m_lapProportion

f32 System::MapdataCheckPathAccessor::m_lapProportion
private

Minimum proportion of a lap a checkpath can be. Calculated as 1/(maxDepth+1).

Another way to think of it: maxDepth+1 is the number of checkpaths in the longest route through the course, where longest means most checkpaths traversed, not most distance traversed. So if one plans their route to hit the most checkpaths possible (no backtracking), they hit maxDepth+1 checkpaths, and each checkpath is lapProportion% of the total checkpaths on the route.

Definition at line 90 of file MapdataCheckPath.hh.