A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartDynamics.hh
1#pragma once
2
3#include <egg/math/Matrix.hh>
4
5namespace Kart {
6
13public:
15 virtual ~KartDynamics();
16
17 virtual void forceUpright() {}
18 virtual void stabilize();
19
20 void init();
21
22 void resetInternalVelocity() {
23 m_intVel.setZero();
24 }
25
26 void setInertia(const EGG::Vector3f &m, const EGG::Vector3f &n);
27 void setBspParams(f32 rotSpeed, const EGG::Vector3f &m, const EGG::Vector3f &n,
28 bool skipInertia);
29
30 void calc(f32 dt, f32 maxSpeed, bool air);
31 void reset();
32
33 void applySuspensionWrench(const EGG::Vector3f &p, const EGG::Vector3f &Flinear,
34 const EGG::Vector3f &Frot, bool ignoreX);
35 void applyWrenchScaled(const EGG::Vector3f &p, const EGG::Vector3f &f, f32 scale);
36
38 void setPos(const EGG::Vector3f &pos) {
39 m_pos = pos;
40 }
41
42 void setGravity(f32 gravity) {
43 m_gravity = gravity;
44 }
45
46 void setMainRot(const EGG::Quatf &q) {
47 m_mainRot = q;
48 }
49
50 void setFullRot(const EGG::Quatf &q) {
51 m_fullRot = q;
52 }
53
54 void setSpecialRot(const EGG::Quatf &q) {
55 m_specialRot = q;
56 }
57
58 void setExtraRot(const EGG::Quatf &q) {
59 m_extraRot = q;
60 }
61
62 void setIntVel(const EGG::Vector3f &v) {
63 m_intVel = v;
64 }
65
66 void setTop(const EGG::Vector3f &v) {
67 m_top = v;
68 }
69
70 void setStabilizationFactor(f32 val) {
72 }
73
74 void setTotalForce(const EGG::Vector3f &v) {
75 m_totalForce = v;
76 }
77
78 void setExtVel(const EGG::Vector3f &v) {
79 m_extVel = v;
80 }
81
82 void setAngVel0(const EGG::Vector3f &v) {
83 m_angVel0 = v;
84 }
85
86 void setAngVel2(const EGG::Vector3f &v) {
87 m_angVel2 = v;
88 }
89
90 void setAngVel0YFactor(f32 val) {
91 m_angVel0YFactor = val;
92 }
93
94 void setTop_(const EGG::Vector3f &v) {
95 m_top_ = v;
96 }
97
98 void setForceUpright(bool isSet) {
99 m_forceUpright = isSet;
100 }
101
102 void setNoGravity(bool isSet) {
103 m_noGravity = isSet;
104 }
105
106 void setKillExtVelY(bool isSet) {
107 m_killExtVelY = isSet;
108 }
110
112 [[nodiscard]] const EGG::Matrix34f &invInertiaTensor() const {
113 return m_invInertiaTensor;
114 }
115
116 [[nodiscard]] f32 angVel0Factor() const {
117 return m_angVel0Factor;
118 }
119
120 [[nodiscard]] const EGG::Vector3f &pos() const {
121 return m_pos;
122 }
123
124 [[nodiscard]] const EGG::Vector3f &velocity() const {
125 return m_velocity;
126 }
127
128 [[nodiscard]] f32 gravity() const {
129 return m_gravity;
130 }
131
132 [[nodiscard]] const EGG::Vector3f &intVel() const {
133 return m_intVel;
134 }
135
136 [[nodiscard]] const EGG::Quatf &mainRot() const {
137 return m_mainRot;
138 }
139
140 [[nodiscard]] const EGG::Quatf &fullRot() const {
141 return m_fullRot;
142 }
143
144 [[nodiscard]] const EGG::Vector3f &totalForce() const {
145 return m_totalForce;
146 }
147
148 [[nodiscard]] const EGG::Vector3f &extVel() const {
149 return m_extVel;
150 }
151
152 [[nodiscard]] const EGG::Vector3f &angVel0() const {
153 return m_angVel0;
154 }
155
156 [[nodiscard]] const EGG::Vector3f &angVel2() const {
157 return m_angVel2;
158 }
159
160 [[nodiscard]] f32 speedFix() const {
161 return m_speedFix;
162 }
164
165protected:
189 f32 m_speedFix;
191
196};
197
202public:
205
206private:
207 void forceUpright() override;
208 void stabilize() override;
209};
210
211} // namespace Kart
A 3 x 4 matrix.
Definition Matrix.hh:8
State management for most components of a bike's physics.
void stabilize() override
Stabilizes the bike by rotating towards the y-axis unit vector.
State management for most components of a kart's physics.
EGG::Quatf m_specialRot
Rotation from trick animations. Copied from KartPhysics.
EGG::Vector3f m_movingRoadVel
Velocity from Koopa Cape water.
f32 m_speedNorm
Min of the max speed and m_velocity magnitude.
bool m_killExtVelY
Caps external velocity at 0.
EGG::Vector3f m_angVel1
[Unused]
void setBspParams(f32 rotSpeed, const EGG::Vector3f &m, const EGG::Vector3f &n, bool skipInertia)
On init, takes elements from the kart's BSP and computes the moment of inertia tensor.
f32 m_angVel0YFactor
Scalar for damping angular velocity.
EGG::Quatf m_fullRot
The combination of the other rotations.
EGG::Vector3f m_velocity
Sum of the linear velocities.
EGG::Vector3f m_top_
Basically m_top biased towards absolute up.
EGG::Vector3f m_totalTorque
Torque from linear motion and rotation.
EGG::Matrix34f m_invInertiaTensor
The inverse of m_inertiaTensor.
void applySuspensionWrench(const EGG::Vector3f &p, const EGG::Vector3f &Flinear, const EGG::Vector3f &Frot, bool ignoreX)
Every frame, computes torque from linear motion and rotation.
EGG::Vector3f m_top
The unit vector pointing up from the vehicle.
EGG::Vector3f m_intVel
What you typically consider to be the vehicle's speed.
EGG::Vector3f m_acceleration
Basically just m_totalForce.
EGG::Quatf m_extraRot
[Unused]
void applyWrenchScaled(const EGG::Vector3f &p, const EGG::Vector3f &f, f32 scale)
Applies a force linearly and rotationally to the kart.
EGG::Vector3f m_totalForce
Basically just gravity.
bool m_noGravity
Disables gravity. Relevant when respawning.
EGG::Matrix34f m_inertiaTensor
Resistance to rotational change, as a 3x3 matrix.
EGG::Vector3f m_angVel0
Angular velocity from m_totalTorque.
EGG::Vector3f m_pos
The vehicle's position.
EGG::Vector3f m_angVel2
The main component of angular velocity.
f32 m_stabilizationFactor
Scalar for damping the main rotation.
EGG::Vector3f m_movingObjVel
Velocity from things like TF conveyers.
EGG::Vector3f m_extVel
Velocity induced by collisions.
bool m_forceUpright
Specifies if we should return the vehicle to upwards orientation.
EGG::Quatf m_mainRot
Rotation based on the angular velocities.
virtual void stabilize()
Stabilizes the kart by rotating towards the y-axis unit vector.
void calc(f32 dt, f32 maxSpeed, bool air)
Every frame, computes acceleration, velocity, position and rotation of the kart.
f32 m_angVel0Factor
Scalar for damping angular velocity.
f32 m_gravity
Always -1.0f.
Pertains to kart-related functionality.
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
A 3D float vector.
Definition Vector.hh:83