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

#include <KartMove.hh>

Description

Responsible for reacting to player inputs and moving the kart.

Definition at line 18 of file KartMove.hh.

Inheritance diagram for Kart::KartMove:

Classes

struct  DriftingParameters
 Houses parameters that vary between the drift type (inward bike, outward bike, kart). More...
 
struct  JumpPadProperties
 

Public Types

enum class  ePadType {
  BoostPanel = 0 ,
  BoostRamp = 1 ,
  JumpPad = 2
}
 
typedef EGG::TBitFlag< u32, ePadType > PadType
 

Public Member Functions

virtual void createSubsystems ()
 
virtual void calcTurn ()
 Each frame, looks at player input and kart stats. Saves turn-related info.
 
virtual void calcWheelie ()
 
virtual void setTurnParams ()
 
virtual void init (bool b1, bool b2)
 
virtual void clear ()
 
virtual f32 leanRot () const
 
void setInitialPhysicsValues (const EGG::Vector3f &position, const EGG::Vector3f &angles)
 Initializes the kart's position and rotation. Calls tire suspension initializers.
 
void resetDriftManual ()
 Clears drift state. Called when touching ground and drift is canceled.
 
void calc ()
 Each frame, calculates the kart's movement.
 
void calcRespawnStart ()
 
void calcInRespawn ()
 
void calcRespawnBoost ()
 
void calcTop ()
 
void calcAirtimeTop ()
 Calculates rotation of the bike due to excessive airtime.
 
void calcSpecialFloor ()
 Every frame, calculates any boost resulting from a boost panel.
 
void calcDirs ()
 
void calcStickyRoad ()
 
void calcOffroad ()
 Each frame, computes rotation and speed scalars from the floor KCL.
 
void calcBoost ()
 
void calcRampBoost ()
 
void calcDisableBackwardsAccel ()
 Computes the current cooldown duration between braking and reversing.
 
void calcSsmt ()
 Calculates standstill mini-turbo components, if applicable.
 
bool calcPreDrift ()
 Each frame, checks for hop or slipdrift. Computes drift direction based on player input.
 
void calcAutoDrift ()
 Each frame, handles automatic transmission drifting.
 
void calcManualDrift ()
 Each frame, handles hopping, drifting, and mini-turbos.
 
void startManualDrift ()
 Called when the player lands from a drift hop, or to start a slipdrift.
 
void clearDrift ()
 
void clearJumpPad ()
 
void clearRampBoost ()
 
void clearZipperBoost ()
 
void clearBoost ()
 
void clearSsmt ()
 
void clearOffroadInvincibility ()
 
void clearRejectRoad ()
 
void releaseMt ()
 Stops charging a mini-turbo, and applies boost if charged.
 
void controlOutsideDriftAngle ()
 Every frame, handles mini-turbo charging and outside drifting bike rotation.
 
void calcRotation ()
 Every frame, calculates kart rotation based on player input.
 
void calcVehicleSpeed ()
 Every frame, computes speed based on acceleration and any active boosts.
 
void calcDeceleration ()
 
f32 calcVehicleAcceleration () const
 Every frame, computes acceleration based off the character/vehicle stats.
 
void calcAcceleration ()
 Every frame, applies acceleration to the kart's internal velocity.
 
f32 calcWallCollisionSpeedFactor (f32 &f1)
 Every frame, computes a speed scalar if we are colliding with a wall.
 
void calcWallCollisionStart (f32 param_2)
 If we started to collide with a wall this frame, applies rotation.
 
void calcStandstillBoostRot ()
 STAGE Computes the x-component of angular velocity based on the kart's speed.
 
void calcDive ()
 Responds to player input to handle up/down kart tilt mid-air.
 
void calcSsmtStart ()
 Calculates whether we are starting a standstill mini-turbo.
 
void calcHopPhysics ()
 
void calcRejectRoad ()
 
bool calcZipperCollision (f32 radius, f32 scale, EGG::Vector3f &pos, EGG::Vector3f &upLocal, const EGG::Vector3f &prevPos, Field::CollisionInfo *colInfo, Field::KCLTypeMask *maskOut, Field::KCLTypeMask flags) const
 
f32 calcSlerpRate (f32 scale, const EGG::Quatf &from, const EGG::Quatf &to) const
 
virtual void calcVehicleRotation (f32 turn)
 Every frame, calculates rotation, EV, and angular velocity for the kart.
 
virtual void hop ()
 Initializes hop information, resets upwards EV and clears upwards force.
 
virtual void onHop ()
 
virtual void onWallCollision ()
 
virtual void calcMtCharge ()
 Every frame during a drift, calculates MT/SMT charge based on player input.
 
virtual void initOob ()
 
virtual f32 getWheelieSoftSpeedLimitBonus () const
 Returns the % speed boost from wheelies. For karts, this is always 0.
 
virtual bool canWheelie () const
 
virtual bool canHop () const
 
bool canStartDrift () const
 
void tryStartBoostPanel ()
 
void tryStartBoostRamp ()
 Sets offroad invincibility and and enables the ramp boost bitfield flag.
 
void tryStartJumpPad ()
 Applies calculations to start interacting with a jump pad.
 
void tryEndJumpPad ()
 
void cancelJumpPad ()
 
void activateBoost (KartBoost::Type type, s16 frames)
 
void applyStartBoost (s16 frames)
 
void activateMushroom ()
 
void activateZipperBoost ()
 
void setOffroadInvincibility (s16 timer)
 Ignores offroad KCL collision for a set amount of time.
 
void calcOffroadInvincibility ()
 Checks a timer to see if we are still ignoring offroad slowdown.
 
void calcMushroomBoost ()
 Checks a timer to see if we are still boosting from a mushroom.
 
void calcZipperBoost ()
 
void landTrick ()
 
void enterCannon ()
 
void calcCannon ()
 
void calcRotCannon (const EGG::Vector3f &forward)
 
void exitCannon ()
 
void triggerRespawn ()
 

Setters

void setSpeed (f32 val)
 
void setSmoothedUp (const EGG::Vector3f &v)
 
void setUp (const EGG::Vector3f &v)
 
void setDir (const EGG::Vector3f &v)
 
void setVel1Dir (const EGG::Vector3f &v)
 
void setFloorCollisionCount (u16 count)
 
void setKCLWheelSpeedFactor (f32 val)
 
void setKCLWheelRotFactor (f32 val)
 
void setKartSpeedLimit ()
 

Getters

s32 getAppliedHopStickX () const
 Factors in vehicle speed to retrieve our hop direction and magnitude.
 
f32 softSpeedLimit () const
 
f32 speed () const
 
f32 acceleration () const
 
const EGG::Vector3fscale () const
 
f32 hardSpeedLimit () const
 
const EGG::Vector3fsmoothedUp () const
 
const EGG::Vector3fup () const
 
