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

Description

Definition at line 11 of file MapdataCheckPath.hh.

Classes

struct  SData
 

Public Member Functions

 STATIC_ASSERT (sizeof(SData)==0x10)
 
 MapdataCheckPath (const SData *data)
 
void read (EGG::Stream &stream)
 
void findDepth (s8 depth, const MapdataCheckPathAccessor &accessor)
 Performs DFS to calculate m_depth for all subsequent checkpaths.
 
bool isPointInPath (u16 checkpointId) const
 
Getters
u8 start () const
 
u8 end () const
 
const std::array< u8, MAX_NEIGHBORS > & next () const
 
const std::array< u8, MAX_NEIGHBORS > & prev () const
 
s8 depth () const
 
f32 oneOverCount () const
 

Static Public Attributes

static constexpr size_t MAX_NEIGHBORS = 6
 

Private Attributes

const SDatam_rawData
 
u8 m_start
 Index of the first checkpoint in this checkpath.
 
u8 m_size
 Number of checkpoints in this checkpath.
 
std::array< u8, MAX_NEIGHBORS > m_prev
 Indices of previous connected checkpaths.
 
std::array< u8, MAX_NEIGHBORS > m_next
 Indices of next connected checkpaths.
 
s8 m_depth
 
f32 m_oneOverCount
 

Constructor & Destructor Documentation

◆ MapdataCheckPath()

System::MapdataCheckPath::MapdataCheckPath ( const SData * data)
0x80515098

Definition at line 6 of file MapdataCheckPath.cc.

Member Function Documentation

◆ depth()

s8 System::MapdataCheckPath::depth ( ) const
inlinenodiscard

Definition at line 51 of file MapdataCheckPath.hh.

◆ end()

u8 System::MapdataCheckPath::end ( ) const
inlinenodiscard

Definition at line 39 of file MapdataCheckPath.hh.

◆ findDepth()

void System::MapdataCheckPath::findDepth ( s8 depth,
const MapdataCheckPathAccessor & accessor )
0x805150E0

Performs DFS to calculate m_depth for all subsequent checkpaths.

Parameters
depthNumber of checkpaths from first checkpath.

Definition at line 27 of file MapdataCheckPath.cc.

◆ isPointInPath()

bool System::MapdataCheckPath::isPointInPath ( u16 checkpointId) const
inlinenodiscard

Definition at line 28 of file MapdataCheckPath.hh.

◆ next()

const std::array< u8, MAX_NEIGHBORS > & System::MapdataCheckPath::next ( ) const
inlinenodiscard

Definition at line 43 of file MapdataCheckPath.hh.

◆ oneOverCount()

f32 System::MapdataCheckPath::oneOverCount ( ) const
inlinenodiscard

Definition at line 55 of file MapdataCheckPath.hh.

◆ prev()

const std::array< u8, MAX_NEIGHBORS > & System::MapdataCheckPath::prev ( ) const
inlinenodiscard

Definition at line 47 of file MapdataCheckPath.hh.

◆ read()

void System::MapdataCheckPath::read ( EGG::Stream & stream)

Definition at line 12 of file MapdataCheckPath.cc.

◆ start()

u8 System::MapdataCheckPath::start ( ) const
inlinenodiscard

Definition at line 35 of file MapdataCheckPath.hh.

Member Data Documentation

◆ m_depth

s8 System::MapdataCheckPath::m_depth
private

Number of checkpaths away from first checkpath (i.e. distance from start)

Definition at line 66 of file MapdataCheckPath.hh.

◆ m_next

std::array<u8, MAX_NEIGHBORS> System::MapdataCheckPath::m_next
private

Indices of next connected checkpaths.

Definition at line 65 of file MapdataCheckPath.hh.

◆ m_oneOverCount

f32 System::MapdataCheckPath::m_oneOverCount
private

Definition at line 68 of file MapdataCheckPath.hh.

◆ m_prev

std::array<u8, MAX_NEIGHBORS> System::MapdataCheckPath::m_prev
private

Indices of previous connected checkpaths.

Definition at line 64 of file MapdataCheckPath.hh.

◆ m_rawData

const SData* System::MapdataCheckPath::m_rawData
private

Definition at line 61 of file MapdataCheckPath.hh.

◆ m_size

u8 System::MapdataCheckPath::m_size
private

Number of checkpoints in this checkpath.

Definition at line 63 of file MapdataCheckPath.hh.

◆ m_start

u8 System::MapdataCheckPath::m_start
private

Index of the first checkpoint in this checkpath.

Definition at line 62 of file MapdataCheckPath.hh.

◆ MAX_NEIGHBORS

size_t System::MapdataCheckPath::MAX_NEIGHBORS = 6
staticconstexpr

Definition at line 32 of file MapdataCheckPath.hh.