A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
RaceManager.cc
1#include "RaceManager.hh"
2
3#include "game/system/CourseMap.hh"
4#include "game/system/KPadDirector.hh"
5#include "game/system/map/MapdataCheckPath.hh"
6#include "game/system/map/MapdataStartPoint.hh"
7
8#include "game/kart/KartObjectManager.hh"
9#include "game/kart/KartState.hh"
10
11namespace System {
12
14void RaceManager::init() {
15 m_player.init();
16}
17
21 u32 placement = 1;
22 u32 playerCount = 1;
23 u32 startPointIdx = 0;
24
25 MapdataStartPoint *kartpoint = CourseMap::Instance()->getStartPoint(startPointIdx);
26
27 if (kartpoint) {
28 kartpoint->findKartStartPoint(pos, angles, placement - 1, playerCount);
29 } else {
30 pos.setZero();
31 angles = EGG::Vector3f::ex;
32 }
33}
34
36void RaceManager::endPlayerRace(u32 /*idx*/) {
37 // We only have one player, so most of the logic is much simpler
38 m_stage = Stage::FinishGlobal;
39}
40
42void RaceManager::calc() {
43 constexpr u16 STAGE_INTRO_DURATION = 172;
44
45 m_timerManager.calc();
46 m_player.calc();
47
48 switch (m_stage) {
49 case Stage::Intro:
50 if (++m_introTimer >= STAGE_INTRO_DURATION) {
51 m_stage = Stage::Countdown;
52 KPadDirector::Instance()->startGhostProxies();
53 }
54 break;
55 case Stage::Countdown:
56 if (++m_timer >= STAGE_COUNTDOWN_DURATION) {
57 m_timerManager.setStarted(true);
58 m_stage = Stage::Race;
59 }
60 break;
61 case Stage::Race:
62 ++m_timer;
63 break;
64 default:
65 break;
66 }
67}
68
70MapdataJugemPoint *RaceManager::jugemPoint() const {
71 s8 jugemId = std::max<s8>(m_player.jugemId(), 0);
72 return System::CourseMap::Instance()->getJugemPoint(static_cast<u16>(jugemId));
73}
74
76RaceManager *RaceManager::CreateInstance() {
77 ASSERT(!s_instance);
78 s_instance = new RaceManager;
79 return s_instance;
80}
81
83void RaceManager::DestroyInstance() {
84 ASSERT(s_instance);
85 auto *instance = s_instance;
86 s_instance = nullptr;
87 delete instance;
88}
89
91RaceManager::RaceManager() : m_stage(Stage::Intro), m_introTimer(0), m_timer(0) {}
92
94RaceManager::~RaceManager() {
95 if (s_instance) {
96 s_instance = nullptr;
97 WARN("RaceManager instance not explicitly handled!");
98 }
99}
100
102RaceManager::Player::Player() {
103 m_checkpointId = 0;
104 m_raceCompletion = 0.0f;
105 m_checkpointFactor = -1.0f;
106 m_checkpointStartLapCompletion = 0.0f;
107 m_lapCompletion = 0.999999f;
108
109 auto *courseMap = CourseMap::Instance();
110
111 if (courseMap->getCheckPointCount() > 0 && courseMap->getCheckPathCount() > 0) {
112 m_maxKcp = courseMap->checkPoint()->lastKcpType();
113 } else {
114 m_maxKcp = -1;
115 }
116
117 m_currentLap = 0;
118 m_maxLap = 1;
119 m_inputs = &KPadDirector::Instance()->playerInput();
120}
121
123void RaceManager::Player::init() {
124 auto *courseMap = CourseMap::Instance();
125
126 if (courseMap->getCheckPointCount() != 0 && courseMap->getCheckPathCount() != 0) {
127 const EGG::Vector3f &pos = Kart::KartObjectManager::Instance()->object(0)->pos();
128 f32 distanceRatio;
129 s16 checkpointId = courseMap->findSector(pos, 0, distanceRatio);
130
131 m_checkpointId = std::max<s16>(0, checkpointId);
132 m_jugemId = courseMap->getCheckPoint(m_checkpointId)->jugemIndex();
133 } else {
134 m_jugemId = 0;
135 }
136}
137
139void RaceManager::Player::calc() {
140 auto *courseMap = CourseMap::Instance();
141 const auto *kart = Kart::KartObjectManager::Instance()->object(0);
142
143 if (courseMap->getCheckPointCount() == 0 || courseMap->getCheckPathCount() == 0 ||
144 kart->state()->isBeforeRespawn()) {
145 return;
146 }
147
148 f32 distanceRatio;
149 s16 checkpointId = courseMap->findSector(kart->pos(), m_checkpointId, distanceRatio);
150
151 if (checkpointId == -1) {
152 return;
153 }
154
155 if (m_checkpointFactor < 0.0f || m_checkpointId != checkpointId) {
156 calcCheckpoint(checkpointId, distanceRatio);
157 }
158
159 m_raceCompletion = static_cast<f32>(m_currentLap) +
160 (m_checkpointStartLapCompletion + m_checkpointFactor * distanceRatio);
161 m_raceCompletion = std::min(m_raceCompletion, static_cast<f32>(m_currentLap) + 0.99999f);
162}
163
169 ASSERT(lap <= m_lapTimers.size());
170
171 if (lap < 2) {
172 return m_lapTimers[0];
173 }
174
175 const Timer &currentLap = m_lapTimers[lap - 1];
176 const Timer &previousLap = m_lapTimers[lap - 2];
177 if (!currentLap.valid || !previousLap.valid) {
178 return Timer(std::numeric_limits<u16>::max(), 0, 0);
179 }
180
181 return currentLap - previousLap;
182}
183
185MapdataCheckPoint *RaceManager::Player::calcCheckpoint(u16 checkpointId, f32 distanceRatio) {
186 auto *courseMap = CourseMap::Instance();
187
188 u16 oldCheckpointId = m_checkpointId;
189 m_checkpointId = checkpointId;
190
191 f32 lapProportion = courseMap->checkPath()->lapProportion();
192 MapdataCheckPath *checkPath = courseMap->checkPath()->findCheckpathForCheckpoint(checkpointId);
193 m_checkpointFactor = checkPath->oneOverCount() * lapProportion;
194
195 m_checkpointStartLapCompletion = static_cast<f32>(checkPath->depth()) * lapProportion +
196 (m_checkpointFactor * static_cast<f32>(checkpointId - checkPath->start()));
197
198 f32 newLapCompletion = m_checkpointStartLapCompletion + distanceRatio * m_checkpointFactor;
199 f32 deltaLapCompletion = m_lapCompletion - newLapCompletion;
200
201 MapdataCheckPoint *newCheckpoint = courseMap->getCheckPoint(checkpointId);
202 const MapdataCheckPoint *oldCheckpoint = courseMap->getCheckPoint(oldCheckpointId);
203
204 s8 newJugemIdx = newCheckpoint->jugemIndex();
205 if (newJugemIdx >= 0) {
206 m_jugemId = newJugemIdx;
207 }
208
209 if (!newCheckpoint->isNormalCheckpoint()) {
210 if (newCheckpoint->checkArea() > m_maxKcp) {
211 m_maxKcp = newCheckpoint->checkArea();
212 } else if (m_maxKcp == courseMap->checkPoint()->lastKcpType()) {
213 if ((newCheckpoint->isFinishLine() &&
214 areCheckpointsSubsequent(oldCheckpoint, checkpointId)) ||
215 deltaLapCompletion > 0.95f) {
216 incrementLap();
217 }
218 }
219 }
220
221 if ((oldCheckpoint->isFinishLine() &&
222 areCheckpointsSubsequent(newCheckpoint, oldCheckpointId)) ||
223 deltaLapCompletion < -0.95f) {
224 decrementLap();
225 }
226
227 m_lapCompletion = newLapCompletion;
228
229 return newCheckpoint;
230}
231
233bool RaceManager::Player::areCheckpointsSubsequent(const MapdataCheckPoint *checkpoint,
234 u16 nextCheckpointId) const {
235 for (size_t i = 0; i < checkpoint->nextCount(); ++i) {
236 if (nextCheckpointId == checkpoint->nextPoint(i)->id()) {
237 return true;
238 }
239 }
240
241 return false;
242}
243
245void RaceManager::Player::decrementLap() {
246 auto *courseMap = CourseMap::Instance();
247
248 if (courseMap->getCheckPointCount() > 0 && courseMap->getCheckPathCount() > 0) {
249 m_maxKcp = courseMap->checkPoint()->lastKcpType();
250 } else {
251 m_maxKcp = -1;
252 }
253
254 --m_currentLap;
255}
256
258void RaceManager::Player::incrementLap() {
259 m_maxKcp = 0;
260 if (++m_currentLap <= m_maxLap) {
261 return;
262 }
263
264 const auto *kart = Kart::KartObjectManager::Instance()->object(0);
265 u16 addMs = CourseMap::Instance()->getCheckPointEntryOffsetMs(m_checkpointId, kart->pos(),
266 kart->prevPos());
267
268 const Timer &currentTimer = RaceManager::Instance()->timerManager().currentTimer();
269 Timer timer = currentTimer + static_cast<f32>(addMs);
270
271 // TODO: Handle this case more gracefully
272 ASSERT(static_cast<size_t>(m_maxLap - 1) < m_lapTimers.size());
273 m_lapTimers[m_maxLap - 1] = timer;
274
275 if (m_maxLap >= 3) {
276 endRace(timer);
277 } else {
278 m_maxLap = m_currentLap;
279 }
280}
281
283void RaceManager::Player::endRace(const Timer &finishTime) {
284 m_raceTimer = finishTime;
285 RaceManager::Instance()->endPlayerRace(0);
286}
287
288RaceManager *RaceManager::s_instance = nullptr;
289
290} // namespace System
void findKartStartPoint(EGG::Vector3f &pos, EGG::Vector3f &angles, u8 placement, u8 playerCount)
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.
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.