#include <KartDynamics.hh>
State management for most components of a kart's physics.
Whenever another kart class is done with their calculations, they call to this class to set the relevant variables. For example, KartMove::calcAcceleration() calculates acceleration and subsequently sets the internal velocity in this class.
Definition at line 12 of file KartDynamics.hh.
Public Member Functions | |
virtual void | forceUpright () |
virtual void | stabilize () |
Stabilizes the kart by rotating towards the y-axis unit vector. | |
void | init () |
void | resetInternalVelocity () |
void | setInertia (const EGG::Vector3f &m, const EGG::Vector3f &n) |
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. | |
void | reset () |
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. | |
void | applyWrenchScaled (const EGG::Vector3f &p, const EGG::Vector3f &f, f32 scale) |
Applies a force linearly and rotationally to the kart. | |
Setters | |
void | setPos (const EGG::Vector3f &pos) |
void | setGravity (f32 gravity) |
void | setMainRot (const EGG::Quatf &q) |
void | setFullRot (const EGG::Quatf &q) |
void | setSpecialRot (const EGG::Quatf &q) |
void | setExtraRot (const EGG::Quatf &q) |
void | setIntVel (const EGG::Vector3f &v) |
void | setTop (const EGG::Vector3f &v) |
void | setStabilizationFactor (f32 val) |
void | setTotalForce (const EGG::Vector3f &v) |
void | setExtVel (const EGG::Vector3f &v) |
void | setAngVel0 (const EGG::Vector3f &v) |
void | setAngVel2 (const EGG::Vector3f &v) |
void | setAngVel0YFactor (f32 val) |
void | setTop_ (const EGG::Vector3f &v) |
void | setForceUpright (bool isSet) |
void | setNoGravity (bool isSet) |
void | setKillExtVelY (bool isSet) |
Getters | |
const EGG::Matrix34f & | invInertiaTensor () const |
f32 | angVel0Factor () const |
const EGG::Vector3f & | pos () const |
const EGG::Vector3f & | velocity () const |
f32 | gravity () const |
const EGG::Vector3f & | intVel () const |
const EGG::Quatf & | mainRot () const |
const EGG::Quatf & | fullRot () const |
const EGG::Vector3f & | totalForce () const |
const EGG::Vector3f & | extVel () const |
const EGG::Vector3f & | angVel0 () const |
const EGG::Vector3f & | angVel2 () const |
f32 | speedFix () const |
Protected Attributes | |
EGG::Matrix34f | m_inertiaTensor |
Resistance to rotational change, as a 3x3 matrix. | |
EGG::Matrix34f | m_invInertiaTensor |
The inverse of m_inertiaTensor. | |
f32 | m_angVel0Factor |
Scalar for damping angular velocity. | |
EGG::Vector3f | m_pos |
The vehicle's position. | |
EGG::Vector3f | m_extVel |
Velocity induced by collisions. | |
EGG::Vector3f | m_acceleration |
Basically just m_totalForce. | |
EGG::Vector3f | m_angVel0 |
Angular velocity from m_totalTorque. | |
EGG::Vector3f | m_movingObjVel |
Velocity from things like TF conveyers. | |
EGG::Vector3f | m_angVel1 |
[Unused] | |
EGG::Vector3f | m_movingRoadVel |
Velocity from Koopa Cape water. | |
EGG::Vector3f | m_velocity |
Sum of the linear velocities. | |
f32 | m_speedNorm |
Min of the max speed and m_velocity magnitude. | |
EGG::Vector3f | m_angVel2 |
The main component of angular velocity. | |
EGG::Quatf | m_mainRot |
Rotation based on the angular velocities. | |
EGG::Quatf | m_fullRot |
The combination of the other rotations. | |
EGG::Vector3f | m_totalForce |
Basically just gravity. | |
EGG::Vector3f | m_totalTorque |
Torque from linear motion and rotation. | |
EGG::Quatf | m_specialRot |
Rotation from trick animations. Copied from KartPhysics. | |
EGG::Quatf | m_extraRot |
[Unused] | |
f32 | m_gravity |
Always -1.0f. | |
EGG::Vector3f | m_intVel |
What you typically consider to be the vehicle's speed. | |
EGG::Vector3f | m_top |
The unit vector pointing up from the vehicle. | |
f32 | m_stabilizationFactor |
Scalar for damping the main rotation. | |
f32 | m_speedFix |
EGG::Vector3f | m_top_ |
Basically m_top biased towards absolute up. | |
f32 | m_angVel0YFactor |
Scalar for damping angular velocity. | |
bool | m_forceUpright |
Specifies if we should return the vehicle to upwards orientation. | |
bool | m_noGravity |
Disables gravity. Relevant when respawning. | |
bool | m_killExtVelY |
Caps external velocity at 0. | |
|
0x805B4AF8 |
Definition at line 8 of file KartDynamics.cc.
|
inlinenodiscard |
Definition at line 152 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 116 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 156 of file KartDynamics.hh.
|
0x805B6150 |
Every frame, computes torque from linear motion and rotation.
p | Position of the rigid body. |
Flinear | Linear motion force |
Frot | Rotational force |
ignoreX | If true, no x-axis torque is applied (e.g. when in a wheelie) |
Definition at line 201 of file KartDynamics.cc.
|
0x805B5CE8 |
Applies a force linearly and rotationally to the kart.
Definition at line 218 of file KartDynamics.cc.
|
0x805B5170 |
Every frame, computes acceleration, velocity, position and rotation of the kart.
dt | Delta time. It's always 1.0f. |
maxSpeed | Always 120.0f. |
Definition at line 90 of file KartDynamics.cc.
|
inlinenodiscard |
Definition at line 148 of file KartDynamics.hh.
|
inlinevirtual |
Definition at line 17 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 140 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 128 of file KartDynamics.hh.
|
0x805B4B54 |
Definition at line 32 of file KartDynamics.cc.
|
inlinenodiscard |
Definition at line 132 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 112 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 136 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 120 of file KartDynamics.hh.
|
0x805B4D24 |
Definition at line 181 of file KartDynamics.cc.
|
inline |
Definition at line 22 of file KartDynamics.hh.
|
inline |
Definition at line 82 of file KartDynamics.hh.
|
inline |
Definition at line 90 of file KartDynamics.hh.
|
inline |
Definition at line 86 of file KartDynamics.hh.
|
0x805B4DC4 |
On init, takes elements from the kart's BSP and computes the moment of inertia tensor.
Definition at line 74 of file KartDynamics.cc.
|
inline |
Definition at line 58 of file KartDynamics.hh.
|
inline |
Definition at line 78 of file KartDynamics.hh.
|
inline |
Definition at line 98 of file KartDynamics.hh.
|
inline |
Definition at line 50 of file KartDynamics.hh.
|
inline |
Definition at line 42 of file KartDynamics.hh.
|
0x805B4E84 |
Definition at line 62 of file KartDynamics.cc.
|
inline |
Definition at line 62 of file KartDynamics.hh.
|
inline |
Definition at line 106 of file KartDynamics.hh.
|
inline |
Definition at line 46 of file KartDynamics.hh.
|
inline |
Definition at line 102 of file KartDynamics.hh.
|
inline |
Definition at line 38 of file KartDynamics.hh.
|
inline |
Definition at line 54 of file KartDynamics.hh.
|
inline |
Definition at line 70 of file KartDynamics.hh.
|
inline |
Definition at line 66 of file KartDynamics.hh.
|
inline |
Definition at line 94 of file KartDynamics.hh.
|
inline |
Definition at line 74 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 160 of file KartDynamics.hh.
|
virtual0x805B5B68 |
Stabilizes the kart by rotating towards the y-axis unit vector.
Reimplemented in Kart::KartDynamicsBike.
Definition at line 20 of file KartDynamics.cc.
|
inlinenodiscard |
Definition at line 144 of file KartDynamics.hh.
|
inlinenodiscard |
Definition at line 124 of file KartDynamics.hh.
|
protected |
Basically just m_totalForce.
Definition at line 171 of file KartDynamics.hh.
|
protected |
Angular velocity from m_totalTorque.
Definition at line 172 of file KartDynamics.hh.
|
protected |
Scalar for damping angular velocity.
Definition at line 168 of file KartDynamics.hh.
|
protected |
Scalar for damping angular velocity.
Definition at line 192 of file KartDynamics.hh.
|
protected |
[Unused]
Definition at line 174 of file KartDynamics.hh.
|
protected |
The main component of angular velocity.
Definition at line 178 of file KartDynamics.hh.
|
protected |
[Unused]
Definition at line 184 of file KartDynamics.hh.
|
protected |
Velocity induced by collisions.
Definition at line 170 of file KartDynamics.hh.
|
protected |
Specifies if we should return the vehicle to upwards orientation.
Definition at line 193 of file KartDynamics.hh.
|
protected |
The combination of the other rotations.
Definition at line 180 of file KartDynamics.hh.
|
protected |
Always -1.0f.
Definition at line 185 of file KartDynamics.hh.
|
protected |
Resistance to rotational change, as a 3x3 matrix.
Definition at line 166 of file KartDynamics.hh.
|
protected |
What you typically consider to be the vehicle's speed.
Definition at line 186 of file KartDynamics.hh.
|
protected |
The inverse of m_inertiaTensor.
Definition at line 167 of file KartDynamics.hh.
|
protected |
Caps external velocity at 0.
Definition at line 195 of file KartDynamics.hh.
|
protected |
Rotation based on the angular velocities.
Definition at line 179 of file KartDynamics.hh.
|
protected |
Velocity from things like TF conveyers.
Definition at line 173 of file KartDynamics.hh.
|
protected |
Velocity from Koopa Cape water.
Definition at line 175 of file KartDynamics.hh.
|
protected |
Disables gravity. Relevant when respawning.
Definition at line 194 of file KartDynamics.hh.
|
protected |
The vehicle's position.
Definition at line 169 of file KartDynamics.hh.
|
protected |
Rotation from trick animations. Copied from KartPhysics.
Definition at line 183 of file KartDynamics.hh.
|
protected |
Definition at line 189 of file KartDynamics.hh.
|
protected |
Min of the max speed and m_velocity magnitude.
Definition at line 177 of file KartDynamics.hh.
|
protected |
Scalar for damping the main rotation.
Definition at line 188 of file KartDynamics.hh.
|
protected |
The unit vector pointing up from the vehicle.
Definition at line 187 of file KartDynamics.hh.
|
protected |
Basically m_top biased towards absolute up.
Definition at line 190 of file KartDynamics.hh.
|
protected |
Basically just gravity.
Definition at line 181 of file KartDynamics.hh.
|
protected |
Torque from linear motion and rotation.
Definition at line 182 of file KartDynamics.hh.
|
protected |
Sum of the linear velocities.
Definition at line 176 of file KartDynamics.hh.