A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
CollisionGroup.cc
1#include "CollisionGroup.hh"
2
3namespace Kart {
4
6void CollisionData::reset() {
7 tangentOff.setZero();
8 floorNrm.setZero();
9 wallNrm.setZero();
10 vel.setZero();
11 relPos.setZero();
12 movement.setZero();
13 speedFactor = 1.0f;
14 rotFactor = 0.0f;
16 closestFloorSettings = 0xffffffff;
17 intensity = 0.0f;
18 colPerpendicularity = 0.0f;
19
20 bFloor = false;
21 bWall = false;
22 bInvisibleWall = false;
23 bWall3 = false;
24 bInvisibleWallOnly = false;
25 bSoftWall = false;
26 bTrickable = false;
27 bWallAtLeftCloser = false;
28 bWallAtRightCloser = false;
29}
30
32Hitbox::Hitbox() : m_bspHitbox(nullptr), m_ownsBSP(false) {}
33
35Hitbox::~Hitbox() {
36 if (m_ownsBSP) {
37 delete m_bspHitbox;
38 }
39}
40
43void Hitbox::calc(f32 totalScale, f32 sinkDepth, const EGG::Vector3f &scale, const EGG::Quatf &rot,
44 const EGG::Vector3f &pos) {
45 f32 fVar1 = 0.0f;
46 if (scale.y < totalScale) {
47 fVar1 = (totalScale - scale.y) * m_bspHitbox->radius;
48 }
49
50 EGG::Vector3f scaledPos = m_bspHitbox->position * scale;
51 scaledPos.y = (m_bspHitbox->position.y + sinkDepth) * scale.y + fVar1;
52
53 m_relPos = rot.rotateVector(scaledPos);
54 m_worldPos = m_relPos + pos;
55}
56
58void Hitbox::reset() {
59 m_worldPos.setZero();
60 m_lastPos.setZero();
61 m_relPos.setZero();
62}
63
65void Hitbox::setLastPos(const EGG::Vector3f &scale, const EGG::Matrix34f &pose) {
66 f32 yScaleFactor = scale.y;
67 EGG::Vector3f scaledPos = m_bspHitbox->position;
68 scaledPos.x *= scale.x;
69 scaledPos.z *= scale.z;
70
71 if (scale.y != scale.z && scale.y < 1.0f) {
72 scaledPos.y += (1.0f - scale.y) * m_radius;
73 yScaleFactor = scale.z;
74 }
75
76 scaledPos.y *= yScaleFactor;
77 m_lastPos = pose.ps_multVector(scaledPos);
78}
79
81CollisionGroup::CollisionGroup() : m_hitboxScale(1.0f) {
82 m_collisionData.reset();
83}
84
85CollisionGroup::~CollisionGroup() {
86 delete[] m_hitboxes.data();
87}
88
96f32 CollisionGroup::initHitboxes(const std::array<BSP::Hitbox, 16> &hitboxes) {
97 u16 bspHitboxCount = 0;
98
99 for (const auto &hitbox : hitboxes) {
100 if (parse<u16>(hitbox.enable)) {
101 ++bspHitboxCount;
102 }
103 }
104
105 m_hitboxes = std::span<Hitbox>(new Hitbox[bspHitboxCount], bspHitboxCount);
106 u16 hitboxIdx = 0;
107
108 for (const auto &bspHitbox : hitboxes) {
109 if (parse<u16>(bspHitbox.enable)) {
110 m_hitboxes[hitboxIdx++].setBspHitbox(&bspHitbox);
111 }
112 }
113
114 return computeCollisionLimits();
115}
116
121 EGG::Vector3f max = EGG::Vector3f::zero;
122
123 for (const auto &hitbox : m_hitboxes) {
124 const BSP::Hitbox *bspHitbox = hitbox.bspHitbox();
125
126 if (bspHitbox->enable == 0) {
127 continue;
128 }
129
130 max = max.maximize(bspHitbox->position.abs() + bspHitbox->radius);
131 }
132
133 // Get largest component of the vector
134 f32 maxComponent = max.z;
135
136 if (max.x <= max.y) {
137 if (max.z < max.y) {
138 maxComponent = max.y;
139 }
140 } else if (max.z < max.x) {
141 maxComponent = max.x;
142 }
143
144 m_boundingRadius = maxComponent;
145
146 return max.z * 0.5f;
147}
148
152void CollisionGroup::createSingleHitbox(f32 radius, const EGG::Vector3f &relPos) {
153 m_hitboxes = std::span<Hitbox>(new Hitbox[1], 1);
154
155 // TODO: Do we need for loop if this is just one?
156 // And how exactly will we identify to free the BSP::Hitbox on destruction?
157 for (auto &hitbox : m_hitboxes) {
158 hitbox.reset();
159 BSP::Hitbox *bspHitbox = new BSP::Hitbox;
160 hitbox.setBspHitbox(bspHitbox, true);
161 bspHitbox->position = relPos;
162 bspHitbox->radius = radius;
163 hitbox.setRadius(radius);
164 }
165 m_boundingRadius = radius;
166}
167
169void CollisionGroup::reset() {
170 m_collisionData.reset();
171
172 for (auto &hitbox : m_hitboxes) {
173 hitbox.reset();
174 hitbox.setRadius(hitbox.bspHitbox()->radius * m_hitboxScale);
175 }
176}
177
178void CollisionGroup::resetCollision() {
179 m_collisionData.reset();
180}
181
183void CollisionGroup::setHitboxScale(f32 scale) {
184 m_hitboxScale = scale;
185
186 for (auto &hitbox : m_hitboxes) {
187 hitbox.setRadius(hitbox.bspHitbox()->radius * m_hitboxScale);
188 }
189}
190
191} // namespace Kart
A 3 x 4 matrix.
Definition Matrix.hh:8
Vector3f ps_multVector(const Vector3f &vec) const
Paired-singles impl. of multVector.
Definition Matrix.cc:232
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.
Pertains to kart-related functionality.
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
Definition Quat.cc:50
A 3D float vector.
Definition Vector.hh:83
Vector3f abs() const
Returns the absolute value of each element of the vector.
Definition Vector.hh:209
Vector3f maximize(const Vector3f &rhs) const
Returns a vector whose elements are the max of the elements of both vectors.
Definition Vector.cc:65
Represents one of the many hitboxes that make up a vehicle.
Definition KartParam.hh:10
u16 enable
Specifies if this is an active hitbox (since BSP always has 16).
Definition KartParam.hh:11
EGG::Vector3f position
The relative position of the hitbox.
Definition KartParam.hh:12
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".