A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartState.hh
1#pragma once
2
3#include "game/kart/KartObjectProxy.hh"
4
5namespace Kart {
6
13public:
14 KartState();
15
16 void init();
17 void reset();
18
19 void calcInput();
20 void calc();
21 void resetFlags();
22 void calcCollisions();
23 void calcStartBoost();
25 void handleStartBoost(size_t idx);
26 void resetEjection();
27
29 void clearBitfield0();
30 void clearBitfield1();
31 void clearBitfield2();
32 void clearBitfield3();
33
34 void setAccelerate(bool isSet) {
35 m_bAccelerate = isSet;
36 }
37
38 void setDriftInput(bool isSet) {
39 m_bDriftInput = isSet;
40 }
41
42 void setDriftManual(bool isSet) {
43 m_bDriftManual = isSet;
44 }
45
46 void setBeforeRespawn(bool isSet) {
47 m_bBeforeRespawn = isSet;
48 }
49
50 void setWallCollision(bool isSet) {
51 m_bWallCollision = isSet;
52 }
53
54 void setHopStart(bool isSet) {
55 m_bHopStart = isSet;
56 }
57
58 void setVehicleBodyFloorCollision(bool isSet) {
60 }
61
62 void setAnyWheelCollision(bool isSet) {
64 }
65
66 void setWallCollisionStart(bool isSet) {
68 }
69
70 void setStickyRoad(bool isSet) {
71 m_bStickyRoad = isSet;
72 }
73
74 void setAllWheelsCollision(bool isSet) {
76 }
77
78 void setTouchingGround(bool isSet) {
79 m_bTouchingGround = isSet;
80 }
81
82 void setHop(bool isSet) {
83 m_bHop = isSet;
84 }
85
86 void setBoost(bool isSet) {
87 m_bBoost = isSet;
88 }
89
90 void setMushroomBoost(bool isSet) {
91 m_bMushroomBoost = isSet;
92 }
93
94 void setSlipdriftCharge(bool isSet) {
95 m_bSlipdriftCharge = isSet;
96 }
97
98 void setDriftAuto(bool isSet) {
99 m_bDriftAuto = isSet;
100 }
101
102 void setWheelie(bool isSet) {
103 m_bWheelie = isSet;
104 }
105
106 void setJumpPad(bool isSet) {
107 m_bJumpPad = isSet;
108 }
109
110 void setRampBoost(bool isSet) {
111 m_bRampBoost = isSet;
112 }
113
114 void setInAction(bool isSet) {
115 m_bInAction = isSet;
116 }
117
118 void setTriggerRespawn(bool isSet) {
119 m_bTriggerRespawn = isSet;
120 }
121
122 void setCannonStart(bool isSet) {
123 m_bCannonStart = isSet;
124 }
125
126 void setInCannon(bool isSet) {
127 m_bInCannon = isSet;
128 }
129
130 void setTrickStart(bool isSet) {
131 m_bTrickStart = isSet;
132 }
133
134 void setInATrick(bool isSet) {
135 m_bInATrick = isSet;
136 }
137
138 void setBoostOffroadInvincibility(bool isSet) {
140 }
141
142 void setHalfPipeRamp(bool isSet) {
143 m_bHalfPipeRamp = isSet;
144 }
145
146 void setOverZipper(bool isSet) {
147 m_bOverZipper = isSet;
148 }
149
150 void setZipperInvisibleWall(bool isSet) {
152 }
153
154 void setZipperBoost(bool isSet) {
155 m_bZipperBoost = isSet;
156 }
157
158 void setZipperStick(bool isSet) {
159 m_bZipperStick = isSet;
160 }
161
162 void setZipperTrick(bool isSet) {
163 m_bZipperTrick = isSet;
164 }
165
166 void setDisableBackwardsAccel(bool isSet) {
168 }
169
170 void setRespawnKillY(bool isSet) {
171 m_bRespawnKillY = isSet;
172 }
173
174 void setBurnout(bool isSet) {
175 m_bBurnout = isSet;
176 }
177
178 void setTrickRot(bool isSet) {
179 m_bTrickRot = isSet;
180 }
181
182 void setChargingSsmt(bool isSet) {
183 m_bChargingSsmt = isSet;
184 }
185
186 void setRejectRoad(bool isSet) {
187 m_bRejectRoad = isSet;
188 }
189
190 void setRejectRoadTrigger(bool isSet) {
191 m_bRejectRoadTrigger = isSet;
192 }
193
194 void setTrickable(bool isSet) {
195 m_bTrickable = isSet;
196 }
197
198 void setWheelieRot(bool isSet) {
199 m_bWheelieRot = isSet;
200 }
201
202 void setSkipWheelCalc(bool isSet) {
203 m_bSkipWheelCalc = isSet;
204 }
205
206 void setNoSparkInvisibleWall(bool isSet) {
207 m_bNoSparkInvisibleWall = isSet;
208 }
209
210 void setInRespawn(bool isSet) {
211 m_bInRespawn = isSet;
212 }
213
214 void setAfterRespawn(bool isSet) {
215 m_bAfterRespawn = isSet;
216 }
217
218 void setJumpPadDisableYsusForce(bool isSet) {
219 m_bJumpPadDisableYsusForce = isSet;
220 }
221
222 void setSomethingWallCollision(bool isSet) {
223 m_bSomethingWallCollision = isSet;
224 }
225
226 void setSoftWallDrift(bool isSet) {
227 m_bSoftWallDrift = isSet;
228 }
229
230 void setHWG(bool isSet) {
231 m_bHWG = isSet;
232 }
233
234 void setAfterCannon(bool isSet) {
235 m_bAfterCannon = isSet;
236 }
237
238 void setEndHalfPipe(bool isSet) {
239 m_bEndHalfPipe = isSet;
240 }
241
242 void setCannonPointId(u16 val) {
243 m_cannonPointId = val;
244 }
245
246 void setBoostRampType(s32 val) {
247 m_boostRampType = val;
248 }
249
250 void setJumpPadVariant(s32 val) {
251 m_jumpPadVariant = val;
252 }
253
254 void setHalfPipeInvisibilityTimer(s16 val) {
255 m_halfPipeInvisibilityTimer = val;
256 }
257
258 void setTrickableTimer(s16 val) {
259 m_trickableTimer = val;
260 }
262
264 [[nodiscard]] bool isDrifting() const {
266 }
267
268 [[nodiscard]] bool isAccelerate() const {
269 return m_bAccelerate;
270 }
271
272 [[nodiscard]] bool isBrake() const {
273 return m_bBrake;
274 }
275
276 [[nodiscard]] bool isDriftInput() const {
277 return m_bDriftInput;
278 }
279
280 [[nodiscard]] bool isDriftManual() const {
281 return m_bDriftManual;
282 }
283
284 [[nodiscard]] bool isBeforeRespawn() const {
285 return m_bBeforeRespawn;
286 }
287
288 [[nodiscard]] bool isWall3Collision() const {
289 return m_bWall3Collision;
290 }
291
292 [[nodiscard]] bool isWallCollision() const {
293 return m_bWallCollision;
294 }
295
296 [[nodiscard]] bool isHopStart() const {
297 return m_bHopStart;
298 }
299
300 [[nodiscard]] bool isAccelerateStart() const {
301 return m_bAccelerateStart;
302 }
303
304 [[nodiscard]] bool isGroundStart() const {
305 return m_bGroundStart;
306 }
307
308 [[nodiscard]] bool isVehicleBodyFloorCollision() const {
310 }
311
312 [[nodiscard]] bool isAnyWheelCollision() const {
314 }
315
316 [[nodiscard]] bool isAllWheelsCollision() const {
318 }
319
320 [[nodiscard]] bool isStickLeft() const {
321 return m_bStickLeft;
322 }
323
324 [[nodiscard]] bool isWallCollisionStart() const {
326 }
327
328 [[nodiscard]] bool isAirtimeOver20() const {
329 return m_bAirtimeOver20;
330 }
331
332 [[nodiscard]] bool isStickyRoad() const {
333 return m_bStickyRoad;
334 }
335
336 [[nodiscard]] bool isTouchingGround() const {
337 return m_bTouchingGround;
338 }
339
340 [[nodiscard]] bool isHop() const {
341 return m_bHop;
342 }
343
344 [[nodiscard]] bool isSoftWallDrift() const {
345 return m_bSoftWallDrift;
346 }
347
348 [[nodiscard]] bool isHWG() const {
349 return m_bHWG;
350 }
351
352 [[nodiscard]] bool isAfterCannon() const {
353 return m_bAfterCannon;
354 }
355
356 [[nodiscard]] bool isChargeStartBoost() const {
357 return m_bChargeStartBoost;
358 }
359
360 [[nodiscard]] bool isBoost() const {
361 return m_bBoost;
362 }
363
364 [[nodiscard]] bool isAirStart() const {
365 return m_bAirStart;
366 }
367
368 [[nodiscard]] bool isStickRight() const {
369 return m_bStickRight;
370 }
371
372 [[nodiscard]] bool isMushroomBoost() const {
373 return m_bMushroomBoost;
374 }
375
376 [[nodiscard]] bool isDriftAuto() const {
377 return m_bDriftAuto;
378 }
379
380 [[nodiscard]] bool isSlipdriftCharge() const {
381 return m_bSlipdriftCharge;
382 }
383
384 [[nodiscard]] bool isWheelie() const {
385 return m_bWheelie;
386 }
387
388 [[nodiscard]] bool isJumpPad() const {
389 return m_bJumpPad;
390 }
391
392 [[nodiscard]] bool isRampBoost() const {
393 return m_bRampBoost;
394 }
395
396 [[nodiscard]] bool isInAction() const {
397 return m_bInAction;
398 }
399
400 [[nodiscard]] bool isTriggerRespawn() const {
401 return m_bTriggerRespawn;
402 }
403
404 [[nodiscard]] bool isCannonStart() const {
405 return m_bCannonStart;
406 }
407
408 [[nodiscard]] bool isInCannon() const {
409 return m_bInCannon;
410 }
411
412 [[nodiscard]] bool isTrickStart() const {
413 return m_bTrickStart;
414 }
415
416 [[nodiscard]] bool isInATrick() const {
417 return m_bInATrick;
418 }
419
420 [[nodiscard]] bool isBoostOffroadInvincibility() const {
422 }
423
424 [[nodiscard]] bool isHalfPipeRamp() const {
425 return m_bHalfPipeRamp;
426 }
427
428 [[nodiscard]] bool isOverZipper() const {
429 return m_bOverZipper;
430 }
431
432 [[nodiscard]] bool isZipperInvisibleWall() const {
434 }
435
436 [[nodiscard]] bool isZipperBoost() const {
437 return m_bZipperBoost;
438 }
439
440 [[nodiscard]] bool isZipperTrick() const {
441 return m_bZipperTrick;
442 }
443
444 [[nodiscard]] bool isDisableBackwardsAccel() const {
446 }
447
448 [[nodiscard]] bool isRespawnKillY() const {
449 return m_bRespawnKillY;
450 }
451
452 [[nodiscard]] bool isBurnout() const {
453 return m_bBurnout;
454 }
455
456 [[nodiscard]] bool isZipperStick() const {
457 return m_bZipperStick;
458 }
459
460 [[nodiscard]] bool isTrickRot() const {
461 return m_bTrickRot;
462 }
463
464 [[nodiscard]] bool isChargingSsmt() const {
465 return m_bChargingSsmt;
466 }
467
468 [[nodiscard]] bool isRejectRoad() const {
469 return m_bRejectRoad;
470 }
471
472 [[nodiscard]] bool isRejectRoadTrigger() const {
474 }
475
476 [[nodiscard]] bool isTrickable() const {
477 return m_bTrickable;
478 }
479
480 [[nodiscard]] bool isWheelieRot() const {
481 return m_bWheelieRot;
482 }
483
484 [[nodiscard]] bool isJumpPadDisableYsusForce() const {
485 return m_bJumpPadDisableYsusForce;
486 }
487
488 [[nodiscard]] bool isSkipWheelCalc() const {
489 return m_bSkipWheelCalc;
490 }
491
492 [[nodiscard]] bool isNoSparkInvisibleWall() const {
493 return m_bNoSparkInvisibleWall;
494 }
495
496 [[nodiscard]] bool isInRespawn() const {
497 return m_bInRespawn;
498 }
499
500 [[nodiscard]] bool isAfterRespawn() const {
501 return m_bAfterRespawn;
502 }
503
504 [[nodiscard]] bool isUNK2() const {
505 return m_bUNK2;
506 }
507
508 [[nodiscard]] bool isSomethingWallCollision() const {
509 return m_bSomethingWallCollision;
510 }
511
512 [[nodiscard]] bool isEndHalfPipe() const {
513 return m_bEndHalfPipe;
514 }
515
516 [[nodiscard]] bool isAutoDrift() const {
517 return m_bAutoDrift;
518 }
519
520 [[nodiscard]] u16 cannonPointId() const {
521 return m_cannonPointId;
522 }
523
524 [[nodiscard]] s32 boostRampType() const {
525 return m_boostRampType;
526 }
527
528 [[nodiscard]] s32 jumpPadVariant() const {
529 return m_jumpPadVariant;
530 }
531
532 [[nodiscard]] f32 stickX() const {
533 return m_stickX;
534 }
535
536 [[nodiscard]] f32 stickY() const {
537 return m_stickY;
538 }
539
540 [[nodiscard]] u32 airtime() const {
541 return m_airtime;
542 }
543
544 [[nodiscard]] const EGG::Vector3f &top() const {
545 return m_top;
546 }
547
548 [[nodiscard]] const EGG::Vector3f &softWallSpeed() const {
549 return m_softWallSpeed;
550 }
551
552 [[nodiscard]] f32 startBoostCharge() const {
553 return m_startBoostCharge;
554 }
555
556 [[nodiscard]] s16 wallBonkTimer() const {
557 return m_wallBonkTimer;
558 }
559
560 [[nodiscard]] s16 trickableTimer() const {
561 return m_trickableTimer;
562 }
564
565private:
566 // Bits from the base game's bitfields are marked with prefix 'b'
567
572 bool m_bBrake;
593 bool m_bHop;
594 bool m_bBoost;
595 bool m_bAirStart;
599 bool m_bSlipdriftCharge;
601 bool m_bJumpPad;
602 bool m_bRampBoost;
604
608 bool m_bInAction;
609 bool m_bTriggerRespawn;
610 bool m_bCannonStart;
611 bool m_bInCannon;
612 bool m_bTrickStart;
613 bool m_bInATrick;
624 bool m_bTrickRot;
628 bool m_bTrickable;
630
634 bool m_bWheelieRot;
635 bool m_bSkipWheelCalc;
636 bool m_bNoSparkInvisibleWall;
637 bool m_bInRespawn;
638 bool m_bAfterRespawn;
639 bool m_bJumpPadDisableYsusForce;
641
645 bool m_bUNK2;
646 bool m_bSomethingWallCollision;
647 bool m_bSoftWallDrift;
648 bool m_bHWG;
649 bool m_bAfterCannon;
651 bool m_bEndHalfPipe;
653
659
660 u32 m_airtime;
661 EGG::Vector3f m_top;
662 EGG::Vector3f m_softWallSpeed;
663 s32 m_hwgTimer;
664 u16 m_cannonPointId;
665 s32 m_boostRampType;
666 s32 m_jumpPadVariant;
667 s16 m_halfPipeInvisibilityTimer;
673 s16 m_trickableTimer;
674};
675
676} // namespace Kart
Base class for most kart-related objects.
Houses various flags and other variables to preserve the kart's state.
Definition KartState.hh:12
bool m_bZipperBoost
Set when boosting after landing from a zipper.
Definition KartState.hh:618
bool m_bRespawnKillY
Set while respawning to cap external velocity at 0.
Definition KartState.hh:622
bool m_bBoost
Set while in a boost.
Definition KartState.hh:594
bool m_bChargeStartBoost
Like m_bAccelerate but during countdown.
Definition KartState.hh:650
bool m_bHop
Set while we are in a drift hop. Clears when we land.
Definition KartState.hh:593
bool m_bBeforeRespawn
Set on respawn collision, cleared on position snap.
Definition KartState.hh:579
void clearBitfield1()
Helper function to clear all bit flags at 0x8-0xB in KartState.
Definition KartState.cc:453
size_t m_startBoostIdx
Used to map m_startBoostCharge to a start boost duration.
Definition KartState.hh:671
void clearBitfield0()
Helper function to clear all bit flags at 0x4-0x7 in KartState.
Definition KartState.cc:421
bool m_bHopStart
Set if m_bDriftInput was toggled on this frame.
Definition KartState.hh:582
bool m_bHWG
Set when "Horizontal Wall Glitch" is active.
Definition KartState.hh:648
bool m_bBurnout
Set during a burnout on race start.
Definition KartState.hh:623
bool m_bDriftAuto
Currently in a drift w/ automatic.
Definition KartState.hh:598
bool m_bStickRight
Set on right stick input. Mutually exclusive to m_bStickLeft.
Definition KartState.hh:596
void clearBitfield2()
Helper function to clear all bit flags at 0xC-0xF in KartState.
Definition KartState.cc:478
void calcStartBoost()
STAGE 1 - Each frame, calculates the start boost charge.
Definition KartState.cc:356
bool m_bRejectRoad
Collision which causes a change in the player's pos and rot.
Definition KartState.hh:626
bool m_bWallCollision
Set if we are colliding with a wall.
Definition KartState.hh:581
bool m_bZipperTrick
Set while tricking mid-air from a zipper.
Definition KartState.hh:620
s16 m_wallBonkTimer
2f counter that stunts your speed after hitting a wall.
Definition KartState.hh:672
void calcCollisions()
Each frame, checks for collision and saves relevant bit flags.
Definition KartState.cc:154
bool m_bAllWheelsCollision
Set when all wheels are touching floor collision.
Definition KartState.hh:587
bool m_bDriftInput
A "fake" button, normally set if you meet the speed requirement to hop.
Definition KartState.hh:577
void clearBitfield3()
Helper function to clear all bit flags at 0x10-0x13 in KartState.
Definition KartState.cc:488
void calcHandleStartBoost()
On countdown end, calculates and applies our start boost charge.
Definition KartState.cc:374
f32 m_stickY
One of 15 discrete stick values from [-1.0, 1.0].
Definition KartState.hh:669
bool m_bChargingSsmt
Tracks whether we are charging a stand-still mini-turbo.
Definition KartState.hh:625
bool m_bAccelerateStart
Set if m_bAccelerate was toggled on this frame.
Definition KartState.hh:583
bool m_bDriftManual
Currently in a drift w/ manual.
Definition KartState.hh:578
bool m_bAutoDrift
True if auto transmission, false if manual.
Definition KartState.hh:657
void handleStartBoost(size_t idx)
Applies the relevant start boost duration.
Definition KartState.cc:405
void calc()
Every frame, resets the input state and saves collision-related bit flags.
Definition KartState.cc:117
bool m_bZipperStick
Set while mid-air and still influenced by the zipper.
Definition KartState.hh:619
bool m_bMushroomBoost
Set while we are in a mushroom boost.
Definition KartState.hh:597
bool m_bDisableBackwardsAccel
Enforces a 20f delay when reversing after charging SSMT.
Definition KartState.hh:621
bool m_bHalfPipeRamp
Set while colliding with zipper KCL.
Definition KartState.hh:615
f32 m_stickX
One of 15 discrete stick values from [-1.0, 1.0].
Definition KartState.hh:668
bool m_bVehicleBodyFloorCollision
Set if the vehicle body is colliding with the floor.
Definition KartState.hh:585
bool m_bBoostOffroadInvincibility
Set if we should ignore offroad slowdown this frame.
Definition KartState.hh:614
bool m_bAnyWheelCollision
Set when any wheel is touching floor collision.
Definition KartState.hh:586
bool m_bStickyRoad
Like the rBC stairs.
Definition KartState.hh:591
bool m_bWall3Collision
Set when colliding with wall KCL COL_TYPE_WALL_2.
Definition KartState.hh:580
f32 m_startBoostCharge
0-1 representation of start boost charge. Burnout if >0.95f.
Definition KartState.hh:670
bool m_bWheelie
Set while we are in a wheelie (even during the countdown).
Definition KartState.hh:600
bool m_bZipperInvisibleWall
Set when colliding with invisible wall above a zipper.
Definition KartState.hh:617
bool m_bTouchingGround
Set when any part of the vehicle is colliding with floor KCL.
Definition KartState.hh:592
bool m_bRejectRoadTrigger
e.g. DK Summit ending, and Maple Treeway side walls.
Definition KartState.hh:627
bool m_bStickLeft
Set on left stick input. Mutually exclusive to m_bStickRight.
Definition KartState.hh:588
void calcInput()
Each frame, read input and save related bit flags. Also handles start boosts.
Definition KartState.cc:70
bool m_bWallCollisionStart
Set if we have just started colliding with a wall.
Definition KartState.hh:589
bool m_bOverZipper
Set while mid-air from a zipper.
Definition KartState.hh:616
bool m_bAccelerate
Accel button is pressed.
Definition KartState.hh:571
void resetEjection()
Resets certain bitfields pertaining to ejections (reject road, half pipe zippers, etc....
Definition KartState.cc:415
bool m_bGroundStart
Set first frame landing from airtime.
Definition KartState.hh:584
bool m_bAirtimeOver20
Set after 20 frames of airtime, resets on landing.
Definition KartState.hh:590
Pertains to kart-related functionality.
A 3D float vector.
Definition Vector.hh:83