f32 totalScale () const
 
f32 hitboxScale () const
 
const EGG::Vector3fdir () const
 
const EGG::Vector3flastDir () const
 
const EGG::Vector3fvel1Dir () const
 
f32 speedRatioCapped () const
 
f32 speedRatio () const
 
u16 floorCollisionCount () const
 
s32 hopStickX () const
 
f32 hopPosY () const
 
s16 respawnTimer () const
 
s16 respawnPostLandTimer () const
 
PadTypepadType ()
 
KartJumpjump () const
 
KartHalfPipehalfPipe () const
 
KartBurnoutburnout ()
 

Protected Types

enum class  eFlags {
  Respawned = 0 ,
  DriftReset = 1 ,
  SsmtCharged = 2 ,
  LaunchBoost = 4 ,
  SsmtLeeway = 5 ,
  TrickableSurface = 6 ,
  WallBounce = 8
}
 
enum class  DriftState {
  NotDrifting = 0 ,
  ChargingMt = 1 ,
  ChargedMt = 2 ,
  ChargingSmt = 2 ,
  ChargedSmt = 3
}
 
enum class  DrivingDirection {
  Forwards = 0 ,
  Braking = 1 ,
  WaitingForBackwards = 2 ,
  Backwards = 3
}
 The direction the player is currently driving in. More...
 
typedef EGG::TBitFlag< u16, eFlagsFlags
 

Protected Attributes

f32 m_baseSpeed
 The speed associated with the current character/vehicle stats.
 
f32 m_softSpeedLimit
 Base speed + boosts + wheelies, restricted to the hard speed limit.
 
f32 m_speed
 Current speed, restricted to the soft speed limit.
 
f32 m_lastSpeed
 Last frame's speed, cached to calculate angular velocity.
 
f32 m_processedSpeed
 Offset 0x28. It's only ever just a copy of m_speed.
 
f32 m_hardSpeedLimit
 Absolute speed cap. It's 120, unless you're in a bullet (140).
 
f32 m_acceleration
 Captures the acceleration from player input and boosts.
 
f32 m_speedDragMultiplier
 After 5 frames of airtime, this causes speed to slowly decay.
 
EGG::Vector3f m_smoothedUp
 A smoothed up vector, mostly used after significant airtime.
 
EGG::Vector3f m_up
 Vector perpendicular to the floor, pointing upwards.
 
EGG::Vector3f m_landingDir
 
EGG::Vector3f m_dir
 
EGG::Vector3f m_lastDir
 m_speed from the previous frame but with signed magnitude.
 
EGG::Vector3f m_vel1Dir
 
EGG::Vector3f m_dirDiff
 
bool m_hasLandingDir
 
f32 m_outsideDriftAngle
 The facing angle of an outward-drifting vehicle.
 
f32 m_landingAngle
 
EGG::Vector3f m_outsideDriftLastDir
 Used to compute the next m_outsideDriftAngle.
 
f32 m_speedRatioCapped
 m_speedRatio but capped at 1.0f.
 
f32 m_speedRatio
 The ratio between current speed and the player's base speed stat.
 
f32 m_kclSpeedFactor
 Float between 0-1 that scales the player's speed on offroad.
 
f32 m_kclRotFactor
 Float between 0-1 that scales the player's turning radius on offroad.
 
f32 m_kclWheelSpeedFactor
 The slowest speed multiplier of each wheel's floor collision.
 
f32 m_kclWheelRotFactor
 The slowest rotation multiplier of each wheel's floor collision.
 
u16 m_floorCollisionCount
 The number of tires colliding with the floor.
 
s32 m_hopStickX
 A ternary for the direction of our hop, 0 if still neutral hopping.
 
s32 m_hopFrame
 A timer that can prevent subsequent hops until reset.
 
EGG::Vector3f m_hopUp
 The up vector when hopping.
 
EGG::Vector3f m_hopDir
 Used for outward drift. Tracks the forward vector of our rotation.
 
f32 m_divingRot
 Induces x-axis angular velocity based on up/down stick input.
 
f32 m_standStillBoostRot
 
DriftState m_driftState
 
u16 m_mtCharge
 A value between 0 and 270 representing current MT charge.
 
u16 m_smtCharge
 A value between 0 and 300 representing current SMT charge.
 
f32 m_outsideDriftBonus
 Added to angular velocity when outside drifting.
 
KartBoost m_boost
 
s16 m_zipperBoostTimer
 
s16 m_zipperBoostMax
 
KartReject m_reject
 
s16 m_offroadInvincibility
 How many frames until the player is affected by offroad.
 
s16 m_ssmtCharge
 Increments every frame up to 75 when charging stand-still MT.
 
s16 m_ssmtLeewayTimer
 Frames to forgive letting go of A before clearing SSMT charge.
 
s16 m_ssmtDisableAccelTimer
 Counter that tracks delay before starting to reverse.
 
f32 m_realTurn
 The "true" turn magnitude. Equal to m_weightedTurn unless drifting.
 
f32 m_weightedTurn
 Magnitude+direction of stick input, factoring in the kart's stats.
 
EGG::Vector3f m_scale
 [Unused] Always 1.0f
 
f32 m_totalScale
 [Unused] Always 1.0f
 
f32 m_hitboxScale
 
u16 m_mushroomBoostTimer
 Number of frames until the mushroom boost runs out.
 
u32 m_nonZipperAirtime
 
f32 m_jumpPadMinSpeed
 Snaps the player to a minimum speed when first touching a jump pad.
 
f32 m_jumpPadMaxSpeed
 
const JumpPadPropertiesm_jumpPadProperties
 
u16 m_rampBoost
 
f32 m_autoDriftAngle
 
s16 m_autoDriftStartFrameCounter
 
f32 m_cannonEntryOfsLength
 
EGG::Vector3f m_cannonEntryPos
 
EGG::Vector3f m_cannonEntryOfs
 
EGG::Vector3f m_cannonOrthog
 
EGG::Vector3f m_cannonProgress
 
f32 m_hopVelY
 Relative velocity due to a hop. Starts at 10 and decreases with gravity.
 
f32 m_hopPosY
 Relative position as the result of a hop. Starts at 0.
 
f32 m_hopGravity
 Always main gravity (-1.3f).
 
s16 m_timeInRespawn
 The number of frames elapsed after position snap from respawn.
 
s16 m_respawnPreLandTimer
 Counts down from 4 when pressing A before landing from respawn.
 
s16 m_respawnPostLandTimer
 Counts up to 4 if not accelerating after respawn landing.
 
s16 m_respawnTimer
 
DrivingDirection m_drivingDirection
 Current state of driver's direction.
 
s16 m_backwardsAllowCounter
 Tracks the 15f delay before reversing.
 
PadType m_padType
 
Flags m_flags
 
KartJumpm_jump
 
