#include <KartState.hh>
Houses various flags and other variables to preserve the kart's state.
Most notably, this class is the direct observer of the input state, and sets the appropriate flags for KartMove to act upon the input state. This class also is responsible for managing calculations of the start boost duration.
Definition at line 12 of file KartState.hh.
Public Member Functions | |
void | init () |
void | reset () |
void | calcInput () |
Each frame, read input and save related bit flags. Also handles start boosts. | |
void | calc () |
Every frame, resets the input state and saves collision-related bit flags. | |
void | resetFlags () |
void | calcCollisions () |
Each frame, checks for collision and saves relevant bit flags. | |
void | calcStartBoost () |
STAGE 1 - Each frame, calculates the start boost charge. | |
void | calcHandleStartBoost () |
On countdown end, calculates and applies our start boost charge. | |
void | handleStartBoost (size_t idx) |
Applies the relevant start boost duration. | |
void | resetEjection () |
Resets certain bitfields pertaining to ejections (reject road, half pipe zippers, etc.) | |
Static Public Attributes | |
static constexpr std::array< StartBoostEntry, 6 > | START_BOOST_ENTRIES |
bitfield0 | |
The bitfield at offset 0x4. It mostly pertains to the input state and some collision info. | |
bool | m_bAccelerate |
Accel button is pressed. | |
bool | m_bBrake |
bool | m_bDriftInput |
A "fake" button, normally set if you meet the speed requirement to hop. | |
bool | m_bDriftManual |
Currently in a drift w/ manual. | |
bool | m_bBeforeRespawn |
Set on respawn collision, cleared on position snap. | |
bool | m_bWall3Collision |
Set when colliding with wall KCL COL_TYPE_WALL_2. | |
bool | m_bWallCollision |
Set if we are colliding with a wall. | |
bool | m_bHopStart |
Set if m_bDriftInput was toggled on this frame. | |
bool | m_bAccelerateStart |
Set if m_bAccelerate was toggled on this frame. | |
bool | m_bGroundStart |
Set first frame landing from airtime. | |
bool | m_bVehicleBodyFloorCollision |
Set if the vehicle body is colliding with the floor. | |
bool | m_bAnyWheelCollision |
Set when any wheel is touching floor collision. | |
bool | m_bAllWheelsCollision |
Set when all wheels are touching floor collision. | |
bool | m_bStickLeft |
Set on left stick input. Mutually exclusive to m_bStickRight. | |
bool | m_bWallCollisionStart |
Set if we have just started colliding with a wall. | |
bool | m_bAirtimeOver20 |
Set after 20 frames of airtime, resets on landing. | |
bool | m_bStickyRoad |
Like the rBC stairs. | |
bool | m_bTouchingGround |
Set when any part of the vehicle is colliding with floor KCL. | |
bool | m_bHop |
Set while we are in a drift hop. Clears when we land. | |
bool | m_bBoost |
Set while in a boost. | |
bool | m_bAirStart |
bool | m_bStickRight |
Set on right stick input. Mutually exclusive to m_bStickLeft. | |
bool | m_bMushroomBoost |
Set while we are in a mushroom boost. | |
bool | m_bDriftAuto |
Currently in a drift w/ automatic. | |
bool | m_bSlipdriftCharge |
bool | m_bWheelie |
Set while we are in a wheelie (even during the countdown). | |
bool | m_bJumpPad |
bool | m_bRampBoost |
bitfield1 | |
The bitfield at offset 0x8. | |
bool | m_bInAction |
bool | m_bTriggerRespawn |
bool | m_bCannonStart |
bool | m_bInCannon |
bool | m_bTrickStart |
bool | m_bInATrick |
bool | m_bBoostOffroadInvincibility |
Set if we should ignore offroad slowdown this frame. | |
bool | m_bHalfPipeRamp |
Set while colliding with zipper KCL. | |
bool | m_bOverZipper |
Set while mid-air from a zipper. | |
bool | m_bZipperInvisibleWall |
Set when colliding with invisible wall above a zipper. | |
bool | m_bZipperBoost |
Set when boosting after landing from a zipper. | |
bool | m_bZipperStick |
Set while mid-air and still influenced by the zipper. | |
bool | m_bZipperTrick |
Set while tricking mid-air from a zipper. | |
bool | m_bDisableBackwardsAccel |
Enforces a 20f delay when reversing after charging SSMT. | |
bool | m_bRespawnKillY |
Set while respawning to cap external velocity at 0. | |
bool | m_bBurnout |
Set during a burnout on race start. | |
bool | m_bTrickRot |
bool | m_bChargingSsmt |
Tracks whether we are charging a stand-still mini-turbo. | |
bool | m_bRejectRoad |
Collision which causes a change in the player's pos and rot. | |
bool | m_bRejectRoadTrigger |
e.g. DK Summit ending, and Maple Treeway side walls. | |
bool | m_bTrickable |
bitfield2 | |
The bitfield at offset 0xC. | |
bool | m_bWheelieRot |
bool | m_bSkipWheelCalc |
bool | m_bNoSparkInvisibleWall |
bool | m_bInRespawn |
bool | m_bAfterRespawn |
bool | m_bJumpPadDisableYsusForce |
bitfield3 | |
The bitfield at offset 0x10. | |
bool | m_bUNK2 |
bool | m_bSomethingWallCollision |
bool | m_bSoftWallDrift |
bool | m_bHWG |
Set when "Horizontal Wall Glitch" is active. | |
bool | m_bAfterCannon |
bool | m_bChargeStartBoost |
Like m_bAccelerate but during countdown. | |
bool | m_bEndHalfPipe |
bitfield4 | |
The bitfield at offset 0x14. | |
bool | m_bAutoDrift |
True if auto transmission, false if manual. | |
Setters | |
void | clearBitfield0 () |
Helper function to clear all bit flags at 0x4-0x7 in KartState. | |
void | clearBitfield1 () |
Helper function to clear all bit flags at 0x8-0xB in KartState. | |
void | clearBitfield2 () |
Helper function to clear all bit flags at 0xC-0xF in KartState. | |
void | clearBitfield3 () |
Helper function to clear all bit flags at 0x10-0x13 in KartState. | |
void | setAccelerate (bool isSet) |
void | setDriftInput (bool isSet) |
void | setDriftManual (bool isSet) |
void | setBeforeRespawn (bool isSet) |
void | setWallCollision (bool isSet) |
void | setHopStart (bool isSet) |
void | setVehicleBodyFloorCollision (bool isSet) |
void | setAnyWheelCollision (bool isSet) |
void | setWallCollisionStart (bool isSet) |
void | setStickyRoad (bool isSet) |
void | setAllWheelsCollision (bool isSet) |
void | setTouchingGround (bool isSet) |
void | setHop (bool isSet) |
void | setBoost (bool isSet) |
void | setMushroomBoost (bool isSet) |
void | setSlipdriftCharge (bool isSet) |
void | setDriftAuto (bool isSet) |
void | setWheelie (bool isSet) |
void | setJumpPad (bool isSet) |
void | setRampBoost (bool isSet) |
void | setInAction (bool isSet) |
void | setTriggerRespawn (bool isSet) |
void | setCannonStart (bool isSet) |
void | setInCannon (bool isSet) |
void | setTrickStart (bool isSet) |
void | setInATrick (bool isSet) |
void | setBoostOffroadInvincibility (bool isSet) |
void | setHalfPipeRamp (bool isSet) |
void | setOverZipper (bool isSet) |
void | setZipperInvisibleWall (bool isSet) |
void | setZipperBoost (bool isSet) |
void | setZipperStick (bool isSet) |
void | setZipperTrick (bool isSet) |
void | setDisableBackwardsAccel (bool isSet) |
void | setRespawnKillY (bool isSet) |
void | setBurnout (bool isSet) |
void | setTrickRot (bool isSet) |
void | setChargingSsmt (bool isSet) |
void | setRejectRoad (bool isSet) |
void | setRejectRoadTrigger (bool isSet) |
void | setTrickable (bool isSet) |
void | setWheelieRot (bool isSet) |
void | setSkipWheelCalc (bool isSet) |
void | setNoSparkInvisibleWall (bool isSet) |
void | setInRespawn (bool isSet) |
void | setAfterRespawn (bool isSet) |
void | setJumpPadDisableYsusForce (bool isSet) |
void | setSomethingWallCollision (bool isSet) |
void | setSoftWallDrift (bool isSet) |
void | setHWG (bool isSet) |
void | setAfterCannon (bool isSet) |
void | setEndHalfPipe (bool isSet) |
void | setCannonPointId (u16 val) |
void | setBoostRampType (s32 val) |
void | setJumpPadVariant (s32 val) |
void | setHalfPipeInvisibilityTimer (s16 val) |
void | setTrickableTimer (s16 val) |
Getters | |
bool | isDrifting () const |
bool | isAccelerate () const |
bool | isBrake () const |
bool | isDriftInput () const |
bool | isDriftManual () const |
bool | isBeforeRespawn () const |
bool | isWall3Collision () const |
bool | isWallCollision () const |
bool | isHopStart () const |
bool | isAccelerateStart () const |
bool | isGroundStart () const |
bool | isVehicleBodyFloorCollision () const |
bool | isAnyWheelCollision () const |
bool | isAllWheelsCollision () const |
bool | isStickLeft () const |
bool | isWallCollisionStart () const |
bool | isAirtimeOver20 () const |
bool | isStickyRoad () const |
bool | isTouchingGround () const |
bool | isHop () const |
bool | isSoftWallDrift () const |
bool | isHWG () const |
bool | isAfterCannon () const |
bool | isChargeStartBoost () const |
bool | isBoost () const |
bool | isAirStart () const |
bool | isStickRight () const |
bool | isMushroomBoost () const |
bool | isDriftAuto () const |
bool | isSlipdriftCharge () const |
bool | isWheelie () const |
bool | isJumpPad () const |
bool | isRampBoost () const |
bool | isInAction () const |
bool | isTriggerRespawn () const |
bool | isCannonStart () const |
bool | isInCannon () const |
bool | isTrickStart () const |
bool | isInATrick () const |
bool | isBoostOffroadInvincibility () const |
bool | isHalfPipeRamp () const |
bool | isOverZipper () const |
bool | isZipperInvisibleWall () const |
bool | isZipperBoost () const |
bool | isZipperTrick () const |
bool | isDisableBackwardsAccel () const |
bool | isRespawnKillY () const |
bool | isBurnout () const |
bool | isZipperStick () const |
bool | isTrickRot () const |
bool | isChargingSsmt () const |
bool | isRejectRoad () const |
bool | isRejectRoadTrigger () const |
bool | isTrickable () const |
bool | isWheelieRot () const |
bool | isJumpPadDisableYsusForce () const |
bool | isSkipWheelCalc () const |
bool | isNoSparkInvisibleWall () const |
bool | isInRespawn () const |
bool | isAfterRespawn () const |
bool | isUNK2 () const |
bool | isSomethingWallCollision () const |
bool | isEndHalfPipe () const |
bool | isAutoDrift () const |
u16 | cannonPointId () const |
s32 | boostRampType () const |
s32 | jumpPadVariant () const |
f32 | stickX () const |
f32 | stickY () const |
u32 | airtime () const |
const EGG::Vector3f & | top () const |
const EGG::Vector3f & | softWallSpeed () const |
f32 | startBoostCharge () const |
s16 | wallBonkTimer () const |
s16 | trickableTimer () const |
Private Attributes | |
u32 | m_airtime |
EGG::Vector3f | m_top |
EGG::Vector3f | m_softWallSpeed |
s32 | m_hwgTimer |
u16 | m_cannonPointId |
s32 | m_boostRampType |
s32 | m_jumpPadVariant |
s16 | m_halfPipeInvisibilityTimer |
f32 | m_stickX |
One of 15 discrete stick values from [-1.0, 1.0]. | |
f32 | m_stickY |
One of 15 discrete stick values from [-1.0, 1.0]. | |
f32 | m_startBoostCharge |
0-1 representation of start boost charge. Burnout if >0.95f. | |
size_t | m_startBoostIdx |
Used to map m_startBoostCharge to a start boost duration. | |
s16 | m_wallBonkTimer |
2f counter that stunts your speed after hitting a wall. | |
s16 | m_trickableTimer |
Additional Inherited Members | |
![]() | |
void | setPos (const EGG::Vector3f &pos) |
void | setRot (const EGG::Quatf &q) |
void | setInertiaScale (const EGG::Vector3f &scale) |
KartAction * | action () |
const KartAction * | action () const |
KartBody * | body () |
const KartBody * | body () const |
KartCollide * | collide () |
const KartCollide * | collide () const |
CollisionGroup * | collisionGroup () |
const CollisionGroup * | collisionGroup () const |
KartMove * | move () |
const KartMove * | move () const |
KartHalfPipe * | halfPipe () |
const KartHalfPipe * | halfPipe () const |
KartJump * | jump () |
const KartJump * | jump () const |
KartParam * | param () |
const KartParam * | param () const |
const BSP & | bsp () const |
KartPhysics * | physics () |
const KartPhysics * | physics () const |
KartDynamics * | dynamics () |
const KartDynamics * | dynamics () const |
KartState * | state () |
const KartState * | state () const |
KartSub * | sub () |
const KartSub * | sub () const |
KartSuspension * | suspension (u16 suspIdx) |
const KartSuspension * | suspension (u16 suspIdx) const |
KartSuspensionPhysics * | suspensionPhysics (u16 suspIdx) |
const KartSuspensionPhysics * | suspensionPhysics (u16 suspIdx) const |
KartTire * | tire (u16 tireIdx) |
const KartTire * | tire (u16 tireIdx) const |
WheelPhysics * | tirePhysics (u16 tireIdx) |
const WheelPhysics * | tirePhysics (u16 tireIdx) const |
CollisionData & | collisionData () |
const CollisionData & | collisionData () const |
CollisionData & | collisionData (u16 tireIdx) |
const CollisionData & | collisionData (u16 tireIdx) const |
const System::KPad * | inputs () const |
Render::KartModel * | model () |
const Render::KartModel * | model () const |
Field::ObjectCollisionKart * | objectCollisionKart () |
const Field::ObjectCollisionKart * | objectCollisionKart () const |
Field::BoxColUnit * | boxColUnit () |
const Field::BoxColUnit * | boxColUnit () const |
const EGG::Vector3f & | scale () const |
const EGG::Matrix34f & | pose () 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::Vector3f & | componentXAxis () const |
const EGG::Vector3f & | componentYAxis () const |
const EGG::Vector3f & | componentZAxis () const |
const EGG::Vector3f & | pos () const |
const EGG::Vector3f & | prevPos () const |
const EGG::Quatf & | fullRot () const |
const EGG::Vector3f & | extVel () const |
const EGG::Vector3f & | intVel () const |
const EGG::Vector3f & | velocity () const |
f32 | speed () const |
f32 | acceleration () const |
f32 | softSpeedLimit () const |
const EGG::Quatf & | mainRot () const |
const EGG::Vector3f & | angVel2 () const |
bool | isBike () const |
u16 | suspCount () const |
u16 | tireCount () const |
bool | hasFloorCollision (const WheelPhysics *wheelPhysics) const |
std::pair< EGG::Vector3f, EGG::Vector3f > | getCannonPosRot () |
f32 | speedRatio () const |
f32 | speedRatioCapped () const |
bool | isInRespawn () const |
void | apply (size_t idx) |
![]() | |
static std::list< KartObjectProxy * > & | proxyList () |
|
0x805943B4 |
Definition at line 30 of file KartState.cc.
|
inlinenodiscard |
Definition at line 540 of file KartState.hh.
|
inlinenodiscard |
Definition at line 524 of file KartState.hh.
|
0x8059474C |
Every frame, resets the input state and saves collision-related bit flags.
Definition at line 117 of file KartState.cc.
|
0x80594BD4 |
Each frame, checks for collision and saves relevant bit flags.
Iterates each tire to check for collision. If any tire is colliding with the floor, the "Any Wheel Collision" bit is set. If all tires are colliding with the floor, the "All Wheels Collision" bit is set. Tracks airtime and computes the appropriate top vector, given the floor normals of all colliding floor KCLs.
Definition at line 154 of file KartState.cc.
|
0x805959D4 |
On countdown end, calculates and applies our start boost charge.
Definition at line 374 of file KartState.cc.
|
0x8059487C |
Each frame, read input and save related bit flags. Also handles start boosts.
Definition at line 70 of file KartState.cc.
|
0x80595918 |
STAGE 1 - Each frame, calculates the start boost charge.
If the player is holding accelerate, the start boost charge increases using exponential decay. If the player is not holding accelerate, the start boost charge decays by 4% each frame.
Definition at line 356 of file KartState.cc.
|
inlinenodiscard |
Definition at line 520 of file KartState.hh.
void Kart::KartState::clearBitfield0 | ( | ) |
Helper function to clear all bit flags at 0x4-0x7 in KartState.
Definition at line 421 of file KartState.cc.
void Kart::KartState::clearBitfield1 | ( | ) |
Helper function to clear all bit flags at 0x8-0xB in KartState.
Definition at line 453 of file KartState.cc.
void Kart::KartState::clearBitfield2 | ( | ) |
Helper function to clear all bit flags at 0xC-0xF in KartState.
Definition at line 478 of file KartState.cc.
void Kart::KartState::clearBitfield3 | ( | ) |
Helper function to clear all bit flags at 0x10-0x13 in KartState.
Definition at line 488 of file KartState.cc.
|
0x80595AF8 |
Applies the relevant start boost duration.
idx | The index into the start boost entries array. |
Definition at line 405 of file KartState.cc.
|
0x8059455C |
Definition at line 44 of file KartState.cc.
|
inlinenodiscard |
Definition at line 268 of file KartState.hh.
|
inlinenodiscard |
Definition at line 300 of file KartState.hh.
|
inlinenodiscard |
Definition at line 352 of file KartState.hh.
|
inlinenodiscard |
Definition at line 500 of file KartState.hh.
|
inlinenodiscard |
Definition at line 364 of file KartState.hh.
|
inlinenodiscard |
Definition at line 328 of file KartState.hh.
|
inlinenodiscard |
Definition at line 316 of file KartState.hh.
|
inlinenodiscard |
Definition at line 312 of file KartState.hh.
|
inlinenodiscard |
Definition at line 516 of file KartState.hh.
|
inlinenodiscard |
Definition at line 284 of file KartState.hh.
|
inlinenodiscard |
Definition at line 360 of file KartState.hh.
|
inlinenodiscard |
Definition at line 420 of file KartState.hh.
|
inlinenodiscard |
Definition at line 272 of file KartState.hh.
|
inlinenodiscard |
Definition at line 452 of file KartState.hh.
|
inlinenodiscard |
Definition at line 404 of file KartState.hh.
|
inlinenodiscard |
Definition at line 356 of file KartState.hh.
|
inlinenodiscard |
Definition at line 464 of file KartState.hh.
|
inlinenodiscard |
Definition at line 444 of file KartState.hh.
|
inlinenodiscard |
Definition at line 376 of file KartState.hh.
|
inlinenodiscard |
Definition at line 264 of file KartState.hh.
|
inlinenodiscard |
Definition at line 276 of file KartState.hh.
|
inlinenodiscard |
Definition at line 280 of file KartState.hh.
|
inlinenodiscard |
Definition at line 512 of file KartState.hh.
|
inlinenodiscard |
Definition at line 304 of file KartState.hh.
|
inlinenodiscard |
Definition at line 424 of file KartState.hh.
|
inlinenodiscard |
Definition at line 340 of file KartState.hh.
|
inlinenodiscard |
Definition at line 296 of file KartState.hh.
|
inlinenodiscard |
Definition at line 348 of file KartState.hh.
|
inlinenodiscard |
Definition at line 396 of file KartState.hh.
|
inlinenodiscard |
Definition at line 416 of file KartState.hh.
|
inlinenodiscard |
Definition at line 408 of file KartState.hh.
|
inlinenodiscard |
Definition at line 496 of file KartState.hh.
|
inlinenodiscard |
Definition at line 388 of file KartState.hh.
|
inlinenodiscard |
Definition at line 484 of file KartState.hh.
|
inlinenodiscard |
Definition at line 372 of file KartState.hh.
|
inlinenodiscard |
Definition at line 492 of file KartState.hh.
|
inlinenodiscard |
Definition at line 428 of file KartState.hh.
|
inlinenodiscard |
Definition at line 392 of file KartState.hh.
|
inlinenodiscard |
Definition at line 468 of file KartState.hh.
|
inlinenodiscard |
Definition at line 472 of file KartState.hh.
|
inlinenodiscard |
Definition at line 448 of file KartState.hh.
|
inlinenodiscard |
Definition at line 488 of file KartState.hh.
|
inlinenodiscard |
Definition at line 380 of file KartState.hh.
|
inlinenodiscard |
Definition at line 344 of file KartState.hh.
|
inlinenodiscard |
Definition at line 508 of file KartState.hh.
|
inlinenodiscard |
Definition at line 320 of file KartState.hh.
|
inlinenodiscard |
Definition at line 368 of file KartState.hh.
|
inlinenodiscard |
Definition at line 332 of file KartState.hh.
|
inlinenodiscard |
Definition at line 336 of file KartState.hh.
|
inlinenodiscard |
Definition at line 476 of file KartState.hh.
|
inlinenodiscard |
Definition at line 460 of file KartState.hh.
|
inlinenodiscard |
Definition at line 412 of file KartState.hh.
|
inlinenodiscard |
Definition at line 400 of file KartState.hh.
|
inlinenodiscard |
Definition at line 504 of file KartState.hh.
|
inlinenodiscard |
Definition at line 308 of file KartState.hh.
|
inlinenodiscard |
Definition at line 288 of file KartState.hh.
|
inlinenodiscard |
Definition at line 292 of file KartState.hh.
|
inlinenodiscard |
Definition at line 324 of file KartState.hh.
|
inlinenodiscard |
Definition at line 384 of file KartState.hh.
|
inlinenodiscard |
Definition at line 480 of file KartState.hh.
|
inlinenodiscard |
Definition at line 436 of file KartState.hh.
|
inlinenodiscard |
Definition at line 432 of file KartState.hh.
|
inlinenodiscard |
Definition at line 456 of file KartState.hh.
|
inlinenodiscard |
Definition at line 440 of file KartState.hh.
|
inlinenodiscard |
Definition at line 528 of file KartState.hh.
|
0x80594594 |
Definition at line 49 of file KartState.cc.
|
0x805958F0 |
Resets certain bitfields pertaining to ejections (reject road, half pipe zippers, etc.)
Definition at line 415 of file KartState.cc.
|
0x80594704 |
Definition at line 127 of file KartState.cc.
|
inline |
Definition at line 34 of file KartState.hh.
|
inline |
Definition at line 234 of file KartState.hh.
|
inline |
Definition at line 214 of file KartState.hh.
|
inline |
Definition at line 74 of file KartState.hh.
|
inline |
Definition at line 62 of file KartState.hh.
|
inline |
Definition at line 46 of file KartState.hh.
|
inline |
Definition at line 86 of file KartState.hh.
|
inline |
Definition at line 138 of file KartState.hh.
|
inline |
Definition at line 246 of file KartState.hh.
|
inline |
Definition at line 174 of file KartState.hh.
|
inline |
Definition at line 242 of file KartState.hh.
|
inline |
Definition at line 122 of file KartState.hh.
|
inline |
Definition at line 182 of file KartState.hh.
|
inline |
Definition at line 166 of file KartState.hh.
|
inline |
Definition at line 98 of file KartState.hh.
|
inline |
Definition at line 38 of file KartState.hh.
|
inline |
Definition at line 42 of file KartState.hh.
|
inline |
Definition at line 238 of file KartState.hh.
|
inline |
Definition at line 254 of file KartState.hh.
|
inline |
Definition at line 142 of file KartState.hh.
|
inline |
Definition at line 82 of file KartState.hh.
|
inline |
Definition at line 54 of file KartState.hh.
|
inline |
Definition at line 230 of file KartState.hh.
|
inline |
Definition at line 114 of file KartState.hh.
|
inline |
Definition at line 134 of file KartState.hh.
|
inline |
Definition at line 126 of file KartState.hh.
|
inline |
Definition at line 210 of file KartState.hh.
|
inline |
Definition at line 106 of file KartState.hh.
|
inline |
Definition at line 218 of file KartState.hh.
|
inline |
Definition at line 250 of file KartState.hh.
|
inline |
Definition at line 90 of file KartState.hh.
|
inline |
Definition at line 206 of file KartState.hh.
|
inline |
Definition at line 146 of file KartState.hh.
|
inline |
Definition at line 110 of file KartState.hh.
|
inline |
Definition at line 186 of file KartState.hh.
|
inline |
Definition at line 190 of file KartState.hh.
|
inline |
Definition at line 170 of file KartState.hh.
|
inline |
Definition at line 202 of file KartState.hh.
|
inline |
Definition at line 94 of file KartState.hh.
|
inline |
Definition at line 226 of file KartState.hh.
|
inline |
Definition at line 222 of file KartState.hh.
|
inline |
Definition at line 70 of file KartState.hh.
|
inline |
Definition at line 78 of file KartState.hh.
|
inline |
Definition at line 194 of file KartState.hh.
|
inline |
Definition at line 258 of file KartState.hh.
|
inline |
Definition at line 178 of file KartState.hh.
|
inline |
Definition at line 130 of file KartState.hh.
|
inline |
Definition at line 118 of file KartState.hh.
|
inline |
Definition at line 58 of file KartState.hh.
|
inline |
Definition at line 50 of file KartState.hh.
|
inline |
Definition at line 66 of file KartState.hh.
|
inline |
Definition at line 102 of file KartState.hh.
|
inline |
Definition at line 198 of file KartState.hh.
|
inline |
Definition at line 154 of file KartState.hh.
|
inline |
Definition at line 150 of file KartState.hh.
|
inline |
Definition at line 158 of file KartState.hh.
|
inline |
Definition at line 162 of file KartState.hh.
|
inlinenodiscard |
Definition at line 548 of file KartState.hh.
|
inlinenodiscard |
Definition at line 552 of file KartState.hh.
|
inlinenodiscard |
Definition at line 532 of file KartState.hh.
|
inlinenodiscard |
Definition at line 536 of file KartState.hh.
|
inlinenodiscard |
Definition at line 544 of file KartState.hh.
|
inlinenodiscard |
Definition at line 560 of file KartState.hh.
|
inlinenodiscard |
Definition at line 556 of file KartState.hh.
|
private |
Definition at line 660 of file KartState.hh.
|
private |
Accel button is pressed.
Definition at line 571 of file KartState.hh.
|
private |
Set if m_bAccelerate was toggled on this frame.
Definition at line 583 of file KartState.hh.
|
private |
Definition at line 649 of file KartState.hh.
|
private |
Definition at line 638 of file KartState.hh.
|
private |
Definition at line 595 of file KartState.hh.
|
private |
Set after 20 frames of airtime, resets on landing.
Definition at line 590 of file KartState.hh.
|
private |
Set when all wheels are touching floor collision.
Definition at line 587 of file KartState.hh.
|
private |
Set when any wheel is touching floor collision.
Definition at line 586 of file KartState.hh.
|
private |
True if auto transmission, false if manual.
Definition at line 657 of file KartState.hh.
|
private |
Set on respawn collision, cleared on position snap.
Definition at line 579 of file KartState.hh.
|
private |
Set while in a boost.
Definition at line 594 of file KartState.hh.
|
private |
Set if we should ignore offroad slowdown this frame.
Definition at line 614 of file KartState.hh.
|
private |
Brake button is pressed.
Definition at line 572 of file KartState.hh.
|
private |
Set during a burnout on race start.
Definition at line 623 of file KartState.hh.
|
private |
Definition at line 610 of file KartState.hh.
|
private |
Like m_bAccelerate but during countdown.
Definition at line 650 of file KartState.hh.
|
private |
Tracks whether we are charging a stand-still mini-turbo.
Definition at line 625 of file KartState.hh.
|
private |
Enforces a 20f delay when reversing after charging SSMT.
Definition at line 621 of file KartState.hh.
|
private |
Currently in a drift w/ automatic.
Definition at line 598 of file KartState.hh.
|
private |
A "fake" button, normally set if you meet the speed requirement to hop.
Definition at line 577 of file KartState.hh.
|
private |
Currently in a drift w/ manual.
Definition at line 578 of file KartState.hh.
|
private |
Definition at line 651 of file KartState.hh.
|
private |
Set first frame landing from airtime.
Definition at line 584 of file KartState.hh.
|
private |
Set while colliding with zipper KCL.
Definition at line 615 of file KartState.hh.
|
private |
Set while we are in a drift hop. Clears when we land.
Definition at line 593 of file KartState.hh.
|
private |
Set if m_bDriftInput was toggled on this frame.
Definition at line 582 of file KartState.hh.
|
private |
Set when "Horizontal Wall Glitch" is active.
Definition at line 648 of file KartState.hh.
|
private |
Definition at line 608 of file KartState.hh.
|
private |
Definition at line 613 of file KartState.hh.
|
private |
Definition at line 611 of file KartState.hh.
|
private |
Definition at line 637 of file KartState.hh.
|
private |
Definition at line 601 of file KartState.hh.
|
private |
Definition at line 639 of file KartState.hh.
|
private |
Set while we are in a mushroom boost.
Definition at line 597 of file KartState.hh.
|
private |
Definition at line 636 of file KartState.hh.
|
private |
Definition at line 665 of file KartState.hh.
|
private |
Set while mid-air from a zipper.
Definition at line 616 of file KartState.hh.
|
private |
Definition at line 602 of file KartState.hh.
|
private |
Collision which causes a change in the player's pos and rot.
Definition at line 626 of file KartState.hh.
|
private |
e.g. DK Summit ending, and Maple Treeway side walls.
Definition at line 627 of file KartState.hh.
|
private |
Set while respawning to cap external velocity at 0.
Definition at line 622 of file KartState.hh.
|
private |
Definition at line 635 of file KartState.hh.
|
private |
Definition at line 599 of file KartState.hh.
|
private |
Definition at line 647 of file KartState.hh.
|
private |
Definition at line 646 of file KartState.hh.
|
private |
Set on left stick input. Mutually exclusive to m_bStickRight.
Definition at line 588 of file KartState.hh.
|
private |
Set on right stick input. Mutually exclusive to m_bStickLeft.
Definition at line 596 of file KartState.hh.
|
private |
Like the rBC stairs.
Definition at line 591 of file KartState.hh.
|
private |
Set when any part of the vehicle is colliding with floor KCL.
Definition at line 592 of file KartState.hh.
|
private |
Definition at line 628 of file KartState.hh.
|
private |
Definition at line 624 of file KartState.hh.
|
private |
Definition at line 612 of file KartState.hh.
|
private |
Definition at line 609 of file KartState.hh.
|
private |
Definition at line 645 of file KartState.hh.
|
private |
Set if the vehicle body is colliding with the floor.
Definition at line 585 of file KartState.hh.
|
private |
Set when colliding with wall KCL COL_TYPE_WALL_2.
Definition at line 580 of file KartState.hh.
|
private |
Set if we are colliding with a wall.
Definition at line 581 of file KartState.hh.
|
private |
Set if we have just started colliding with a wall.
Definition at line 589 of file KartState.hh.
|
private |
Set while we are in a wheelie (even during the countdown).
Definition at line 600 of file KartState.hh.
|
private |
Definition at line 634 of file KartState.hh.
|
private |
Set when boosting after landing from a zipper.
Definition at line 618 of file KartState.hh.
|
private |
Set when colliding with invisible wall above a zipper.
Definition at line 617 of file KartState.hh.
|
private |
Set while mid-air and still influenced by the zipper.
Definition at line 619 of file KartState.hh.
|
private |
Set while tricking mid-air from a zipper.
Definition at line 620 of file KartState.hh.
|
private |
Definition at line 664 of file KartState.hh.
|
private |
Definition at line 667 of file KartState.hh.
|
private |
Definition at line 663 of file KartState.hh.
|
private |
Definition at line 666 of file KartState.hh.
|
private |
Definition at line 662 of file KartState.hh.
|
private |
0-1 representation of start boost charge. Burnout if >0.95f.
Definition at line 670 of file KartState.hh.
|
private |
Used to map m_startBoostCharge to a start boost duration.
Definition at line 671 of file KartState.hh.
|
private |
One of 15 discrete stick values from [-1.0, 1.0].
Definition at line 668 of file KartState.hh.
|
private |
One of 15 discrete stick values from [-1.0, 1.0].
Definition at line 669 of file KartState.hh.
|
private |
Definition at line 661 of file KartState.hh.
|
private |
Definition at line 673 of file KartState.hh.
|
private |
2f counter that stunts your speed after hitting a wall.
Definition at line 672 of file KartState.hh.
|
staticconstexpr0x808B64F8 |
Definition at line 20 of file KartState.cc.