A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
CollisionGroup.hh
1#pragma once
2
3#include "game/kart/KartParam.hh"
4
6
7#include <egg/math/Matrix.hh>
8
9#include <array>
10#include <span>
11
13namespace Kart {
14
18 void reset();
19
20 EGG::Vector3f tangentOff;
21 EGG::Vector3f floorNrm;
22 EGG::Vector3f wallNrm;
23 EGG::Vector3f noBounceWallNrm;
24 EGG::Vector3f vel;
25 EGG::Vector3f relPos;
26 EGG::Vector3f movement;
27 f32 speedFactor;
28 f32 rotFactor;
29 Field::KCLTypeMask closestFloorFlags;
32 f32 colPerpendicularity;
33
34 bool bFloor;
35 bool bWall;
36 bool bInvisibleWall;
37 bool bWall3;
38 bool bInvisibleWallOnly;
39 bool bSoftWall;
40 bool bTrickable;
41 bool bWallAtLeftCloser;
42 bool bWallAtRightCloser;
43};
44
48class Hitbox {
49public:
50 Hitbox();
51 ~Hitbox();
52
53 void calc(f32 totalScale, f32 sinkDepth, const EGG::Vector3f &scale, const EGG::Quatf &rot,
54 const EGG::Vector3f &pos);
55
57 void reset();
58
59 void setRadius(f32 radius) {
60 m_radius = radius;
61 }
62
63 void setBspHitbox(const BSP::Hitbox *hitbox, bool owns = false) {
64 m_ownsBSP = owns;
65 m_bspHitbox = hitbox;
66 }
67
68 void setWorldPos(const EGG::Vector3f &pos) {
69 m_worldPos = pos;
70 }
71
72 void setLastPos(const EGG::Vector3f &pos) {
73 m_lastPos = pos;
74 }
75
76 void setLastPos(const EGG::Vector3f &scale, const EGG::Matrix34f &pose);
78
80 [[nodiscard]] const BSP::Hitbox *bspHitbox() const {
81 return m_bspHitbox;
82 }
83
84 [[nodiscard]] const EGG::Vector3f &worldPos() const {
85 return m_worldPos;
86 }
87
88 [[nodiscard]] const EGG::Vector3f &lastPos() const {
89 return m_lastPos;
90 }
91
92 [[nodiscard]] const EGG::Vector3f &relPos() const {
93 return m_relPos;
94 }
95
96 [[nodiscard]] f32 radius() const {
97 return m_radius;
98 }
100
101private:
102 const BSP::Hitbox *m_bspHitbox;
103 f32 m_radius;
104 EGG::Vector3f m_worldPos;
105 EGG::Vector3f m_lastPos;
106 EGG::Vector3f m_relPos;
107
108 bool m_ownsBSP;
109};
110
114public:
117
118 [[nodiscard]] f32 initHitboxes(const std::array<BSP::Hitbox, 16> &hitboxes);
119 [[nodiscard]] f32 computeCollisionLimits();
120 void createSingleHitbox(f32 radius, const EGG::Vector3f &relPos);
121
123 void reset();
124 void resetCollision();
125 void setHitboxScale(f32 scale);
127
129 [[nodiscard]] f32 boundingRadius() const {
130 return m_boundingRadius;
131 }
132
133 [[nodiscard]] Hitbox &hitbox(u16 hitboxIdx) {
134 return m_hitboxes[hitboxIdx];
135 }
136
137 [[nodiscard]] u16 hitboxCount() const {
138 return m_hitboxes.size();
139 }
140
141 [[nodiscard]] CollisionData &collisionData() {
142 return m_collisionData;
143 }
144
145 [[nodiscard]] const CollisionData &collisionData() const {
146 return m_collisionData;
147 }
149
150private:
151 f32 m_boundingRadius;
152 CollisionData m_collisionData;
153 std::span<Hitbox> m_hitboxes;
154 f32 m_hitboxScale;
155};
156
157} // namespace Kart
A 3 x 4 matrix.
Definition Matrix.hh:8
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.
Definition Quat.hh:12
A 3D float vector.
Definition Vector.hh:83
Represents one of the many hitboxes that make up a vehicle.
Definition KartParam.hh:10
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".