KartHalfPipem_halfPipe
 Pertains to zipper physics.
 
KartBurnout m_burnout
 Manages the state of start boost burnout.
 
const DriftingParametersm_driftingParams
 Drift-type-specific parameters.
 
f32 m_rawTurn
 Float in range [-1, 1]. Represents stick magnitude + direction.
 

Additional Inherited Members

- Protected Member Functions inherited from Kart::KartObjectProxy
void apply (size_t idx)
 
void setPos (const EGG::Vector3f &pos)
 
void setRot (const EGG::Quatf &q)
 
void setInertiaScale (const EGG::Vector3f &scale)
 
KartActionaction ()
 
const KartActionaction () const
 
KartBodybody ()
 
const KartBodybody () const
 
KartCollidecollide ()
 
const KartCollidecollide () const
 
CollisionGroupcollisionGroup ()
 
const CollisionGroupcollisionGroup () const
 
KartMovemove ()
 
const KartMovemove () const
 
KartHalfPipehalfPipe ()
 
const KartHalfPipehalfPipe () const
 
KartJumpjump ()
 
const KartJumpjump () const
 
KartParamparam ()
 
const KartParamparam () const
 
const BSPbsp () const
 
KartPhysicsphysics ()
 
const KartPhysicsphysics () const
 
KartDynamicsdynamics ()
 
const KartDynamicsdynamics () const
 
KartStatestate ()
 
const KartStatestate () const
 
KartSubsub ()
 
const KartSubsub () const
 
KartSuspensionsuspension (u16 suspIdx)
 
const KartSuspensionsuspension (u16 suspIdx) const
 
KartSuspensionPhysicssuspensionPhysics (u16 suspIdx)
 
const KartSuspensionPhysicssuspensionPhysics (u16 suspIdx) const
 
KartTiretire (u16 tireIdx)
 
const KartTiretire (u16 tireIdx) const
 
WheelPhysicstirePhysics (u16 tireIdx)
 
const WheelPhysicstirePhysics (u16 tireIdx) const
 
CollisionDatacollisionData ()
 
const CollisionDatacollisionData () const
 
CollisionDatacollisionData (u16 tireIdx)
 
const CollisionDatacollisionData (u16 tireIdx) const
 
const System::KPadinputs () const
 
Render::KartModelmodel ()
 
const Render::KartModelmodel () const
 
Field::ObjectCollisionKartobjectCollisionKart ()
 
const Field::ObjectCollisionKartobjectCollisionKart () const
 
Field::BoxColUnitboxColUnit ()
 
const Field::BoxColUnitboxColUnit () const
 
const EGG::Vector3fscale () const
 
const EGG::Matrix34fpose () const
 
EGG::Vector3f bodyFront () const
 Returns the third column of the rotation matrix, which is the facing vector.
 
EGG::Vector3f bodyForward () const
 Returns the first column of the rotation matrix, which is the "right" direction.
 
EGG::Vector3f bodyUp () const
 Returns the second column of the rotation matrix, which is the "up" direction.
 
const EGG::Vector3fcomponentXAxis () const
 
const EGG::Vector3fcomponentYAxis () const
 
const EGG::Vector3fcomponentZAxis () const
 
const EGG::Vector3fpos () const
 
const EGG::Vector3fprevPos () const
 
const EGG::QuatffullRot () const
 
const EGG::Vector3fextVel () const
 
const EGG::Vector3fintVel () const
 
const EGG::Vector3fvelocity () const
 
f32 speed () const
 
f32 acceleration () const
 
f32 softSpeedLimit () const
 
const EGG::QuatfmainRot () const
 
const EGG::Vector3fangVel2 () const
 
bool isBike () const
 
u16 suspCount () const
 
u16 tireCount () const
 
bool hasFloorCollision (const WheelPhysics *wheelPhysics) const
 
std::pair< EGG::Vector3f, EGG::Vector3fgetCannonPosRot ()
 
f32 speedRatio () const
 
f32 speedRatioCapped () const
 
bool isInRespawn () const
 
- Static Protected Member Functions inherited from Kart::KartObjectProxy
static std::list< KartObjectProxy * > & proxyList ()
 

Member Typedef Documentation

◆ Flags

Definition at line 304 of file KartMove.hh.

◆ PadType

Definition at line 26 of file KartMove.hh.

Member Enumeration Documentation

◆ DriftState

enum class Kart::KartMove::DriftState
strongprotected

Definition at line 306 of file KartMove.hh.

◆ DrivingDirection

enum class Kart::KartMove::DrivingDirection
strongprotected

The direction the player is currently driving in.

Enumerator
WaitingForBackwards 

Holding reverse but waiting on a 15 frame delay.

Definition at line 315 of file KartMove.hh.

◆ eFlags

enum class Kart::KartMove::eFlags
strongprotected
Enumerator
Respawned 

Set when Lakitu lets go of the player, cleared when landing.

DriftReset 

Set when a wall bonk should cancel your drift.

SsmtCharged 

Set after holding a stand-still mini-turbo for 75 frames.

SsmtLeeway 

If set, activates SSMT when not pressing A or B.

TrickableSurface 

Set when driving on a trickable surface.

WallBounce 

Set when our speed loss from wall collision is > 30.0f.

Definition at line 295 of file KartMove.hh.

◆ ePadType

enum class Kart::KartMove::ePadType
strong

Definition at line 20 of file KartMove.hh.

Constructor & Destructor Documentation

◆ KartMove()

Kart::KartMove::KartMove ( )
0x80577FC4

Definition at line 41 of file KartMove.cc.

◆ ~KartMove()

Kart::KartMove::~KartMove ( )
virtual0x80587B78

Definition at line 50 of file KartMove.cc.

Member Function Documentation

◆ acceleration()

f32 Kart::KartMove::acceleration ( ) const
inlinenodiscard

Definition at line 209 of file KartMove.hh.

◆ activateBoost()

void Kart::KartMove::activateBoost ( KartBoost::Type type,
s16 frames )
0x8057F090

Definition at line 1881 of file KartMove.cc.

◆ activateMushroom()

void Kart::KartMove::activateMushroom ( )
0x8057F3D8

Definition at line 1893 of file KartMove.cc.

◆ activateZipperBoost()

void Kart::KartMove::activateZipperBoost ( )
0x8057F96C

Definition at line 1908 of file KartMove.cc.

◆ applyStartBoost()

void Kart::KartMove::applyStartBoost ( s16 frames)
0x8058212C

Definition at line 1888 of file KartMove.cc.

◆ burnout()

KartBurnout & Kart::KartMove::burnout ( )
inlinenodiscard

Definition at line 289 of file KartMove.hh.

◆ calc()

void Kart::KartMove::calc ( )
0x805788DC

Each frame, calculates the kart's movement.

Stage: All

Calls various functions to handle drifts, hops, boosts. Afterwards, calculates the kart's speed and rotation.

