3#include "game/system/KPadController.hh"
5#include <egg/math/Matrix.hh>
13class ObjectCollisionKart;
40class KartSuspensionPhysics;
56 std::vector<KartSuspension *> suspensions;
57 std::vector<KartTire *> tires;
79 [[nodiscard]]
const KartAction *action()
const;
81 [[nodiscard]]
const KartBody *body()
const;
87 [[nodiscard]]
const KartMove *move()
const;
91 [[nodiscard]]
const KartJump *jump()
const;
93 [[nodiscard]]
const KartParam *param()
const;
94 [[nodiscard]]
const BSP &bsp()
const;
100 [[nodiscard]]
const KartState *state()
const;
102 [[nodiscard]]
const KartSub *sub()
const;
108 [[nodiscard]]
const KartTire *tire(
u16 tireIdx)
const;
135 [[nodiscard]]
const EGG::Quatf &fullRot()
const;
139 [[nodiscard]] f32 speed()
const;
140 [[nodiscard]] f32 acceleration()
const;
141 [[nodiscard]] f32 softSpeedLimit()
const;
142 [[nodiscard]]
const EGG::Quatf &mainRot()
const;
144 [[nodiscard]]
bool isBike()
const;
145 [[nodiscard]]
u16 suspCount()
const;
146 [[nodiscard]]
u16 tireCount()
const;
147 [[nodiscard]]
bool hasFloorCollision(
const WheelPhysics *wheelPhysics)
const;
148 [[nodiscard]] std::pair<EGG::Vector3f, EGG::Vector3f> getCannonPosRot();
149 [[nodiscard]] f32 speedRatio()
const;
150 [[nodiscard]] f32 speedRatioCapped()
const;
151 [[nodiscard]]
bool isInRespawn()
const;
153 [[nodiscard]]
static std::list<KartObjectProxy *> &proxyList() {
159 void apply(
size_t idx);
Relates a KartObject with its convex hull representation.
Houses hitbox and collision info for an object (body or wheel).
Manages body+wheel collision and its influence on position/velocity/etc.
State management for most components of a kart's physics.
Handles the physics and boosts associated with zippers.
Manages trick inputs and state.
Responsible for reacting to player inputs and moving the kart.
Base class for most kart-related objects.
EGG::Vector3f bodyUp() const
Returns the second column of the rotation matrix, which is the "up" direction.
static void ApplyAll(const KartAccessor *pointers)
For all proxies in the static list, synchronizes all pointers to the KartAccessor.
EGG::Vector3f bodyForward() const
Returns the first column of the rotation matrix, which is the "right" direction.
static std::list< KartObjectProxy * > s_proxyList
List of all KartObjectProxy children.
EGG::Vector3f bodyFront() const
Returns the third column of the rotation matrix, which is the facing vector.
The highest level abstraction for a kart.
Houses stats regarding a given character/vehicle combo.
Manages the lifecycle of KartDynamics, handles moving floors and trick rotation.
Houses various flags and other variables to preserve the kart's state.
Hosts a few classes and the high level per-frame calc functions.
Physics for a single wheel's suspension.
Doesn't do much besides hold a pointer to KartSuspensionPhysics.
A holder for a wheel's physics data.
Manages wheel physics and collision checks.
Included in Kinoko because it mysteriously sets an angle member variable in KartBody.
Pertains to kart-related functionality.
Pertains to rendering the kart model.
A quaternion, used to represent 3D rotation.
A representation of the boundaries of an entity that has dynamic collision.
Houses hitbox and wheel positions, radii, and suspension info.
Information about the current collision and its properties.
Shared between classes who inherit KartObjectProxy so they can access one another.