3#include "game/kart/KartObjectProxy.hh"
4#include "game/system/KPadController.hh"
35 f32 angleDeltaFactorMin;
47 virtual void calcRot();
49 void setupProperties();
60 void setBoostRampEnabled(
bool isSet) {
61 m_boostRampEnabled = isSet;
66 [[nodiscard]]
bool isBoostRampEnabled()
const {
67 return m_boostRampEnabled;
70 [[nodiscard]] TrickType type()
const {
73 [[nodiscard]] SurfaceVariant variant()
const {
76 [[nodiscard]] s16 cooldown()
const {
86 SurfaceVariant m_variant;
87 System::Trick m_nextTrick;
89 TrickProperties m_properties;
92 f32 m_angleDeltaFactor;
93 f32 m_angleDeltaFactorDec;
100 s16 m_nextAllowTimer;
101 bool m_boostRampEnabled;
113 void init()
override;
Manages trick inputs and state.
Responsible for reacting to player inputs and moving the kart.
Base class for most kart-related objects.
Pertains to kart-related functionality.
TrickType
Represents the type of trick that will be performed based on kart and player input.
@ FlipTrickYLeft
A left trick with kart/bike.
@ KartFlipTrickZ
An up/down trick with a kart.
@ BikeSideStuntTrick
A side StuntTrick with a bike.
@ BikeFlipTrickTail
A down trick with bike.
@ BikeFlipTrickNose
An up trick with bike.
@ StuntTrickBasic
An up/down StuntTrick with kart/bike.
@ FlipTrickYRight
A right trick with kart/bike.
SurfaceVariant
Determined by the KCL, this represents the variation of the trick that will be performed.
@ SingleFlipTrick
BC starting ramp.
@ DoubleFlipTrick
RR ramps before figure-8 and last turn.
@ StuntTrick
Think rMR ramp and pipe, MH after first turn, mushrooms, etc.
A quaternion, used to represent 3D rotation.