Definition at line 265 of file KartMove.cc.

◆ calcAcceleration()

void Kart::KartMove::calcAcceleration ( )
0x8057B9BC

Every frame, applies acceleration to the kart's internal velocity.

Stage: 2

Definition at line 1309 of file KartMove.cc.

◆ calcAirtimeTop()

void Kart::KartMove::calcAirtimeTop ( )
0x8057D888

Calculates rotation of the bike due to excessive airtime.

Definition at line 456 of file KartMove.cc.

◆ calcAutoDrift()

void Kart::KartMove::calcAutoDrift ( )
0x8057E0DC

Each frame, handles automatic transmission drifting.

Stage: 2

Definition at line 859 of file KartMove.cc.

◆ calcBoost()

void Kart::KartMove::calcBoost ( )
0x80582694

Definition at line 650 of file KartMove.cc.

◆ calcCannon()

void Kart::KartMove::calcCannon ( )
0x80584D58

Definition at line 2046 of file KartMove.cc.

◆ calcDeceleration()

void Kart::KartMove::calcDeceleration ( )
0x8057B028
Stage: 2

Definition at line 1261 of file KartMove.cc.

◆ calcDirs()

void Kart::KartMove::calcDirs ( )
0x8057A140

Definition at line 501 of file KartMove.cc.

◆ calcDisableBackwardsAccel()

void Kart::KartMove::calcDisableBackwardsAccel ( )
Inlined in 0x805828CC

Computes the current cooldown duration between braking and reversing.

Stage: 2

Definition at line 676 of file KartMove.cc.

◆ calcDive()

void Kart::KartMove::calcDive ( )
0x805869DC

Responds to player input to handle up/down kart tilt mid-air.

Stage: 2

Definition at line 1557 of file KartMove.cc.

◆ calcHopPhysics()

void Kart::KartMove::calcHopPhysics ( )
0x80579968

Definition at line 1629 of file KartMove.cc.

◆ calcInRespawn()

void Kart::KartMove::calcInRespawn ( )
0x80579A50

Definition at line 327 of file KartMove.cc.

◆ calcManualDrift()

void Kart::KartMove::calcManualDrift ( )
0x8057DC44

Each frame, handles hopping, drifting, and mini-turbos.

Stage: 2

Definition at line 911 of file KartMove.cc.

◆ calcMtCharge()

void Kart::KartMove::calcMtCharge ( )
virtual0x8057EE50

Every frame during a drift, calculates MT/SMT charge based on player input.

Stage: 2

Reimplemented in Kart::KartMoveBike.

Definition at line 1710 of file KartMove.cc.

◆ calcMushroomBoost()

void Kart::KartMove::calcMushroomBoost ( )

Checks a timer to see if we are still boosting from a mushroom.

Stage: 2

Definition at line 1954 of file KartMove.cc.

◆ calcOffroad()

void Kart::KartMove::calcOffroad ( )
0x8057C3D4

Each frame, computes rotation and speed scalars from the floor KCL.

Stage: 2

Definition at line 621 of file KartMove.cc.

◆ calcOffroadInvincibility()

void Kart::KartMove::calcOffroadInvincibility ( )
0x805824F0

Checks a timer to see if we are still ignoring offroad slowdown.

Stage: 2

Definition at line 1940 of file KartMove.cc.

◆ calcPreDrift()

bool Kart::KartMove::calcPreDrift ( )
0x8057E804

Each frame, checks for hop or slipdrift. Computes drift direction based on player input.

Stage: 2
Returns
Whether or not we are hopping or slipdrifting.

Definition at line 746 of file KartMove.cc.

◆ calcRampBoost()

void Kart::KartMove::calcRampBoost ( )
0x80582804

Definition at line 661 of file KartMove.cc.

◆ calcRejectRoad()

void Kart::KartMove::calcRejectRoad ( )
0x80579960

Definition at line 1640 of file KartMove.cc.

◆ calcRespawnBoost()

void Kart::KartMove::calcRespawnBoost ( )
0x80581C90

Definition at line 351 of file KartMove.cc.

◆ calcRespawnStart()

void Kart::KartMove::calcRespawnStart ( )
0x80584334

Definition at line 307 of file KartMove.cc.

◆ calcRotation()

void Kart::KartMove::calcRotation ( )
0x8057C69C

Every frame, calculates kart rotation based on player input.

Stage: 1+

Definition at line 1086 of file KartMove.cc.

◆ calcRotCannon()

void Kart::KartMove::calcRotCannon ( const EGG::Vector3f & forward)
0x805855BC

Definition at line 2108 of file KartMove.cc.

◆ calcSlerpRate()

f32 Kart::KartMove::calcSlerpRate ( f32 scale,
const EGG::Quatf & from,
const EGG::Quatf & to ) const
0x805879A4

Definition at line 1656 of file KartMove.cc.

◆ calcSpecialFloor()

void Kart::KartMove::calcSpecialFloor ( )
0x80587590

Every frame, calculates any boost resulting from a boost panel.

Stage: 2

Definition at line 479 of file KartMove.cc.

◆ calcSsmt()

void Kart::KartMove::calcSsmt ( )
0x805828CC

Calculates standstill mini-turbo components, if applicable.

Stage: 2

Definition at line 691 of file KartMove.cc.

◆ calcSsmtStart()

void Kart::KartMove::calcSsmtStart ( )
Inlined in 0x805788DC

Calculates whether we are starting a standstill mini-turbo.

Stage: 2

Definition at line 1616 of file KartMove.cc.

◆ calcStandstillBoostRot()

void Kart::KartMove::calcStandstillBoostRot ( )
0x8057D1D4

STAGE Computes the x-component of angular velocity based on the kart's speed.

Stage: 1+

Definition at line 1519 of file KartMove.cc.

◆ calcStickyRoad()

void Kart::KartMove::calcStickyRoad ( )
0x80583B88

Definition at line 576 of file KartMove.cc.

◆ calcTop()

void Kart::KartMove::calcTop ( )
0x8057D398

Definition at line 397 of file KartMove.cc.

◆ calcTurn()

void Kart::KartMove::calcTurn ( )
virtual0x8057A8B4

Each frame, looks at player input and kart stats. Saves turn-related info.

Stage: All

Definition at line 64 of file KartMove.cc.

◆ calcVehicleAcceleration()

f32 Kart::KartMove::calcVehicleAcceleration ( ) const
nodiscard0x8057B868

Every frame, computes acceleration based off the character/vehicle stats.

Stage: 2

Definition at line 1275 of file KartMove.cc.

◆ calcVehicleRotation()

void Kart::KartMove::calcVehicleRotation ( f32 turn)
virtual0x8057CF0C

Every frame, calculates rotation, EV, and angular velocity for the kart.

Reimplemented in Kart::KartMoveBike.

