3#include "game/kart/CollisionGroup.hh"
4#include "game/kart/KartCollide.hh"
5#include "game/kart/KartDynamics.hh"
6#include "game/kart/KartJump.hh"
7#include "game/kart/KartMove.hh"
9#include "game/system/RaceManager.hh"
20static constexpr std::array<StartBoostEntry, 6> START_BOOST_ENTRIES = {{
30KartState::KartState() {
44void KartState::init() {
49void KartState::reset() {
59 m_jumpPadVariant = -1;
60 m_halfPipeInvisibilityTimer = 0;
71 const auto *raceMgr = System::RaceManager::Instance();
72 if (raceMgr->isStageReached(System::RaceManager::Stage::Race)) {
75 const auto ¤tState = inputs()->currentState();
76 const auto &lastState = inputs()->lastState();
102 if (!raceMgr->isStageReached(System::RaceManager::Stage::Countdown)) {
106 const auto ¤tState = inputs()->currentState();
120 collide()->calcBeforeRespawn();
123 collide()->calcBoundingRadius();
127void KartState::resetFlags() {
141 m_bJumpPadDisableYsusForce =
false;
165 if (m_hwgTimer > 0) {
166 if (--m_hwgTimer == 0) {
168 m_bSomethingWallCollision =
false;
173 bool softWallCollision =
false;
175 if (collide()->someSoftWallTimer() > 0) {
176 if (collide()->someNonSoftWallTimer() == 0) {
177 softWallCollision =
true;
179 f32 softSusp = collide()->suspBottomHeightSoftWall() /
180 static_cast<f32
>(collide()->someSoftWallTimer());
181 f32 nonSusp = collide()->suspBottomHeightNonSoftWall() /
182 static_cast<f32
>(collide()->someNonSoftWallTimer());
184 if (softSusp - nonSusp >= 40.0f) {
185 m_bSoftWallDrift =
false;
187 softWallCollision =
true;
192 u16 wheelCollisions = 0;
193 u16 softWallCount = 0;
195 bool trickable =
false;
197 for (
u16 tireIdx = 0; tireIdx < tireCount(); ++tireIdx) {
198 const auto &colData = collisionData(tireIdx);
199 if (hasFloorCollision(tirePhysics(tireIdx))) {
200 m_top += colData.floorNrm;
201 trickable = trickable || colData.bTrickable;
205 if (softWallCollision && colData.bSoftWall) {
207 wallNrm += colData.noBounceWallNrm;
211 if (wheelCollisions > 0) {
213 if (wheelCollisions == tireCount()) {
221 m_top += colData.floorNrm;
222 trickable = trickable || colData.bTrickable;
225 halfPipe()->end(
true);
229 bool hitboxGroupSoftWallCollision =
false;
230 if (softWallCollision && colData.bSoftWall) {
231 hitboxGroupSoftWallCollision =
true;
233 wallNrm += colData.wallNrm;
236 bool bVar3 = colData.bInvisibleWallOnly && m_halfPipeInvisibilityTimer > 0;
237 m_halfPipeInvisibilityTimer = std::max(0, m_halfPipeInvisibilityTimer - 1);
252 if (!wasWallCollision) {
258 if (m_hwgTimer == 0 && colData.movement.y > 1.0f) {
262 if (movement.
dot(EGG::Vector3f::ey) > 0.8f &&
263 colData.wallNrm.
dot(EGG::Vector3f::ey) > 0.85f &&
264 (movement.x * colData.wallNrm.x + movement.z * colData.wallNrm.z < 0.0f ||
265 collide()->colPerpendicularity() >= 1.0f)) {
266 colData.wallNrm.y = 0.0f;
268 wallNrm = colData.wallNrm;
270 if (wallNrm.
length() < 0.05f) {
281 collide()->surfaceFlags().offBit(KartCollide::eSurfaceFlags::StopHalfPipeState)) {
285 if (softWallCount > 0 || hwg) {
287 m_softWallSpeed = wallNrm;
289 if (softWallCount > 0 && !
m_bHop) {
290 m_bSoftWallDrift =
true;
297 if (hitboxGroupSoftWallCollision || hwg || isBike()) {
298 m_bSomethingWallCollision =
true;
308 m_trickableTimer = std::max(0, m_trickableTimer - 1);
310 if (wheelCollisions < 1 && !colData.
bFloor) {
311 if (wasTouchingGround) {
315 if (++m_airtime > 20) {
322 m_bAfterCannon =
false;
325 m_bEndHalfPipe =
false;
329 halfPipe()->end(
true);
333 m_trickableTimer = 3;
336 m_bTrickable = m_trickableTimer > 0;
338 if (!wasTouchingGround) {
342 if (m_bInATrick && jump()->cooldown() == 0) {
344 dynamics()->setForceUpright(
true);
357 constexpr f32 START_BOOST_DELTA_ONE = 0.02f;
358 constexpr f32 START_BOOST_DELTA_TWO = 0.002f;
359 constexpr f32 START_BOOST_FALLOFF = 0.96f;
375 if (System::RaceManager::Instance()->getCountdownTimer() != 0) {
384 for (
size_t i = 1; i < START_BOOST_ENTRIES.size(); ++i) {
407 move()->burnout().start();
409 move()->applyStartBoost(START_BOOST_ENTRIES[idx].frames);
446 m_bSlipdriftCharge =
false;
449 m_bRampBoost =
false;
455 m_bTriggerRespawn =
false;
456 m_bCannonStart =
false;
458 m_bTrickStart =
false;
474 m_bTrickable =
false;
479 m_bWheelieRot =
false;
480 m_bSkipWheelCalc =
false;
481 m_bNoSparkInvisibleWall =
false;
482 m_bInRespawn =
false;
483 m_bAfterRespawn =
false;
484 m_bJumpPadDisableYsusForce =
false;
490 m_bSomethingWallCollision =
false;
491 m_bSoftWallDrift =
false;
493 m_bAfterCannon =
false;
495 m_bEndHalfPipe =
false;
bool m_bZipperBoost
Set when boosting after landing from a zipper.
bool m_bRespawnKillY
Set while respawning to cap external velocity at 0.
bool m_bBoost
Set while in a boost.
bool m_bChargeStartBoost
Like m_bAccelerate but during countdown.
bool m_bHop
Set while we are in a drift hop. Clears when we land.
bool m_bBeforeRespawn
Set on respawn collision, cleared on position snap.
void clearBitfield1()
Helper function to clear all bit flags at 0x8-0xB in KartState.
size_t m_startBoostIdx
Used to map m_startBoostCharge to a start boost duration.
void clearBitfield0()
Helper function to clear all bit flags at 0x4-0x7 in KartState.
bool m_bHopStart
Set if m_bDriftInput was toggled on this frame.
bool m_bHWG
Set when "Horizontal Wall Glitch" is active.
bool m_bBurnout
Set during a burnout on race start.
bool m_bDriftAuto
Currently in a drift w/ automatic.
bool m_bStickRight
Set on right stick input. Mutually exclusive to m_bStickLeft.
void clearBitfield2()
Helper function to clear all bit flags at 0xC-0xF in KartState.
void calcStartBoost()
STAGE 1 - Each frame, calculates the start boost charge.
bool m_bRejectRoad
Collision which causes a change in the player's pos and rot.
bool m_bWallCollision
Set if we are colliding with a wall.
bool m_bZipperTrick
Set while tricking mid-air from a zipper.
s16 m_wallBonkTimer
2f counter that stunts your speed after hitting a wall.
void calcCollisions()
Each frame, checks for collision and saves relevant bit flags.
bool m_bAllWheelsCollision
Set when all wheels are touching floor collision.
bool m_bDriftInput
A "fake" button, normally set if you meet the speed requirement to hop.
void clearBitfield3()
Helper function to clear all bit flags at 0x10-0x13 in KartState.
void calcHandleStartBoost()
On countdown end, calculates and applies our start boost charge.
f32 m_stickY
One of 15 discrete stick values from [-1.0, 1.0].
bool m_bChargingSsmt
Tracks whether we are charging a stand-still mini-turbo.
bool m_bAccelerateStart
Set if m_bAccelerate was toggled on this frame.
bool m_bDriftManual
Currently in a drift w/ manual.
bool m_bAutoDrift
True if auto transmission, false if manual.
void handleStartBoost(size_t idx)
Applies the relevant start boost duration.
void calc()
Every frame, resets the input state and saves collision-related bit flags.
bool m_bZipperStick
Set while mid-air and still influenced by the zipper.
bool m_bMushroomBoost
Set while we are in a mushroom boost.
bool m_bDisableBackwardsAccel
Enforces a 20f delay when reversing after charging SSMT.
bool m_bHalfPipeRamp
Set while colliding with zipper KCL.
f32 m_stickX
One of 15 discrete stick values from [-1.0, 1.0].
bool m_bVehicleBodyFloorCollision
Set if the vehicle body is colliding with the floor.
bool m_bBoostOffroadInvincibility
Set if we should ignore offroad slowdown this frame.
bool m_bAnyWheelCollision
Set when any wheel is touching floor collision.
bool m_bStickyRoad
Like the rBC stairs.
bool m_bWall3Collision
Set when colliding with wall KCL COL_TYPE_WALL_2.
f32 m_startBoostCharge
0-1 representation of start boost charge. Burnout if >0.95f.
bool m_bWheelie
Set while we are in a wheelie (even during the countdown).
bool m_bZipperInvisibleWall
Set when colliding with invisible wall above a zipper.
bool m_bTouchingGround
Set when any part of the vehicle is colliding with floor KCL.
bool m_bRejectRoadTrigger
e.g. DK Summit ending, and Maple Treeway side walls.
bool m_bStickLeft
Set on left stick input. Mutually exclusive to m_bStickRight.
void calcInput()
Each frame, read input and save related bit flags. Also handles start boosts.
bool m_bWallCollisionStart
Set if we have just started colliding with a wall.
bool m_bOverZipper
Set while mid-air from a zipper.
bool m_bAccelerate
Accel button is pressed.
void resetEjection()
Resets certain bitfields pertaining to ejections (reject road, half pipe zippers, etc....
bool m_bGroundStart
Set first frame landing from airtime.
bool m_bAirtimeOver20
Set after 20 frames of airtime, resets on landing.
Pertains to kart-related functionality.
f32 normalise()
Normalizes the vector and returns the original length.
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
f32 length() const
The square root of the vector's dot product.
Information about the current collision and its properties.
bool bFloor
Set if colliding with KCL which satisfies KCL_TYPE_FLOOR.
bool bWall3
Set if colliding with COL_TYPE_WALL_2.
bool bWall
Set if colliding with KCL which satisfies KCL_TYPE_WALL.