3#include "game/kart/KartParam.hh"
7#include <egg/math/Matrix.hh>
32 f32 colPerpendicularity;
38 bool bInvisibleWallOnly;
41 bool bWallAtLeftCloser;
42 bool bWallAtRightCloser;
59 void setRadius(f32 radius) {
63 void setBspHitbox(
const BSP::Hitbox *hitbox,
bool owns =
false) {
80 [[nodiscard]]
const BSP::Hitbox *bspHitbox()
const {
96 [[nodiscard]] f32 radius()
const {
118 [[nodiscard]] f32
initHitboxes(
const std::array<BSP::Hitbox, 16> &hitboxes);
124 void resetCollision();
125 void setHitboxScale(f32 scale);
129 [[nodiscard]] f32 boundingRadius()
const {
130 return m_boundingRadius;
133 [[nodiscard]]
Hitbox &hitbox(
u16 hitboxIdx) {
134 return m_hitboxes[hitboxIdx];
137 [[nodiscard]]
u16 hitboxCount()
const {
138 return m_hitboxes.size();
142 return m_collisionData;
146 return m_collisionData;
151 f32 m_boundingRadius;
153 std::span<Hitbox> m_hitboxes;
Houses hitbox and collision info for an object (body or wheel).
void createSingleHitbox(f32 radius, const EGG::Vector3f &relPos)
Creates a hitbox to represent a tire.
f32 computeCollisionLimits()
Sets the bounding radius.
f32 initHitboxes(const std::array< BSP::Hitbox, 16 > &hitboxes)
Initializes the hitbox array based on the KartParam's BSP hitboxes.
Represents a hitbox for the kart body or a wheel.
void calc(f32 totalScale, f32 sinkDepth, const EGG::Vector3f &scale, const EGG::Quatf &rot, const EGG::Vector3f &pos)
Calculates the position of a given hitbox, both relative to the player and world.
Pertains to kart-related functionality.
A quaternion, used to represent 3D rotation.
Represents one of the many hitboxes that make up a vehicle.
Information about the current collision and its properties.
u32 closestFloorSettings
The KCL flag's "variant".
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.
Field::KCLTypeMask closestFloorFlags
The KCL flag's KColType.
s32 intensity
The KCL flag's "wheel depth".