Definition at line 1664 of file KartMove.cc.

◆ calcVehicleSpeed()

void Kart::KartMove::calcVehicleSpeed ( )
0x8057AB68

Every frame, computes speed based on acceleration and any active boosts.

Stage: 2

Definition at line 1182 of file KartMove.cc.

◆ calcWallCollisionSpeedFactor()

f32 Kart::KartMove::calcWallCollisionSpeedFactor ( f32 & f1)
nodiscard0x8057B108

Every frame, computes a speed scalar if we are colliding with a wall.

Stage: 2

Definition at line 1432 of file KartMove.cc.

◆ calcWallCollisionStart()

void Kart::KartMove::calcWallCollisionStart ( f32 param_2)
0x8057B2A0

If we started to collide with a wall this frame, applies rotation.

Stage: 2

Definition at line 1463 of file KartMove.cc.

◆ calcWheelie()

virtual void Kart::KartMove::calcWheelie ( )
inlinevirtual

Reimplemented in Kart::KartMoveBike.

Definition at line 33 of file KartMove.hh.

◆ calcZipperBoost()

void Kart::KartMove::calcZipperBoost ( )
0x80582E34

Definition at line 1967 of file KartMove.cc.

◆ calcZipperCollision()

bool Kart::KartMove::calcZipperCollision ( f32 radius,
f32 scale,
EGG::Vector3f & pos,
EGG::Vector3f & upLocal,
const EGG::Vector3f & prevPos,
Field::CollisionInfo * colInfo,
Field::KCLTypeMask * maskOut,
Field::KCLTypeMask flags ) const
0x80583F2C

Definition at line 1645 of file KartMove.cc.

◆ cancelJumpPad()

void Kart::KartMove::cancelJumpPad ( )
0x80582DB4

Definition at line 1875 of file KartMove.cc.

◆ canHop()

virtual bool Kart::KartMove::canHop ( ) const
inlinevirtual0x8057DA18

Definition at line 110 of file KartMove.hh.

◆ canStartDrift()

bool Kart::KartMove::canStartDrift ( ) const
inline0x8057EA94

Definition at line 123 of file KartMove.hh.

◆ canWheelie()

virtual bool Kart::KartMove::canWheelie ( ) const
inlinevirtual0x8058758C

Reimplemented in Kart::KartMoveBike.

Definition at line 105 of file KartMove.hh.

◆ clear()

void Kart::KartMove::clear ( )
virtual0x8058348C

Definition at line 213 of file KartMove.cc.

◆ clearBoost()

void Kart::KartMove::clearBoost ( )
0x80582D94

Definition at line 832 of file KartMove.cc.

◆ clearDrift()

void Kart::KartMove::clearDrift ( )
0x8057E348
Stage: 2

Definition at line 798 of file KartMove.cc.

◆ clearJumpPad()

void Kart::KartMove::clearJumpPad ( )
0x80582DB4

Definition at line 814 of file KartMove.cc.

◆ clearOffroadInvincibility()

void Kart::KartMove::clearOffroadInvincibility ( )
0x80582F7C

Definition at line 846 of file KartMove.cc.

◆ clearRampBoost()

void Kart::KartMove::clearRampBoost ( )
0x80582DD8

Definition at line 820 of file KartMove.cc.

◆ clearRejectRoad()

void Kart::KartMove::clearRejectRoad ( )

Definition at line 851 of file KartMove.cc.

◆ clearSsmt()

void Kart::KartMove::clearSsmt ( )
0x80582F58

Definition at line 838 of file KartMove.cc.

◆ clearZipperBoost()

void Kart::KartMove::clearZipperBoost ( )
0x80582F38

Definition at line 826 of file KartMove.cc.

◆ controlOutsideDriftAngle()

void Kart::KartMove::controlOutsideDriftAngle ( )
0x8057EAB8

Every frame, handles mini-turbo charging and outside drifting bike rotation.

Stage: 2

Definition at line 1053 of file KartMove.cc.

◆ createSubsystems()

void Kart::KartMove::createSubsystems ( )
virtual0x8057821C

Definition at line 56 of file KartMove.cc.

◆ dir()

const EGG::Vector3f & Kart::KartMove::dir ( ) const
inlinenodiscard

Definition at line 237 of file KartMove.hh.

◆ enterCannon()

void Kart::KartMove::enterCannon ( )
0x8058498C

Definition at line 2014 of file KartMove.cc.

◆ exitCannon()

void Kart::KartMove::exitCannon ( )
0x805852C8

Definition at line 2128 of file KartMove.cc.

◆ floorCollisionCount()

u16 Kart::KartMove::floorCollisionCount ( ) const
inlinenodiscard

Definition at line 257 of file KartMove.hh.

◆ getAppliedHopStickX()

s32 Kart::KartMove::getAppliedHopStickX ( ) const
inlinenodiscard0x8057EFF8

Factors in vehicle speed to retrieve our hop direction and magnitude.

Returns
0.0f if we are too slow to drift, otherwise the hop direction.

Definition at line 197 of file KartMove.hh.

◆ getWheelieSoftSpeedLimitBonus()

virtual f32 Kart::KartMove::getWheelieSoftSpeedLimitBonus ( ) const
inlinenodiscardvirtual0x8057C3C8

Returns the % speed boost from wheelies. For karts, this is always 0.

Stage: 2

Reimplemented in Kart::KartMoveBike.

Definition at line 100 of file KartMove.hh.

◆ halfPipe()

KartHalfPipe * Kart::KartMove::halfPipe ( ) const
inlinenodiscard

Definition at line 285 of file KartMove.hh.

◆ hardSpeedLimit()

f32 Kart::KartMove::hardSpeedLimit ( ) const
inlinenodiscard

Definition at line 217 of file KartMove.hh.

◆ hitboxScale()

f32 Kart::KartMove::hitboxScale ( ) const
inlinenodiscard

Definition at line 233 of file KartMove.hh.

◆ hop()

void Kart::KartMove::hop ( )
virtual0x8057DA5C

Initializes hop information, resets upwards EV and clears upwards force.

Stage: 2

Definition at line 1765 of file KartMove.cc.

◆ hopPosY()

f32 Kart::KartMove::hopPosY ( ) const
inlinenodiscard

Definition at line 265 of file KartMove.hh.

◆ hopStickX()

s32 Kart::KartMove::hopStickX ( ) const
inlinenodiscard

Definition at line 261 of file KartMove.hh.

◆ init()

void Kart::KartMove::init ( bool b1,
bool b2 )
virtual0x805784D4

Definition at line 125 of file KartMove.cc.

◆ initOob()

virtual void Kart::KartMove::initOob ( )
inlinevirtual

Definition at line 95 of file KartMove.hh.

◆ jump()

KartJump * Kart::KartMove::jump ( ) const
inlinenodiscard

