3#include "game/kart/CollisionGroup.hh"
4#include "game/kart/KartAction.hh"
5#include "game/kart/KartObjectProxy.hh"
7#include "game/field/CourseColMgr.hh"
9#include <egg/core/BitFlag.hh>
23 ClipThroughSomeSpeed = 12,
25 KnockbackSomeSpeedLoseItem = 14,
26 LaunchSpinLoseItem = 15,
27 KnockbackBumpLoseItem = 16,
28 LongCrushLoseItem = 17,
32 HighLaunchLoseItem = 21,
33 SpinHitSomeSpeed = 22,
40 UntrickableJumpPad = 29,
41 ShortCrushLoseItem = 30,
43 ExplosionLoseItem = 32,
57 GroundBoostPanelOrRamp = 7,
60 StopHalfPipeState = 16,
74 void FUN_805B72B8(f32 param_1, f32 param_2,
bool lockXZ,
bool addExtVelY);
77 void calcFloorEffect();
78 void calcTriggers(Field::KCLTypeMask *mask,
const EGG::Vector3f &pos,
bool twoPoint);
79 void handleTriggers(Field::KCLTypeMask *mask);
80 void calcFallBoundary(Field::KCLTypeMask *mask,
bool shortBoundary);
81 void calcBeforeRespawn();
82 void activateOob(
bool detachCamera, Field::KCLTypeMask *mask,
bool somethingCPU,
83 bool somethingBullet);
88 void calcBoundingRadius();
89 void calcObjectCollision();
93 Field::KCLTypeMask *maskOut);
95 Field::KCLTypeMask *maskOut);
96 [[nodiscard]]
bool processWall(
CollisionData &collisionData, Field::KCLTypeMask *maskOut);
98 Field::KCLTypeMask *maskOut,
bool wheel);
103 bool b1,
bool b2,
bool b3);
111 void startFloorMomentRate();
112 void calcFloorMomentRate();
116 Action handleReactWallAllSpeed(
size_t idx);
117 Action handleReactSpinAllSpeed(
size_t idx);
118 Action handleReactSpinSomeSpeed(
size_t idx);
119 Action handleReactFireSpin(
size_t idx);
120 Action handleReactSmallLaunch(
size_t idx);
121 Action handleReactKnockbackSomeSpeedLoseItem(
size_t idx);
122 Action handleReactLaunchSpinLoseItem(
size_t idx);
123 Action handleReactKnockbackBumpLoseItem(
size_t idx);
124 Action handleReactLongCrushLoseItem(
size_t idx);
125 Action handleReactHighLaunchLoseItem(
size_t idx);
126 Action handleReactWeakWall(
size_t idx);
127 Action handleReactLaunchSpin(
size_t idx);
128 Action handleReactWallSpark(
size_t idx);
129 Action handleReactShortCrushLoseItem(
size_t idx);
130 Action handleReactCrushRespawn(
size_t idx);
131 Action handleReactExplosionLoseItem(
size_t idx);
137 collisionData.relPos = relPos;
138 collisionData.vel = vel;
139 collisionData.floorNrm = floorNrm;
140 collisionData.
bFloor =
true;
152 [[nodiscard]] f32 boundingRadius()
const {
153 return m_boundingRadius;
156 [[nodiscard]] f32 floorMomentRate()
const {
157 return m_floorMomentRate;
160 [[nodiscard]]
const SurfaceFlags &surfaceFlags()
const {
161 return m_surfaceFlags;
172 [[nodiscard]] f32 suspBottomHeightSoftWall()
const {
173 return m_suspBottomHeightSoftWall;
176 [[nodiscard]]
u16 someSoftWallTimer()
const {
177 return m_someSoftWallTimer;
180 [[nodiscard]] f32 suspBottomHeightNonSoftWall()
const {
181 return m_suspBottomHeightNonSoftWall;
184 [[nodiscard]]
u16 someNonSoftWallTimer()
const {
185 return m_someNonSoftWallTimer;
188 [[nodiscard]] f32 colPerpendicularity()
const {
189 return m_colPerpendicularity;
194 typedef Action (KartCollide::*ObjectCollisionHandler)(
size_t idx);
196 f32 m_boundingRadius;
197 f32 m_floorMomentRate;
199 SurfaceFlags m_surfaceFlags;
205 f32 m_suspBottomHeightSoftWall;
206 u16 m_someSoftWallTimer;
207 f32 m_suspBottomHeightNonSoftWall;
208 u16 m_someNonSoftWallTimer;
209 s16 m_poleAngVelTimer;
211 f32 m_colPerpendicularity;
213 static std::array<ObjectCollisionHandler, 33> s_objectCollisionHandlers;
Houses hitbox and collision info for an object (body or wheel).
Represents a hitbox for the kart body or a wheel.
Manages body+wheel collision and its influence on position/velocity/etc.
void applyBodyCollision(CollisionData &collisionData, const EGG::Vector3f &movement, const EGG::Vector3f &posRel, s32 count)
Saves collision info when vehicle body collision occurs.
void calcWheelCollision(u16 wheelIdx, CollisionGroup *hitboxGroup, const EGG::Vector3f &colVel, const EGG::Vector3f ¢er, f32 radius)
Checks wheel hitbox collision and stores position/velocity info.
void applySomeFloorMoment(f32 down, f32 rate, CollisionGroup *hitboxGroup, const EGG::Vector3f &forward, const EGG::Vector3f &nextDir, const EGG::Vector3f &speed, bool b1, bool b2, bool b3)
Applies external and angular velocity based on the collision with the floor.
void processCannon(Field::KCLTypeMask *maskOut)
Checks if we are colliding with a cannon trigger and sets the state flag if so.
Action handleReactNone(size_t idx)
Object collision functions.
bool FUN_805B6A9C(CollisionData &collisionData, const Hitbox &hitbox, EGG::BoundBox3f &minMax, EGG::Vector3f &relPos, s32 &count, const Field::KCLTypeMask &maskOut, const Field::CollisionInfo &colInfo)
Called on collision of a new KCL type??? This only happens after airtime so far.
void processWheel(CollisionData &collisionData, Hitbox &hitbox, Field::CollisionInfo *colInfo, Field::KCLTypeMask *maskOut)
Processes moving water and floor collision effects.
void calcHitboxes()
On each frame, calculates the positions for each hitbox.
void calcSideCollision(CollisionData &collisionData, Hitbox &hitbox, Field::CollisionInfo *colInfo)
void processFloor(CollisionData &collisionData, Hitbox &hitbox, Field::CollisionInfo *colInfo, Field::KCLTypeMask *maskOut, bool wheel)
Processes the floor triangles' attributes.
void FUN_805B72B8(f32 param_1, f32 param_2, bool lockXZ, bool addExtVelY)
Affects velocity when landing from airtime.
void calcBodyCollision(f32 totalScale, f32 sinkDepth, const EGG::Quatf &rot, const EGG::Vector3f &scale)
Checks and acts on collision for each kart hitbox.
Base class for most kart-related objects.
Pertains to kart-related functionality.
A representation of a bounding cuboid.
A quaternion, used to represent 3D rotation.
Wrapper around an integral type with an enum corresponding to its bits.
Information about the current collision and its properties.
bool bFloor
Set if colliding with KCL which satisfies KCL_TYPE_FLOOR.