3#include "game/kart/CollisionGroup.hh"
4#include "game/kart/KartDynamics.hh"
5#include "game/kart/KartParam.hh"
7#include <egg/math/Matrix.hh>
32 void set_fc(f32 val) {
38 m_instantaneousStuntRot *= rot;
43 m_instantaneousExtraRot *= rot;
47 void composeDecayingStuntRot(
const EGG::Quatf &rot) {
48 m_decayingStuntRot *= rot;
52 void composeDecayingExtraRot(
const EGG::Quatf &rot) {
57 void clearDecayingRot() {
58 m_decayingStuntRot = EGG::Quatf::ident;
96 [[nodiscard]] f32 fc()
const {
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.
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.