37 void calcVehicleSpeed();
38 bool start(Action action);
43 const Flags &flags()
const;
54 f32 initialAngleIncrement;
55 f32 minAngleIncrement;
57 f32 initialMultiplierDecrement;
58 f32 slowdownThreshold;
65 typedef void (
KartAction::*EndActionFunc)(
bool arg);
70 void calcEndAction(
bool endArg);
74 void applyStartSpeed();
75 void setRotation(
size_t idx);
95 void endStub(
bool arg);
96 void endAction1(
bool arg);
98 Action m_currentAction;
99 f32 m_rotationDirection;
102 StartActionFunc m_onStart;
103 CalcActionFunc m_onCalc;
104 EndActionFunc m_onEnd;
111 f32 m_angleIncrement;
113 f32 m_multiplierDecrement;
119 static constexpr size_t MAX_ACTION =
static_cast<size_t>(Action::Max);
121 static const std::array<ActionParams, MAX_ACTION> s_actionParams;
122 static const std::array<RotationParams, 5> s_rotationParams;
124 static const std::array<StartActionFunc, MAX_ACTION> s_onStart;
125 static const std::array<CalcActionFunc, MAX_ACTION> s_onCalc;
126 static const std::array<EndActionFunc, MAX_ACTION> s_onEnd;