3#include <egg/math/Vector.hh>
17 STATIC_ASSERT(
sizeof(
Hitbox) == 0x18);
31 STATIC_ASSERT(
sizeof(
Wheel) == 0x2c);
43 std::array<Wheel, 4> wheels;
47STATIC_ASSERT(
sizeof(
BSP) == 0x25c);
64 STATIC_ASSERT(
sizeof(
BikeDisp) == 0xB0);
78 Outside_Drift_Kart = 0,
79 Outside_Drift_Bike = 1,
80 Inside_Drift_Bike = 2,
91 WeightClass weightClass;
95 f32 bumpDeviationLevel;
99 std::array<f32, 4> accelerationStandardA;
100 std::array<f32, 3> accelerationStandardT;
101 std::array<f32, 2> accelerationDriftA;
102 std::array<f32, 1> accelerationDriftT;
109 f32 driftOutsideTargetAngle;
110 f32 driftOutsideDecrement;
118 f32 maxNormalAcceleration;
122 STATIC_ASSERT(
sizeof(
Stats) == 0x18c);
124 KartParam(Character character, Vehicle vehicle, u8 playerIdx);
128 void setTireCount(
u16 tireCount) {
129 m_tireCount = tireCount;
132 void setSuspCount(u16 suspCount) {
133 m_suspCount = suspCount;
138 [[nodiscard]]
const BSP &bsp()
const {
142 [[nodiscard]]
const Stats &stats()
const {
146 [[nodiscard]]
const BikeDisp &bikeDisp()
const {
150 [[nodiscard]] u8 playerIdx()
const {
154 [[nodiscard]]
bool isBike()
const {
158 [[nodiscard]]
bool isVehicleRelativeBike()
const {
162 [[nodiscard]]
u16 suspCount()
const {
166 [[nodiscard]]
u16 tireCount()
const {
172 void initStats(Character character, Vehicle vehicle);
173 void initBikeDispParams(Vehicle vehicle);
174 void initHitboxes(Vehicle vehicle);
A stream of data stored in memory.
Houses stats regarding a given character/vehicle combo.
Pertains to kart-related functionality.
Represents one of the many hitboxes that make up a vehicle.
u16 enable
Specifies if this is an active hitbox (since BSP always has 16).
EGG::Vector3f position
The relative position of the hitbox.
Info pertaining to the suspension, position, etc. of a wheel.
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.
f32 rumbleHeight
Max vertical distance of the vehicle body's rumble animation.
u16 rumbleSpeed
Speed of the vehicle body's rumble animation.
Various character/vehicle-related handling and speed stats.
f32 handlingManualTightness
Affects turn radius when manual and not drifting.
f32 driftManualTightness
Affects turn radius when manual drifting.
std::array< f32, 32 > kclRot
Rotation scalars, indexed using KCL attributes.
void applyCharacterBonus(EGG::RamStream &stream)
Applies character stats on top of the kart stats.
f32 driftAutomaticTightness
Affects turn radius when automatic drifting.
DriftType
The type of drift (inside/outside).
f32 turningSpeed
Speed decrement percentage of the vehicle when handling.
std::array< f32, 32 > kclSpeed
Speed multipliers, indexed using KCL attributes.
f32 driftReactivity
A weight applied to turn radius when drifting.
f32 speed
Base full speed of the character/vehicle combo.
f32 handlingAutomaticTightness
Affects turn radius when auto and not drifting.
f32 handlingReactivity
A weight applied to turn radius when not drifting.
void read(EGG::RamStream &stream)
Parses out the stats for a given KartParam.bin stream.
Body
The body style of the vehicle. Basically the number of wheels.
@ Vehicle_Relative_Bike
Used by Quacker.
@ Three_Wheel_Kart
Used by Blue Falcon.
@ Handle_Relative_Bike
Used by most bikes.
@ Four_Wheel_Kart
Used by most karts.
u32 miniTurbo
The framecount duration of a charged mini-turbo.
f32 weight
Contrary to popular belief, this does not affect gravity.