A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartSuspensionPhysics.hh
1#pragma once
2
3#include "game/kart/CollisionGroup.hh"
4#include "game/kart/KartObjectProxy.hh"
5#include "game/kart/KartParam.hh"
6
7#include <egg/math/Matrix.hh>
8
9namespace Kart {
10
14public:
15 WheelPhysics(u16 wheelIdx, u16 bspWheelIdx);
17
18 void init();
19 void initBsp();
20 void reset();
21
22 void realign(const EGG::Vector3f &bottom, const EGG::Vector3f &vehicleMovement);
23
24 void updateCollision(const EGG::Vector3f &bottom, const EGG::Vector3f &topmostPos);
25
27 void setSuspTravel(f32 suspTravel) {
28 m_suspTravel = suspTravel;
29 }
30
31 void setPos(const EGG::Vector3f &pos) {
32 m_pos = pos;
33 }
34
35 void setLastPos(const EGG::Vector3f &pos) {
36 m_lastPos = pos;
37 }
38
39 void setLastPosDiff(const EGG::Vector3f &pos) {
40 m_lastPosDiff = pos;
41 }
42
43 void setWheelEdgePos(const EGG::Vector3f &pos) {
44 m_wheelEdgePos = pos;
45 }
46
47 void setColVel(const EGG::Vector3f &vec) {
48 m_colVel = vec;
49 }
51
53 [[nodiscard]] const EGG::Vector3f &pos() const {
54 return m_pos;
55 }
56
57 [[nodiscard]] const EGG::Vector3f &lastPosDiff() const {
58 return m_lastPosDiff;
59 }
60
61 [[nodiscard]] f32 suspTravel() {
62 return m_suspTravel;
63 }
64
65 [[nodiscard]] const EGG::Vector3f &topmostPos() const {
66 return m_topmostPos;
67 }
68
69 [[nodiscard]] CollisionGroup *hitboxGroup() {
70 return m_hitboxGroup;
71 }
72
73 [[nodiscard]] const CollisionGroup *hitboxGroup() const {
74 return m_hitboxGroup;
75 }
76
77 [[nodiscard]] const EGG::Vector3f &speed() const {
78 return m_speed;
79 }
80
81 [[nodiscard]] f32 effectiveRadius() const {
82 return m_effectiveRadius;
83 }
84
85 [[nodiscard]] f32 _74() const {
86 return m_74;
87 }
89
90private:
91 u16 m_wheelIdx;
92 u16 m_bspWheelIdx;
93 const BSP::Wheel *m_bspWheel;
94 CollisionGroup *m_hitboxGroup;
95 EGG::Vector3f m_pos;
96 EGG::Vector3f m_lastPos;
97 EGG::Vector3f m_lastPosDiff;
98 f32 m_suspTravel;
99 EGG::Vector3f m_colVel;
100 EGG::Vector3f m_speed;
101 EGG::Vector3f m_wheelEdgePos;
102 f32 m_effectiveRadius;
103 f32 m_targetEffectiveRadius;
104 f32 m_74;
105 EGG::Vector3f m_topmostPos;
106};
107
110public:
112 enum class TireType {
113 Kart,
114 KartReflected,
115 Bike,
116 };
117
118 KartSuspensionPhysics(u16 wheelIdx, TireType TireType, u16 bspWheelIdx);
120
121 void init();
122 void reset();
123
124 void setInitialState();
125
126 void calcCollision(f32 dt, const EGG::Vector3f &gravity, const EGG::Matrix34f &mat);
127 void calcSuspension(const EGG::Vector3f &forward, const EGG::Vector3f &vehicleMovement);
128
129private:
130 const BSP::Wheel *m_bspWheel;
131 WheelPhysics *m_tirePhysics;
132 TireType m_tireType;
133 u16 m_bspWheelIdx;
134 u16 m_wheelIdx;
135 EGG::Vector3f m_topmostPos;
136 f32 m_maxTravelScaled;
137 EGG::Vector3f m_bottomDir;
138};
139
140} // namespace Kart
A 3 x 4 matrix.
Definition Matrix.hh:8
Houses hitbox and collision info for an object (body or wheel).
Base class for most kart-related objects.
Physics for a single wheel's suspension.
TireType
Every other kart tire is a mirror of the first. Bikes do not leverage this.
void calcSuspension(const EGG::Vector3f &forward, const EGG::Vector3f &vehicleMovement)
Calculates linear force and rotation from the kart's suspension.
Manages wheel physics and collision checks.
Pertains to kart-related functionality.
A 3D float vector.
Definition Vector.hh:83
Info pertaining to the suspension, position, etc. of a wheel.
Definition KartParam.hh:20