1#include "KartDynamics.hh"
3#include <egg/math/Math.hh>
8KartDynamics::KartDynamics() {
16KartDynamics::~KartDynamics() =
default;
22 if (EGG::Mathf::abs(top.
dot(
m_top)) >= 0.9999f) {
32void KartDynamics::init() {
33 m_pos = EGG::Vector3f::zero;
51 m_top = EGG::Vector3f::ey;
56 m_top_ = EGG::Vector3f::ey;
63 constexpr f32 TWELFTH = 1.0f / 12.0f;
66 m_inertiaTensor[0, 0] = (m.y * m.y + m.z * m.z) * TWELFTH + n.y * n.y + n.z * n.z;
67 m_inertiaTensor[1, 1] = (m.z * m.z + m.x * m.x) * TWELFTH + n.z * n.z + n.x * n.x;
68 m_inertiaTensor[2, 2] = (m.x * m.x + m.y * m.y) * TWELFTH + n.x * n.x + n.y * n.y;
91 constexpr f32 TERMINAL_Y_VEL = 120.0f;
109 playerBackHoriz.y = 0.0f;
111 if (std::numeric_limits<f32>::epsilon() < playerBackHoriz.
squaredLength()) {
113 const auto [proj, rej] =
m_extVel.projAndRej(playerBackHoriz);
118 if (std::numeric_limits<f32>::epsilon() < norm) {
119 norm = EGG::Mathf::sqrt(norm);
124 m_speedFix = norm * playerBack.
dot(playerBackHoriz);
125 if (speedBack.
dot(playerBackHoriz) < 0.0f) {
126 m_speedFix = -m_speedFix;
152 if (std::numeric_limits<f32>::epsilon() < angVelSum.
squaredLength()) {
155 if (EGG::Mathf::abs(
m_mainRot.norm()) < std::numeric_limits<f32>::epsilon()) {
166 if (EGG::Mathf::abs(
m_mainRot.norm()) < std::numeric_limits<f32>::epsilon()) {
181void KartDynamics::reset() {
228KartDynamicsBike::KartDynamicsBike() =
default;
231KartDynamicsBike::~KartDynamicsBike() =
default;
234void KartDynamicsBike::forceUpright() {
248 if (EGG::Mathf::abs(top.
dot(local_4c)) >= 0.9999f) {
Vector3f multVector33(const Vector3f &vec) const
Multiplies a 3x3 matrix by a vector.
void inverseTo33(Matrix34f &out) const
Inverts the 3x3 portion of the 3x4 matrix.
void stabilize() override
Stabilizes the bike by rotating towards the y-axis unit vector.
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.
void normalise()
Scales the quaternion to a unit length.
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
Quatf slerpTo(const Quatf &q2, f32 t) const
Performs spherical linear interpolation.
Vector3f rotateVectorInv(const Vector3f &vec) const
Rotates a vector on the inverse quat.
void makeVectorRotation(const Vector3f &from, const Vector3f &to)
Captures rotation between two vectors.
f32 normalise()
Normalizes the vector and returns the original length.
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
f32 squaredLength() const
The dot product between the vector and itself.