A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectCollisionKart.hh
1#pragma once
2
3#include "game/field/ObjectCollisionConvexHull.hh"
4
5namespace Kart {
6
7class KartObject;
8
9} // namespace Kart
10
11namespace Field {
12
15public:
18
19 void init(u32 idx);
20
21 size_t checkCollision(const EGG::Matrix34f &mat, const EGG::Vector3f &v);
22
23 static EGG::Vector3f GetHitDirection(u16 objKartHit);
24 static constexpr std::span<const EGG::Vector3f> GetVehicleVertices(Vehicle vehicle);
25
26private:
28 Kart::KartObject *m_kartObject;
29 u32 m_playerIdx;
30};
31
32} // namespace Field
A 3 x 4 matrix.
Definition Matrix.hh:8
Smallest convex shape that encloses a given set of points.
Relates a KartObject with its convex hull representation.
static constexpr std::span< const EGG::Vector3f > GetVehicleVertices(Vehicle vehicle)
Helper function to map between a vehicle and its set of convex hull vertices.
The highest level abstraction for a kart.
Definition KartObject.hh:11
Pertains to collision.
Pertains to kart-related functionality.
A 3D float vector.
Definition Vector.hh:83