1#include "KartPhysics.hh"
3#include <egg/math/Quat.hh>
8KartPhysics::KartPhysics(
bool isBike) {
9 m_pose = EGG::Matrix34f::ident;
10 m_dynamics = isBike ?
new KartDynamicsBike :
new KartDynamics;
11 m_hitboxGroup =
new CollisionGroup;
16KartPhysics::~KartPhysics() {
22void KartPhysics::reset() {
24 m_hitboxGroup->reset();
25 m_decayingStuntRot = EGG::Quatf::ident;
26 m_instantaneousStuntRot = EGG::Quatf::ident;
27 m_specialRot = EGG::Quatf::ident;
29 m_instantaneousExtraRot = EGG::Quatf::ident;
30 m_extraRot = EGG::Quatf::ident;
31 m_pose = EGG::Matrix34f::ident;
35 m_pos = m_dynamics->pos();
54 m_specialRot = m_instantaneousStuntRot * m_decayingStuntRot;
57 m_dynamics->setSpecialRot(m_specialRot);
58 m_dynamics->setExtraRot(m_extraRot);
60 m_dynamics->
calc(dt, maxSpeed, air);
62 m_decayingStuntRot = m_decayingStuntRot.slerpTo(EGG::Quatf::ident, 0.1f);
65 m_instantaneousStuntRot = EGG::Quatf::ident;
66 m_instantaneousExtraRot = EGG::Quatf::ident;
73 const BSP &bsp = param.bsp();
void makeQT(const Quatf &q, const Vector3f &t)
Sets matrix from rotation and position.
f32 initHitboxes(const std::array< BSP::Hitbox, 16 > &hitboxes)
Initializes the hitbox array based on the KartParam's BSP hitboxes.
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.
void calc(f32 dt, f32 maxSpeed, bool air)
Every frame, computes acceleration, velocity, position and rotation of the kart.
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.
Quatf slerpTo(const Quatf &q2, f32 t) const
Performs spherical linear interpolation.
Houses hitbox and wheel positions, radii, and suspension info.
std::array< Hitbox, 16 > hitboxes
Array of vehicle hitboxes, not all of which are active.
EGG::Vector3f cuboids[2]
Mask cuboids for computing moment of inertia.