A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
RaceManager.hh
1#pragma once
2
3#include "game/system/KPadController.hh"
4#include "game/system/map/MapdataCheckPoint.hh"
5#include "game/system/map/MapdataJugemPoint.hh"
6
7#include <egg/math/Vector.hh>
8
9namespace System {
10
19public:
20 class Player {
21 public:
22 Player();
23 virtual ~Player() {}
24
25 void init();
26 void calc();
27
28 [[nodiscard]] Timer getLapSplit(size_t idx) const;
29
31 [[nodiscard]] u16 checkpointId() const {
32 return m_checkpointId;
33 }
34
35 [[nodiscard]] f32 raceCompletion() const {
36 return m_raceCompletion;
37 }
38
39 [[nodiscard]] s8 jugemId() const {
40 return m_jugemId;
41 }
42
43 [[nodiscard]] const std::array<Timer, 3> &lapTimers() const {
44 return m_lapTimers;
45 }
46
47 [[nodiscard]] const Timer &lapTimer(size_t idx) const {
48 ASSERT(idx < m_lapTimers.size());
49 return m_lapTimers[idx];
50 }
51
52 [[nodiscard]] const Timer &raceTimer() const {
53 return m_raceTimer;
54 }
55
56 [[nodiscard]] const KPad *inputs() const {
57 return m_inputs;
58 }
60
61 private:
62 MapdataCheckPoint *calcCheckpoint(u16 checkpointId, f32 distanceRatio);
63 [[nodiscard]] bool areCheckpointsSubsequent(const MapdataCheckPoint *checkpoint,
64 u16 nextCheckpointId) const;
65
66 void decrementLap();
67 void incrementLap();
68 void endRace(const Timer &finishTime);
69
70 u16 m_checkpointId;
71 f32 m_raceCompletion;
73 f32 m_checkpointStartLapCompletion;
74 f32 m_lapCompletion;
75 s8 m_jugemId;
76 s16 m_currentLap;
77 s8 m_maxLap;
78 s8 m_maxKcp;
79 std::array<Timer, 3> m_lapTimers;
80 Timer m_raceTimer;
81 const KPad *m_inputs;
82 };
83
84 enum class Stage {
85 Intro = 0,
86 Countdown = 1,
87 Race = 2,
88 FinishLocal = 3,
89 FinishGlobal = 4,
90 };
91
92 void init();
93
95 void endPlayerRace(u32 idx);
96
97 void calc();
98
100 [[nodiscard]] bool isStageReached(Stage stage) const {
101 return static_cast<std::underlying_type_t<Stage>>(m_stage) >=
102 static_cast<std::underlying_type_t<Stage>>(stage);
103 }
104
105 [[nodiscard]] MapdataJugemPoint *jugemPoint() const;
106
109 [[nodiscard]] int getCountdownTimer() const {
110 return STAGE_COUNTDOWN_DURATION - m_timer;
111 }
112
113 [[nodiscard]] const Player &player() const {
114 return m_player;
115 }
116
117 [[nodiscard]] const TimerManager &timerManager() const {
118 return m_timerManager;
119 }
120
121 [[nodiscard]] Stage stage() const {
122 return m_stage;
123 }
124
125 [[nodiscard]] u32 timer() const {
126 return m_timer;
127 }
129
130 static RaceManager *CreateInstance();
131 static void DestroyInstance();
132
133 [[nodiscard]] static RaceManager *Instance() {
134 return s_instance;
135 }
136
137private:
138 RaceManager();
139 ~RaceManager() override;
140
141 Player m_player;
142 TimerManager m_timerManager;
143 Stage m_stage;
144 u16 m_introTimer;
145 u32 m_timer;
146
147 static constexpr u16 STAGE_COUNTDOWN_DURATION = 240;
148
149 static RaceManager *s_instance;
150};
151
152} // namespace System
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
f32 m_checkpointFactor
The proportion of a lap for the current checkpoint.
Timer getLapSplit(size_t idx) const
Gets the lap split, which is the difference between the given lap and the previous one.
Manages the timers that track the stages of a race. Also acts as the interface between the physics en...
void findKartStartPoint(EGG::Vector3f &pos, EGG::Vector3f &angles)
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5
A 3D float vector.
Definition Vector.hh:83
A simple struct to represent a lap or race finish time.