Definition at line 281 of file KartMove.hh.

◆ landTrick()

void Kart::KartMove::landTrick ( )
0x8057F7A8

Definition at line 1987 of file KartMove.cc.

◆ lastDir()

const EGG::Vector3f & Kart::KartMove::lastDir ( ) const
inlinenodiscard

Definition at line 241 of file KartMove.hh.

◆ leanRot()

virtual f32 Kart::KartMove::leanRot ( ) const
inlinenodiscardvirtual0x8058974C

Definition at line 39 of file KartMove.hh.

◆ onHop()

virtual void Kart::KartMove::onHop ( )
inlinevirtual

Reimplemented in Kart::KartMoveBike.

Definition at line 92 of file KartMove.hh.

◆ onWallCollision()

virtual void Kart::KartMove::onWallCollision ( )
inlinevirtual

Reimplemented in Kart::KartMoveBike.

Definition at line 93 of file KartMove.hh.

◆ padType()

PadType & Kart::KartMove::padType ( )
inlinenodiscard

Definition at line 277 of file KartMove.hh.

◆ releaseMt()

void Kart::KartMove::releaseMt ( )
0x80582F9C

Stops charging a mini-turbo, and applies boost if charged.

Stage: 2

Definition at line 1029 of file KartMove.cc.

◆ resetDriftManual()

void Kart::KartMove::resetDriftManual ( )
0x8057EA50

Clears drift state. Called when touching ground and drift is canceled.

Stage: All

Definition at line 786 of file KartMove.cc.

◆ respawnPostLandTimer()

s16 Kart::KartMove::respawnPostLandTimer ( ) const
inlinenodiscard

Definition at line 273 of file KartMove.hh.

◆ respawnTimer()

s16 Kart::KartMove::respawnTimer ( ) const
inlinenodiscard

Definition at line 269 of file KartMove.hh.

◆ scale()

const EGG::Vector3f & Kart::KartMove::scale ( ) const
inlinenodiscard

Definition at line 213 of file KartMove.hh.

◆ setDir()

void Kart::KartMove::setDir ( const EGG::Vector3f & v)
inline

Definition at line 165 of file KartMove.hh.

◆ setFloorCollisionCount()

void Kart::KartMove::setFloorCollisionCount ( u16 count)
inline

Definition at line 173 of file KartMove.hh.

◆ setInitialPhysicsValues()

void Kart::KartMove::setInitialPhysicsValues ( const EGG::Vector3f & position,
const EGG::Vector3f & angles )
0x80584044

Initializes the kart's position and rotation. Calls tire suspension initializers.

Definition at line 227 of file KartMove.cc.

◆ setKartSpeedLimit()

void Kart::KartMove::setKartSpeedLimit ( )
inline0x8057B9AC

Definition at line 186 of file KartMove.hh.

◆ setKCLWheelRotFactor()

void Kart::KartMove::setKCLWheelRotFactor ( f32 val)
inline

Definition at line 181 of file KartMove.hh.

◆ setKCLWheelSpeedFactor()

void Kart::KartMove::setKCLWheelSpeedFactor ( f32 val)
inline

Definition at line 177 of file KartMove.hh.

◆ setOffroadInvincibility()

void Kart::KartMove::setOffroadInvincibility ( s16 timer)
0x805824C8

Ignores offroad KCL collision for a set amount of time.

Stage: 2
Parameters
timerFramecount to ignore offroad

Definition at line 1929 of file KartMove.cc.

◆ setSmoothedUp()

void Kart::KartMove::setSmoothedUp ( const EGG::Vector3f & v)
inline

Definition at line 157 of file KartMove.hh.

◆ setSpeed()

void Kart::KartMove::setSpeed ( f32 val)
inline

Definition at line 153 of file KartMove.hh.

◆ setTurnParams()

void Kart::KartMove::setTurnParams ( )
virtual0x8057829C

Reimplemented in Kart::KartMoveBike.

Definition at line 108 of file KartMove.cc.

◆ setUp()

void Kart::KartMove::setUp ( const EGG::Vector3f & v)
inline

Definition at line 161 of file KartMove.hh.

◆ setVel1Dir()

void Kart::KartMove::setVel1Dir ( const EGG::Vector3f & v)
inline

Definition at line 169 of file KartMove.hh.

◆ smoothedUp()

const EGG::Vector3f & Kart::KartMove::smoothedUp ( ) const
inlinenodiscard

Definition at line 221 of file KartMove.hh.

◆ softSpeedLimit()

f32 Kart::KartMove::softSpeedLimit ( ) const
inlinenodiscard

Definition at line 201 of file KartMove.hh.

◆ speed()

f32 Kart::KartMove::speed ( ) const
inlinenodiscard

Definition at line 205 of file KartMove.hh.

◆ speedRatio()

f32 Kart::KartMove::speedRatio ( ) const
inlinenodiscard

Definition at line 253 of file KartMove.hh.

◆ speedRatioCapped()

f32 Kart::KartMove::speedRatioCapped ( ) const
inlinenodiscard

Definition at line 249 of file KartMove.hh.

◆ startManualDrift()

void Kart::KartMove::startManualDrift ( )
0x8057E3F4

Called when the player lands from a drift hop, or to start a slipdrift.

Stage: 2

Definition at line 986 of file KartMove.cc.

◆ totalScale()

f32 Kart::KartMove::totalScale ( ) const
inlinenodiscard

Definition at line 229 of file KartMove.hh.

◆ triggerRespawn()

void Kart::KartMove::triggerRespawn ( )
0x805799AC

Definition at line 2140 of file KartMove.cc.

◆ tryEndJumpPad()

void Kart::KartMove::tryEndJumpPad ( )
0x80582530

Definition at line 1868 of file KartMove.cc.

◆ tryStartBoostPanel()

void Kart::KartMove::tryStartBoostPanel ( )
Inlined at 0x80587590

Definition at line 1792 of file KartMove.cc.

◆ tryStartBoostRamp()

void Kart::KartMove::tryStartBoostRamp ( )
Inlined at 0x80587590

Sets offroad invincibility and and enables the ramp boost bitfield flag.

Stage: 2

Definition at line 1806 of file KartMove.cc.

◆ tryStartJumpPad()

void Kart::KartMove::tryStartJumpPad ( )
0x8057FD18

Applies calculations to start interacting with a jump pad.

Stage: 2

If applicable, updates external velocity

Definition at line 1822 of file KartMove.cc.

◆ up()

const EGG::Vector3f & Kart::KartMove::up ( ) const
inlinenodiscard

Definition at line 225 of file KartMove.hh.

◆ vel1Dir()

const EGG::Vector3f & Kart::KartMove::vel1Dir ( ) const
inlinenodiscard

Definition at line 245 of file KartMove.hh.

Member Data Documentation

◆ m_acceleration

