A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartPhysics.hh
1#pragma once
2
3#include "game/kart/CollisionGroup.hh"
4#include "game/kart/KartDynamics.hh"
5#include "game/kart/KartParam.hh"
6
7#include <egg/math/Matrix.hh>
8
9namespace Kart {
10
14public:
15 KartPhysics(bool isBike);
17
18 void reset();
19 void updatePose();
20
21 void calc(f32 dt, f32 maxSpeed, const EGG::Vector3f &scale, bool air);
22
24 void setPos(const EGG::Vector3f &pos) {
25 m_pos = pos;
26 }
27
28 void setVelocity(const EGG::Vector3f &vel) {
29 m_velocity = vel;
30 }
31
32 void set_fc(f32 val) {
33 m_fc = val;
34 }
35
37 void composeStuntRot(const EGG::Quatf &rot) {
38 m_instantaneousStuntRot *= rot;
39 }
40
42 void composeExtraRot(const EGG::Quatf &rot) {
43 m_instantaneousExtraRot *= rot;
44 }
45
47 void composeDecayingStuntRot(const EGG::Quatf &rot) {
48 m_decayingStuntRot *= rot;
49 }
50
52 void composeDecayingExtraRot(const EGG::Quatf &rot) {
53 m_decayingExtraRot *= rot;
54 }
55
57 void clearDecayingRot() {
58 m_decayingStuntRot = EGG::Quatf::ident;
59 m_decayingExtraRot = EGG::Quatf::ident;
60 }
62
64 [[nodiscard]] KartDynamics *dynamics() {
65 return m_dynamics;
66 }
67
68 [[nodiscard]] const KartDynamics *dynamics() const {
69 return m_dynamics;
70 }
71
72 [[nodiscard]] const EGG::Matrix34f &pose() const {
73 return m_pose;
74 }
75
76 [[nodiscard]] CollisionGroup *hitboxGroup() {
77 return m_hitboxGroup;
78 }
79
80 [[nodiscard]] const EGG::Vector3f &xAxis() const {
81 return m_xAxis;
82 }
83
84 [[nodiscard]] const EGG::Vector3f &yAxis() const {
85 return m_yAxis;
86 }
87
88 [[nodiscard]] const EGG::Vector3f &zAxis() const {
89 return m_zAxis;
90 }
91
92 [[nodiscard]] const EGG::Vector3f &pos() const {
93 return m_pos;
94 }
95
96 [[nodiscard]] f32 fc() const {
97 return m_fc;
98 }
100
101 [[nodiscard]] static KartPhysics *Create(const KartParam &param);
102
103private:
104 KartDynamics *m_dynamics;
105 CollisionGroup *m_hitboxGroup;
106 EGG::Vector3f m_pos;
107 EGG::Quatf m_decayingStuntRot;
108 EGG::Quatf m_instantaneousStuntRot;
109 EGG::Quatf m_specialRot;
112 EGG::Quatf m_instantaneousExtraRot;
113 EGG::Quatf m_extraRot;
119 f32 m_fc;
120};
121
122} // namespace Kart
A 3 x 4 matrix.
Definition Matrix.hh:8
Houses hitbox and collision info for an object (body or wheel).
State management for most components of a kart's physics.
Houses stats regarding a given character/vehicle combo.
Definition KartParam.hh:51
Manages the lifecycle of KartDynamics, handles moving floors and trick rotation.
void updatePose()
Constructs a transformation matrix from rotation and position.
void calc(f32 dt, f32 maxSpeed, const EGG::Vector3f &scale, bool air)
Computes trick rotation and calls to KartDynamics::calc().
EGG::Quatf m_decayingExtraRot
Rotation that occurs when landing from a trick.
EGG::Vector3f m_zAxis
The third column of the pose.
EGG::Vector3f m_xAxis
The first column of the pose.
EGG::Vector3f m_velocity
Copied from KartDynamics.
EGG::Vector3f m_yAxis
The second column of the pose.
EGG::Matrix34f m_pose
The kart's current rotation and position.
Pertains to kart-related functionality.
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
A 3D float vector.
Definition Vector.hh:83