A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Field::Rail Class Referenceabstract

Description

Definition at line 22 of file Rail.hh.

Inheritance diagram for Field::Rail:

Public Member Functions

 Rail (u16 idx, System::MapdataPointInfo *info)
 
virtual ~Rail ()
 
virtual f32 getPathLength () const =0
 
virtual const std::span< RailLineTransition > & getLinearTransitions () const =0
 
virtual const std::span< RailSplineTransition > & getSplineTransitions () const =0
 
virtual s32 getEstimatorSampleCount () const =0
 
virtual f32 getEstimatorStep () const =0
 
virtual const std::span< f32 > & getPathPercentages () const =0
 
void addPoint (f32 scale, const EGG::Vector3f &point)
 
void checkSphereFull ()
 
u16 pointCount () const
 
bool isOscillating () const
 
const std::span< System::MapdataPointInfo::Point > & points () const
 
const EGG::Vector3fpointPos (u16 idx) const
 
const EGG::Vector3ffloorNrm (u16 idx) const
 

Protected Member Functions

virtual void onPointsChanged ()=0
 
virtual void onPointAdded ()=0
 

Protected Attributes

u16 m_pointCount
 
bool m_isOscillating
 
std::span< System::MapdataPointInfo::Pointm_points
 
f32 m_someScale
 

Private Attributes

u16 m_idx
 
u16 m_pointCapacity
 
bool m_hasCheckedCol
 
std::span< EGG::Vector3fm_floorNrms
 

Constructor & Destructor Documentation

◆ Rail()

Field::Rail::Rail ( u16 idx,
System::MapdataPointInfo * info )
0x806EC9A4

Definition at line 8 of file Rail.cc.

◆ ~Rail()

Field::Rail::~Rail ( )
virtual0x806ECC40

TODO: If we make m_points allocate on the heap, then we need to free here

Definition at line 20 of file Rail.cc.

Member Function Documentation

◆ addPoint()

void Field::Rail::addPoint ( f32 scale,
const EGG::Vector3f & point )
0x806ED110

Definition at line 25 of file Rail.cc.

◆ checkSphereFull()

void Field::Rail::checkSphereFull ( )
0x806ECCC0

Definition at line 32 of file Rail.cc.

◆ floorNrm()

const EGG::Vector3f & Field::Rail::floorNrm ( u16 idx) const
inlinenodiscard

Definition at line 55 of file Rail.hh.

◆ getPathPercentages()

virtual const std::span< f32 > & Field::Rail::getPathPercentages ( ) const
pure virtual

Implemented in Field::RailLine.

◆ getSplineTransitions()

virtual const std::span< RailSplineTransition > & Field::Rail::getSplineTransitions ( ) const
pure virtual

Implemented in Field::RailLine.

◆ isOscillating()

bool Field::Rail::isOscillating ( ) const
inlinenodiscard

Definition at line 41 of file Rail.hh.

◆ pointCount()

u16 Field::Rail::pointCount ( ) const
inlinenodiscard

Definition at line 37 of file Rail.hh.

◆ pointPos()

const EGG::Vector3f & Field::Rail::pointPos ( u16 idx) const
inlinenodiscard0x806ED150

Definition at line 50 of file Rail.hh.

◆ points()

const std::span< System::MapdataPointInfo::Point > & Field::Rail::points ( ) const
inlinenodiscard

Definition at line 45 of file Rail.hh.

Member Data Documentation

◆ m_floorNrms

std::span<EGG::Vector3f> Field::Rail::m_floorNrms
private

Definition at line 73 of file Rail.hh.

◆ m_hasCheckedCol

bool Field::Rail::m_hasCheckedCol
private

Definition at line 72 of file Rail.hh.

◆ m_idx

u16 Field::Rail::m_idx
private

Definition at line 70 of file Rail.hh.

◆ m_isOscillating

bool Field::Rail::m_isOscillating
protected

Definition at line 65 of file Rail.hh.

◆ m_pointCapacity

u16 Field::Rail::m_pointCapacity
private

Definition at line 71 of file Rail.hh.

◆ m_pointCount

u16 Field::Rail::m_pointCount
protected

Definition at line 64 of file Rail.hh.

◆ m_points

std::span<System::MapdataPointInfo::Point> Field::Rail::m_points
protected

Definition at line 66 of file Rail.hh.

◆ m_someScale

f32 Field::Rail::m_someScale
protected

Definition at line 67 of file Rail.hh.