f32 Kart::KartMove::m_acceleration
protected

Captures the acceleration from player input and boosts.

Definition at line 342 of file KartMove.hh.

◆ m_autoDriftAngle

f32 Kart::KartMove::m_autoDriftAngle
protected

Definition at line 391 of file KartMove.hh.

◆ m_autoDriftStartFrameCounter

s16 Kart::KartMove::m_autoDriftStartFrameCounter
protected

Definition at line 392 of file KartMove.hh.

◆ m_backwardsAllowCounter

s16 Kart::KartMove::m_backwardsAllowCounter
protected

Tracks the 15f delay before reversing.

Definition at line 406 of file KartMove.hh.

◆ m_baseSpeed

f32 Kart::KartMove::m_baseSpeed
protected

The speed associated with the current character/vehicle stats.

Definition at line 336 of file KartMove.hh.

◆ m_boost

KartBoost Kart::KartMove::m_boost
protected

Definition at line 372 of file KartMove.hh.

◆ m_burnout

KartBurnout Kart::KartMove::m_burnout
protected

Manages the state of start boost burnout.

Definition at line 411 of file KartMove.hh.

◆ m_cannonEntryOfs

EGG::Vector3f Kart::KartMove::m_cannonEntryOfs
protected

Definition at line 395 of file KartMove.hh.

◆ m_cannonEntryOfsLength

f32 Kart::KartMove::m_cannonEntryOfsLength
protected

Definition at line 393 of file KartMove.hh.

◆ m_cannonEntryPos

EGG::Vector3f Kart::KartMove::m_cannonEntryPos
protected

Definition at line 394 of file KartMove.hh.

◆ m_cannonOrthog

EGG::Vector3f Kart::KartMove::m_cannonOrthog
protected

Definition at line 396 of file KartMove.hh.

◆ m_cannonProgress

EGG::Vector3f Kart::KartMove::m_cannonProgress
protected

Definition at line 397 of file KartMove.hh.

◆ m_dir

EGG::Vector3f Kart::KartMove::m_dir
protected

Definition at line 347 of file KartMove.hh.

◆ m_dirDiff

EGG::Vector3f Kart::KartMove::m_dirDiff
protected

Definition at line 350 of file KartMove.hh.

◆ m_divingRot

f32 Kart::KartMove::m_divingRot
protected

Induces x-axis angular velocity based on up/down stick input.

Definition at line 366 of file KartMove.hh.

◆ m_driftingParams

const DriftingParameters* Kart::KartMove::m_driftingParams
protected

Drift-type-specific parameters.

Definition at line 412 of file KartMove.hh.

◆ m_driftState

DriftState Kart::KartMove::m_driftState
protected

Definition at line 368 of file KartMove.hh.

◆ m_drivingDirection

DrivingDirection Kart::KartMove::m_drivingDirection
protected

Current state of driver's direction.

Definition at line 405 of file KartMove.hh.

◆ m_flags

Flags Kart::KartMove::m_flags
protected

Definition at line 408 of file KartMove.hh.

◆ m_floorCollisionCount

u16 Kart::KartMove::m_floorCollisionCount
protected

The number of tires colliding with the floor.

Definition at line 361 of file KartMove.hh.

◆ m_halfPipe

KartHalfPipe* Kart::KartMove::m_halfPipe
protected

Pertains to zipper physics.

Definition at line 410 of file KartMove.hh.

◆ m_hardSpeedLimit

f32 Kart::KartMove::m_hardSpeedLimit
protected

Absolute speed cap. It's 120, unless you're in a bullet (140).

Definition at line 341 of file KartMove.hh.

◆ m_hasLandingDir

bool Kart::KartMove::m_hasLandingDir
protected

Definition at line 351 of file KartMove.hh.

◆ m_hitboxScale

f32 Kart::KartMove::m_hitboxScale
protected

Definition at line 384 of file KartMove.hh.

◆ m_hopDir

EGG::Vector3f Kart::KartMove::m_hopDir
protected

Used for outward drift. Tracks the forward vector of our rotation.

Definition at line 365 of file KartMove.hh.

◆ m_hopFrame

s32 Kart::KartMove::m_hopFrame
protected

A timer that can prevent subsequent hops until reset.

Definition at line 363 of file KartMove.hh.

◆ m_hopGravity

f32 Kart::KartMove::m_hopGravity
protected

Always main gravity (-1.3f).

Definition at line 400 of file KartMove.hh.

◆ m_hopPosY

f32 Kart::KartMove::m_hopPosY
protected

Relative position as the result of a hop. Starts at 0.

Definition at line 399 of file KartMove.hh.

◆ m_hopStickX

s32 Kart::KartMove::m_hopStickX
protected

A ternary for the direction of our hop, 0 if still neutral hopping.

Definition at line 362 of file KartMove.hh.

◆ m_hopUp

EGG::Vector3f Kart::KartMove::m_hopUp
protected

The up vector when hopping.

Definition at line 364 of file KartMove.hh.

◆ m_hopVelY

f32 Kart::KartMove::m_hopVelY
protected

Relative velocity due to a hop. Starts at 10 and decreases with gravity.

Definition at line 398 of file KartMove.hh.

◆ m_jump

KartJump* Kart::KartMove::m_jump
protected

Definition at line 409 of file KartMove.hh.

◆ m_jumpPadMaxSpeed

f32 Kart::KartMove::m_jumpPadMaxSpeed
protected

Definition at line 388 of file KartMove.hh.

◆ m_jumpPadMinSpeed

f32 Kart::KartMove::m_jumpPadMinSpeed
protected

Snaps the player to a minimum speed when first touching a jump pad.

Definition at line 387 of file KartMove.hh.

◆ m_jumpPadProperties

const JumpPadProperties* Kart::KartMove::m_jumpPadProperties
protected

Definition at line 389 of file KartMove.hh.

◆ m_kclRotFactor

f32 Kart::KartMove::m_kclRotFactor
protected

Float between 0-1 that scales the player's turning radius on offroad.

Definition at line 358 of file KartMove.hh.

◆ m_kclSpeedFactor

f32 Kart::KartMove::m_kclSpeedFactor
protected

Float between 0-1 that scales the player's speed on offroad.

Definition at line 357 of file KartMove.hh.

◆ m_kclWheelRotFactor

f32 Kart::KartMove::m_kclWheelRotFactor
protected

The slowest rotation multiplier of each wheel's floor collision.

Definition at line 360 of file KartMove.hh.

◆ m_kclWheelSpeedFactor

f32 Kart::KartMove::m_kclWheelSpeedFactor
protected

The slowest speed multiplier of each wheel's floor collision.

Definition at line 359 of file KartMove.hh.

◆ m_landingAngle

f32 Kart::KartMove::m_landingAngle
protected

Definition at line 353 of file KartMove.hh.

◆ m_landingDir

