A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartAction.hh
1#pragma once
2
3#include "game/kart/KartObjectProxy.hh"
4
5namespace Kart {
6
7enum class Action {
8 None = -1,
9 UNK_0 = 0,
10 UNK_1 = 1,
11 UNK_2 = 2,
12 UNK_3 = 3,
13 UNK_4 = 4,
14 UNK_5 = 5,
15 UNK_6 = 6,
16 UNK_7 = 7,
17 UNK_8 = 8,
18 UNK_9 = 9,
19 UNK_12 = 12,
20 UNK_14 = 14,
21 UNK_16 = 16,
22 Max = 18,
23};
24
26public:
27 enum class eFlags {
28 Rotating = 3,
29 };
31
32 KartAction();
34
35 void init();
36 void calc();
37 void calcVehicleSpeed();
38 bool start(Action action);
39 void startRotation(size_t idx);
40
41 void setHitDepth(const EGG::Vector3f &hitDepth);
42
43 const Flags &flags() const;
44
45private:
47 struct ActionParams {
48 f32 startSpeedMult;
49 f32 calcSpeedMult;
50 s16 priority;
51 };
52
54 f32 initialAngleIncrement;
55 f32 minAngleIncrement;
56 f32 minMultiplier;
57 f32 initialMultiplierDecrement;
58 f32 slowdownThreshold;
59 f32 finalAngle;
60 };
61
62 // The player index sent into StartActionFunc is assumed to be cosmetic
63 typedef void (KartAction::*StartActionFunc)();
64 typedef bool (KartAction::*CalcActionFunc)();
65 typedef void (KartAction::*EndActionFunc)(bool arg);
66
67 void end();
68
69 bool calcCurrentAction();
70 void calcEndAction(bool endArg);
71 bool calcRotation();
72 void calcUp();
73
74 void applyStartSpeed();
75 void setRotation(size_t idx);
76
77 /* ================================ *
78 * START FUNCTIONS
79 * ================================ */
80
81 void startStub();
82 void startAction1();
83
84 /* ================================ *
85 * CALC FUNCTIONS
86 * ================================ */
87
88 bool calcStub();
89 bool calcAction1();
90
91 /* ================================ *
92 * END FUNCTIONS
93 * ================================ */
94
95 void endStub(bool arg);
96 void endAction1(bool arg);
97
98 Action m_currentAction;
99 f32 m_rotationDirection;
100 EGG::Vector3f m_hitDepth;
101
102 StartActionFunc m_onStart;
103 CalcActionFunc m_onCalc;
104 EndActionFunc m_onEnd;
105
106 EGG::Quatf m_rotation;
107 const ActionParams *m_actionParams;
108 u32 m_frame;
109 Flags m_flags;
110 f32 m_currentAngle;
111 f32 m_angleIncrement;
112 f32 m_multiplier;
113 f32 m_multiplierDecrement;
114 f32 m_finalAngle;
115 const RotationParams *m_rotationParams;
116 EGG::Vector3f m_up;
117 s16 m_priority;
118
119 static constexpr size_t MAX_ACTION = static_cast<size_t>(Action::Max);
120
121 static const std::array<ActionParams, MAX_ACTION> s_actionParams;
122 static const std::array<RotationParams, 5> s_rotationParams;
123
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;
127};
128
129} // namespace Kart
void startRotation(size_t idx)
Initializes rotation parameters.
Definition KartAction.cc:82
bool calcCurrentAction()
Executes a frame of the current action.
bool start(Action action)
Starts an action.
Definition KartAction.cc:46
Base class for most kart-related objects.
Pertains to kart-related functionality.
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
Wrapper around an integral type with an enum corresponding to its bits.
Definition BitFlag.hh:16
A 3D float vector.
Definition Vector.hh:83
Parameters specific to an action ID.
Definition KartAction.hh:47