A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectCollisionKart.cc
1#include "ObjectCollisionKart.hh"
2
3#include "game/field/ObjectDirector.hh"
4
5#include "game/kart/KartObjectManager.hh"
6
7#include "game/system/RaceConfig.hh"
8
9namespace Field {
10
12ObjectCollisionKart::ObjectCollisionKart() : m_kartObject(nullptr) {}
13
15ObjectCollisionKart::~ObjectCollisionKart() {
16 delete m_hull;
17}
18
20void ObjectCollisionKart::init(u32 idx) {
21 if (m_kartObject) {
22 return;
23 }
24
25 m_kartObject = Kart::KartObjectManager::Instance()->object(idx);
26 m_playerIdx = idx;
27
28 auto vehicle = System::RaceConfig::Instance()->raceScenario().players[idx].vehicle;
29 m_hull = new ObjectCollisionConvexHull(GetVehicleVertices(vehicle));
30}
31
33size_t ObjectCollisionKart::checkCollision(const EGG::Matrix34f &mat, const EGG::Vector3f &v) {
34 if (!m_hull) {
35 return 0;
36 }
37
38 const EGG::Vector3f &scale = m_kartObject->scale();
39 m_hull->transform(mat, scale, v);
40 m_hull->setBoundingRadius(scale.x * m_hull->getBoundingRadius());
41
42 return ObjectDirector::Instance()->checkKartObjectCollision(m_kartObject, m_hull);
43}
44
46EGG::Vector3f ObjectCollisionKart::GetHitDirection(u16 objKartHit) {
47 EGG::Vector3f hitDepth = ObjectDirector::Instance()->hitDepth(objKartHit);
48 hitDepth.normalise();
49 return hitDepth;
50}
51
53constexpr std::span<const EGG::Vector3f> ObjectCollisionKart::GetVehicleVertices(Vehicle vehicle) {
54 static constexpr std::array<EGG::Vector3f, 2> VERT_STANDARD_KART_S = {{
55 {0.0f, 35.0f, -40.0f},
56 {0.0f, 35.0f, 25.0f},
57 }};
58
59 static constexpr std::array<EGG::Vector3f, 4> VERT_STANDARD_KART_M = {{
60 {0.0, 60.0, 10.0},
61 {10.0, 35.0, -50.0},
62 {-10.0, 35.0, -50.0},
63 {0.0, 35.0, 65.0},
64 }};
65
66 static constexpr std::array<EGG::Vector3f, 4> VERT_STANDARD_KART_L = {{
67 {0.0, 135.0, 30.0},
68 {25.0, 35.0, -95.0},
69 {-25.0, 35.0, -95.0},
70 {0.0, 35.0, 105.0},
71 }};
72
73 static constexpr std::array<EGG::Vector3f, 4> VERT_BOOSTER_SEAT = {{
74 {0.0, 120.0, 0.0},
75 {0.0, 95.0, -55.0},
76 {0.0, 10.0, -15.0},
77 {0.0, 10.0, 20.0},
78 }};
79
80 static constexpr std::array<EGG::Vector3f, 5> VERT_CLASSIC_DRAGSTER = {{
81 {0.0, 55.0, -25.0},
82 {20.0, -5.0, -85.0},
83 {-20.0, -5.0, -85.0},
84 {20.0, -5.0, 60.0},
85 {-20.0, -5.0, 60.0},
86 }};
87
88 static constexpr std::array<EGG::Vector3f, 5> VERT_OFFROADER = {{
89 {0.0, 85.0, 30.0},
90 {60.0, 5.0, -95.0},
91 {-60.0, 5.0, -95.0},
92 {50.0, 5.0, 130.0},
93 {-50.0, 5.0, 130.0},
94 }};
95
96 static constexpr std::array<EGG::Vector3f, 3> VERT_MINI_BEAST = {{
97 {0.0, 25.0, -10.0},
98 {0.0, 5.0, -60.0},
99 {0.0, 5.0, 40.0},
100 }};
101
102 static constexpr std::array<EGG::Vector3f, 4> VERT_WILD_WING = {{
103 {0.0, 60.0, -10.0},
104 {15.0, 25.0, -80.0},
105 {-15.0, 25.0, -80.0},
106 {0.0, 25.0, 80.0},
107 }};
108
109 static constexpr std::array<EGG::Vector3f, 5> VERT_FLAME_FLYER = {{
110 {0.0, 80.0, 0.0},
111 {30.0, 0.0, -105.0},
112 {-30.0, 0.0, -105.0},
113 {25.0, 0.0, 105.0},
114 {-25.0, 0.0, 105.0},
115 }};
116
117 static constexpr std::array<EGG::Vector3f, 3> VERT_CHEEP_CHARGER = {{
118 {0.0, 40.0, 0.0},
119 {0.0, 25.0, -10.0},
120 {0.0, 25.0, 10.0},
121 }};
122
123 static constexpr std::array<EGG::Vector3f, 4> VERT_SUPER_BLOOPER = {{
124 {0.0, 50.0, 0.0},
125 {0.0, 25.0, 50.0},
126 {-25.0, 25.0, -20.0},
127 {25.0, 25.0, -20.0},
128 }};
129
130 static constexpr std::array<EGG::Vector3f, 5> VERT_PIRANHA_PROWLER = {{
131 {0.0, 95.0, -10.0},
132 {35.0, -25.0, -115.0},
133 {-35.0, -25.0, -115.0},
134 {35.0, -25.0, 85.0},
135 {-35.0, -25.0, 85.0},
136 }};
137
138 static constexpr std::array<EGG::Vector3f, 5> VERT_TINY_TITAN = {{
139 {0.0, 55.0, -10.0},
140 {25.0, -10.0, -40.0},
141 {-25.0, -10.0, -40.0},
142 {-25.0, -10.0, 30.0},
143 {25.0, -10.0, 30.0},
144 }};
145
146 static constexpr std::array<EGG::Vector3f, 5> VERT_DAYTRIPPER = {{
147 {0.0, 60.0, 0.0},
148 {12.0, 5.0, -55.0},
149 {-12.0, 5.0, -55.0},
150 {8.0, 5.0, 35.0},
151 {-8.0, 5.0, 35.0},
152 }};
153
154 static constexpr std::array<EGG::Vector3f, 5> VERT_JETSETTER = {{
155 {0.0, 120.0, 30.0},
156 {25.0, 30.0, -75.0},
157 {-25.0, 30.0, -75.0},
158 {20.0, 30.0, 115.0},
159 {-20.0, 30.0, 115.0},
160 }};
161
162 static constexpr std::array<EGG::Vector3f, 3> VERT_BLUE_FALCON = {{
163 {20.0, 20.0, -30.0},
164 {-20.0, 20.0, -30.0},
165 {0.0, 20.0, 80.0},
166 }};
167
168 static constexpr std::array<EGG::Vector3f, 5> VERT_SPRINTER = {{
169 {0.0, 60.0, 0.0},
170 {25.0, 20.0, -60.0},
171 {-25.0, 20.0, -60.0},
172 {20.0, 20.0, 75.0},
173 {-20.0, 20.0, 75.0},
174 }};
175
176 static constexpr std::array<EGG::Vector3f, 7> VERT_HONEYCOUPE = {{
177 {0.0, 100.0, 50.0},
178 {60.0, 20.0, -110.0},
179 {-60.0, 20.0, -110.0},
180 {60.0, -40.0, -110.0},
181 {-60.0, -40.0, -110.0},
182 {50.0, 0.0, 130.0},
183 {-50.0, 0.0, 130.0},
184 }};
185
186 static constexpr std::array<EGG::Vector3f, 3> VERT_STANDARD_BIKE_S = {{
187 {0.0, 40.0, 0.0},
188 {0.0, 5.0, -15.0},
189 {0.0, 5.0, 20.0},
190 }};
191
192 static constexpr std::array<EGG::Vector3f, 3> VERT_STANDARD_BIKE_M = {{
193 {0.0, 75.0, 10.0},
194 {0.0, 10.0, -20.0},
195 {0.0, 10.0, 20.0},
196 }};
197
198 static constexpr std::array<EGG::Vector3f, 3> VERT_STANDARD_BIKE_L = {{
199 {0.0, 110.0, -15.0},
200 {0.0, -5.0, -35.0},
201 {0.0, -5.0, 40.0},
202 }};
203
204 static constexpr std::array<EGG::Vector3f, 3> VERT_BULLET_BIKE = {{
205 {0.0, 25.0, 10.0},
206 {0.0, -10.0, -45.0},
207 {0.0, -10.0, 50.0},
208 }};
209
210 static constexpr std::array<EGG::Vector3f, 3> VERT_MACH_BIKE = {{
211 {0.0, 50.0, 15.0},
212 {0.0, 5.0, -30.0},
213 {0.0, 5.0, 35.0},
214 }};
215
216 static constexpr std::array<EGG::Vector3f, 3> VERT_FLAME_RUNNER = {{
217 {0.0, 105.0, -10.0},
218 {0.0, -5.0, -50.0},
219 {0.0, -5.0, 45.0},
220 }};
221
222 static constexpr std::array<EGG::Vector3f, 3> VERT_BIT_BIKE = {{
223 {0.0, 40.0, -10.0},
224 {0.0, 15.0, -15.0},
225 {0.0, 15.0, 5.0},
226 }};
227
228 static constexpr std::array<EGG::Vector3f, 3> VERT_SUGARSCOOT = {{
229 {0.0, 70.0, 10.0},
230 {0.0, 10.0, -40.0},
231 {0.0, 10.0, 15.0},
232 }};
233
234 static constexpr std::array<EGG::Vector3f, 4> VERT_WARIO_BIKE = {{
235 {0.0, 110.0, 35.0},
236 {0.0, 70.0, -65.0},
237 {0.0, -10.0, -75.0},
238 {0.0, -5.0, 85.0},
239 }};
240
241 static constexpr std::array<EGG::Vector3f, 3> VERT_QUACKER = {{
242 {0.0, 40.0, 0.0},
243 {0.0, 10.0, 20.0},
244 {0.0, 10.0, -5.0},
245 }};
246
247 static constexpr std::array<EGG::Vector3f, 3> VERT_ZIP_ZIP = {{
248 {0.0, 75.0, 10.0},
249 {0.0, 10.0, -25.0},
250 {0.0, 10.0, 20.0},
251 }};
252
253 static constexpr std::array<EGG::Vector3f, 3> VERT_SHOOTING_STAR = {{
254 {0.0, 120.0, 35.0},
255 {0.0, -15.0, -45.0},
256 {0.0, -15.0, 100.0},
257 }};
258
259 static constexpr std::array<EGG::Vector3f, 3> VERT_MAGIKRUISER = {{
260 {0.0, 35.0, -20.0},
261 {0.0, 0.0, -70.0},
262 {0.0, 0.0, 20.0},
263 }};
264
265 static constexpr std::array<EGG::Vector3f, 3> VERT_SNEAKSTER = {{
266 {0.0, 50.0, 20.0},
267 {0.0, 15.0, -50.0},
268 {0.0, 15.0, 30.0},
269 }};
270
271 static constexpr std::array<EGG::Vector3f, 3> VERT_SPEAR = {{
272 {0.0, 105.0, -20.0},
273 {0.0, -15.0, -60.0},
274 {0.0, -15.0, 75.0},
275 }};
276
277 static constexpr std::array<EGG::Vector3f, 3> VERT_JET_BUBBLE = {{
278 {0.0, 35.0, 10.0},
279 {0.0, -5.0, -45.0},
280 {0.0, -5.0, 50.0},
281 }};
282
283 static constexpr std::array<EGG::Vector3f, 3> VERT_DOLPHIN_DASHER = {{
284 {0.0, 50.0, 20.0},
285 {0.0, -5.0, -35.0},
286 {0.0, -5.0, 42.0},
287 }};
288
289 static constexpr std::array<EGG::Vector3f, 4> VERT_PHANTOM = {{
290 {0.0, 120.0, 35.0},
291 {20.0, -5.0, -85.0},
292 {-20.0, -5.0, -85.0},
293 {0.0, -5.0, 100.0},
294 }};
295
296 static constexpr std::array<EGG::Vector3f, 7> VERT_DEFAULT = {{
297 {0.0, 140.0, 10.0},
298 {-60.0, 70.0, 40.0},
299 {60.0, 70.0, 40.0},
300 {0.0, -40.0, -160.0},
301 {-60.0, -40.0, 50.0},
302 {60.0, -40.0, 50.0},
303 {0.0, -40.0, 160.0},
304 }};
305
306 switch (vehicle) {
307 case Vehicle::Standard_Kart_S:
308 return VERT_STANDARD_KART_S;
309 case Vehicle::Standard_Kart_M:
310 return VERT_STANDARD_KART_M;
311 case Vehicle::Standard_Kart_L:
312 return VERT_STANDARD_KART_L;
313 case Vehicle::Baby_Booster:
314 return VERT_BOOSTER_SEAT;
315 case Vehicle::Classic_Dragster:
316 return VERT_CLASSIC_DRAGSTER;
317 case Vehicle::Offroader:
318 return VERT_OFFROADER;
319 case Vehicle::Mini_Beast:
320 return VERT_MINI_BEAST;
321 case Vehicle::Wild_Wing:
322 return VERT_WILD_WING;
323 case Vehicle::Flame_Flyer:
324 return VERT_FLAME_FLYER;
325 case Vehicle::Cheep_Charger:
326 return VERT_CHEEP_CHARGER;
327 case Vehicle::Super_Blooper:
328 return VERT_SUPER_BLOOPER;
329 case Vehicle::Piranha_Prowler:
330 return VERT_PIRANHA_PROWLER;
331 case Vehicle::Tiny_Titan:
332 return VERT_TINY_TITAN;
333 case Vehicle::Daytripper:
334 return VERT_DAYTRIPPER;
335 case Vehicle::Jetsetter:
336 return VERT_JETSETTER;
337 case Vehicle::Blue_Falcon:
338 return VERT_BLUE_FALCON;
339 case Vehicle::Sprinter:
340 return VERT_SPRINTER;
341 case Vehicle::Honeycoupe:
342 return VERT_HONEYCOUPE;
343 case Vehicle::Standard_Bike_S:
344 return VERT_STANDARD_BIKE_S;
345 case Vehicle::Standard_Bike_M:
346 return VERT_STANDARD_BIKE_M;
347 case Vehicle::Standard_Bike_L:
348 return VERT_STANDARD_BIKE_L;
349 case Vehicle::Bullet_Bike:
350 return VERT_BULLET_BIKE;
351 case Vehicle::Mach_Bike:
352 return VERT_MACH_BIKE;
353 case Vehicle::Flame_Runner:
354 return VERT_FLAME_RUNNER;
355 case Vehicle::Bit_Bike:
356 return VERT_BIT_BIKE;
357 case Vehicle::Sugarscoot:
358 return VERT_SUGARSCOOT;
359 case Vehicle::Wario_Bike:
360 return VERT_WARIO_BIKE;
361 case Vehicle::Quacker:
362 return VERT_QUACKER;
363 case Vehicle::Zip_Zip:
364 return VERT_ZIP_ZIP;
365 case Vehicle::Shooting_Star:
366 return VERT_SHOOTING_STAR;
367 case Vehicle::Magikruiser:
368 return VERT_MAGIKRUISER;
369 case Vehicle::Sneakster:
370 return VERT_SNEAKSTER;
371 case Vehicle::Spear:
372 return VERT_SPEAR;
373 case Vehicle::Jet_Bubble:
374 return VERT_JET_BUBBLE;
375 case Vehicle::Dolphin_Dasher:
376 return VERT_DOLPHIN_DASHER;
377 case Vehicle::Phantom:
378 return VERT_PHANTOM;
379 default:
380 return VERT_DEFAULT;
381 }
382}
383
384} // namespace Field
A 3 x 4 matrix.
Definition Matrix.hh:8
Pertains to collision.
A 3D float vector.
Definition Vector.hh:83
f32 normalise()
Normalizes the vector and returns the original length.
Definition Vector.cc:44