EGG::Vector3f Kart::KartMove::m_landingDir
protected

Definition at line 346 of file KartMove.hh.

◆ m_lastDir

EGG::Vector3f Kart::KartMove::m_lastDir
protected

m_speed from the previous frame but with signed magnitude.

Definition at line 348 of file KartMove.hh.

◆ m_lastSpeed

f32 Kart::KartMove::m_lastSpeed
protected

Last frame's speed, cached to calculate angular velocity.

Definition at line 339 of file KartMove.hh.

◆ m_mtCharge

u16 Kart::KartMove::m_mtCharge
protected

A value between 0 and 270 representing current MT charge.

Definition at line 369 of file KartMove.hh.

◆ m_mushroomBoostTimer

u16 Kart::KartMove::m_mushroomBoostTimer
protected

Number of frames until the mushroom boost runs out.

Definition at line 385 of file KartMove.hh.

◆ m_nonZipperAirtime

u32 Kart::KartMove::m_nonZipperAirtime
protected

Definition at line 386 of file KartMove.hh.

◆ m_offroadInvincibility

s16 Kart::KartMove::m_offroadInvincibility
protected

How many frames until the player is affected by offroad.

Definition at line 376 of file KartMove.hh.

◆ m_outsideDriftAngle

f32 Kart::KartMove::m_outsideDriftAngle
protected

The facing angle of an outward-drifting vehicle.

Definition at line 352 of file KartMove.hh.

◆ m_outsideDriftBonus

f32 Kart::KartMove::m_outsideDriftBonus
protected

Added to angular velocity when outside drifting.

Definition at line 371 of file KartMove.hh.

◆ m_outsideDriftLastDir

EGG::Vector3f Kart::KartMove::m_outsideDriftLastDir
protected

Used to compute the next m_outsideDriftAngle.

Definition at line 354 of file KartMove.hh.

◆ m_padType

PadType Kart::KartMove::m_padType
protected

Definition at line 407 of file KartMove.hh.

◆ m_processedSpeed

f32 Kart::KartMove::m_processedSpeed
protected

Offset 0x28. It's only ever just a copy of m_speed.

Definition at line 340 of file KartMove.hh.

◆ m_rampBoost

u16 Kart::KartMove::m_rampBoost
protected

Definition at line 390 of file KartMove.hh.

◆ m_rawTurn

f32 Kart::KartMove::m_rawTurn
protected

Float in range [-1, 1]. Represents stick magnitude + direction.

Definition at line 413 of file KartMove.hh.

◆ m_realTurn

f32 Kart::KartMove::m_realTurn
protected

The "true" turn magnitude. Equal to m_weightedTurn unless drifting.

Definition at line 380 of file KartMove.hh.

◆ m_reject

KartReject Kart::KartMove::m_reject
protected

Definition at line 375 of file KartMove.hh.

◆ m_respawnPostLandTimer

s16 Kart::KartMove::m_respawnPostLandTimer
protected

Counts up to 4 if not accelerating after respawn landing.

Definition at line 403 of file KartMove.hh.

◆ m_respawnPreLandTimer

s16 Kart::KartMove::m_respawnPreLandTimer
protected

Counts down from 4 when pressing A before landing from respawn.

Definition at line 402 of file KartMove.hh.

◆ m_respawnTimer

s16 Kart::KartMove::m_respawnTimer
protected

Definition at line 404 of file KartMove.hh.

◆ m_scale

EGG::Vector3f Kart::KartMove::m_scale
protected

[Unused] Always 1.0f

Definition at line 382 of file KartMove.hh.

◆ m_smoothedUp

EGG::Vector3f Kart::KartMove::m_smoothedUp
protected

A smoothed up vector, mostly used after significant airtime.

Definition at line 344 of file KartMove.hh.

◆ m_smtCharge

u16 Kart::KartMove::m_smtCharge
protected

A value between 0 and 300 representing current SMT charge.

Definition at line 370 of file KartMove.hh.

◆ m_softSpeedLimit

f32 Kart::KartMove::m_softSpeedLimit
protected

Base speed + boosts + wheelies, restricted to the hard speed limit.

Definition at line 337 of file KartMove.hh.

◆ m_speed

f32 Kart::KartMove::m_speed
protected

Current speed, restricted to the soft speed limit.

Definition at line 338 of file KartMove.hh.

◆ m_speedDragMultiplier

f32 Kart::KartMove::m_speedDragMultiplier
protected

After 5 frames of airtime, this causes speed to slowly decay.

Definition at line 343 of file KartMove.hh.

◆ m_speedRatio

f32 Kart::KartMove::m_speedRatio
protected

The ratio between current speed and the player's base speed stat.

Definition at line 356 of file KartMove.hh.

◆ m_speedRatioCapped

f32 Kart::KartMove::m_speedRatioCapped
protected

m_speedRatio but capped at 1.0f.

Definition at line 355 of file KartMove.hh.

◆ m_ssmtCharge

s16 Kart::KartMove::m_ssmtCharge
protected

Increments every frame up to 75 when charging stand-still MT.

Definition at line 377 of file KartMove.hh.

◆ m_ssmtDisableAccelTimer

s16 Kart::KartMove::m_ssmtDisableAccelTimer
protected

Counter that tracks delay before starting to reverse.

Definition at line 379 of file KartMove.hh.

◆ m_ssmtLeewayTimer

s16 Kart::KartMove::m_ssmtLeewayTimer
protected

Frames to forgive letting go of A before clearing SSMT charge.

Definition at line 378 of file KartMove.hh.

◆ m_standStillBoostRot

f32 Kart::KartMove::m_standStillBoostRot
protected

Definition at line 367 of file KartMove.hh.

◆ m_timeInRespawn

s16 Kart::KartMove::m_timeInRespawn
protected

The number of frames elapsed after position snap from respawn.

Definition at line 401 of file KartMove.hh.

◆ m_totalScale

f32 Kart::KartMove::m_totalScale
protected

[Unused] Always 1.0f

Definition at line 383 of file KartMove.hh.

◆ m_up

EGG::Vector3f Kart::KartMove::m_up
protected

Vector perpendicular to the floor, pointing upwards.

Definition at line 345 of file KartMove.hh.

◆ m_vel1Dir

EGG::Vector3f Kart::KartMove::m_vel1Dir
protected

Definition at line 349 of file KartMove.hh.

◆ m_weightedTurn

f32 Kart::KartMove::m_weightedTurn
protected

Magnitude+direction of stick input, factoring in the kart's stats.

Definition at line 381 of file KartMove.hh.

◆ m_zipperBoostMax

s16 Kart::KartMove::m_zipperBoostMax
protected

Definition at line 374 of file KartMove.hh.

◆ m_zipperBoostTimer

s16 Kart::KartMove::m_zipperBoostTimer
protected

Definition at line 373 of file KartMove.hh.