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

Description

Definition at line 84 of file RailInterpolator.hh.

Inheritance diagram for Field::RailLinearInterpolator:

Public Member Functions

 RailLinearInterpolator (f32 speed, u32 idx)
 
void init (f32 t, u32 idx) override
 
Status calc () override
 
void setCurrVel (f32 speed) override
 
f32 getCurrVel () override
 
void evalCubicBezierOnPath (f32 t, EGG::Vector3f &currDir, EGG::Vector3f &curTangentDir) override
 
void getPathLocation (f32 t, s16 &idx, f32 &len) override
 
- Public Member Functions inherited from Field::RailInterpolator
 RailInterpolator (f32 speed, u32 idx)
 
void setT (f32 t)
 
const EGG::Vector3ffloorNrm (size_t idx) const
 
f32 railLength () const
 
const System::MapdataPointInfo::PointcurPoint () const
 
const EGG::Vector3fcurPos () const
 
const EGG::Vector3fcurTangentDir () const
 
bool isMovementDirectionForward () const
 

Private Member Functions

void calcNextSegment ()
 
EGG::Vector3f lerp (f32 t, u32 currIdx, u32 nextIdx) const
 

Private Attributes

EGG::Vector3f m_currentDirection
 
std::span< RailLineTransitionm_transitions
 

Additional Inherited Members

- Public Types inherited from Field::RailInterpolator
enum class  Status {
  InProgress = 0 ,
  SegmentEnd = 1 ,
  ChangingDirection = 2
}
 
- Protected Member Functions inherited from Field::RailInterpolator
void updateVel ()
 
void calcVelocities ()
 
bool shouldChangeDirection () const
 
void calcDirectionChange ()
 
void calcNextIndices ()
 
- Protected Attributes inherited from Field::RailInterpolator
s16 m_railIdx
 
u16 m_pointCount
 
std::span< System::MapdataPointInfo::Pointm_points
 
bool m_isOscillating
 
f32 m_speed
 
bool m_usePerPointVelocities
 
EGG::Vector3f m_curPos
 
EGG::Vector3f m_curTangentDir
 
f32 m_currVel
 
f32 m_prevPointVel
 
f32 m_nextPointVel
 
f32 m_currSegmentVel
 
f32 m_segmentT
 
bool m_movementDirectionForward
 
s16 m_currPointIdx
 
s16 m_nextPointIdx
 
bool m_4a
 

Constructor & Destructor Documentation

◆ RailLinearInterpolator()

Field::RailLinearInterpolator::RailLinearInterpolator ( f32 speed,
u32 idx )
0x806EFDC4

Definition at line 95 of file RailInterpolator.cc.

Member Function Documentation

◆ calc()

RailInterpolator::Status Field::RailLinearInterpolator::calc ( )
overridevirtual0x806F0050

Implements Field::RailInterpolator.

Definition at line 125 of file RailInterpolator.cc.

◆ calcNextSegment()

void Field::RailLinearInterpolator::calcNextSegment ( )
private0x806F0610

Definition at line 218 of file RailInterpolator.cc.

◆ evalCubicBezierOnPath()

void Field::RailLinearInterpolator::evalCubicBezierOnPath ( f32 t,
EGG::Vector3f & currDir,
EGG::Vector3f & curTangentDir )
overridevirtual0x806F02EC

Implements Field::RailInterpolator.

Definition at line 168 of file RailInterpolator.cc.

◆ getCurrVel()

f32 Field::RailLinearInterpolator::getCurrVel ( )
inlinenodiscardoverridevirtual0x806F0944

Implements Field::RailInterpolator.

Definition at line 94 of file RailInterpolator.hh.

◆ getPathLocation()

void Field::RailLinearInterpolator::getPathLocation ( f32 t,
s16 & idx,
f32 & len )
overridevirtual0x806F041C

Implements Field::RailInterpolator.

Definition at line 185 of file RailInterpolator.cc.

◆ init()

void Field::RailLinearInterpolator::init ( f32 t,
u32 idx )
overridevirtual0x806EFEAC

Implements Field::RailInterpolator.

Definition at line 104 of file RailInterpolator.cc.

◆ lerp()

EGG::Vector3f Field::RailLinearInterpolator::lerp ( f32 t,
u32 currIdx,
u32 nextIdx ) const
private0x806F0540

Definition at line 239 of file RailInterpolator.cc.

◆ setCurrVel()

void Field::RailLinearInterpolator::setCurrVel ( f32 speed)
overridevirtual0x806EFFF4

Implements Field::RailInterpolator.

Definition at line 162 of file RailInterpolator.cc.

Member Data Documentation

◆ m_currentDirection

EGG::Vector3f Field::RailLinearInterpolator::m_currentDirection
private

Definition at line 106 of file RailInterpolator.hh.

◆ m_transitions

std::span<RailLineTransition> Field::RailLinearInterpolator::m_transitions
private

Definition at line 107 of file RailInterpolator.hh.