1#include "RaceManager.hh"
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"
8#include "game/kart/KartObjectManager.hh"
9#include "game/kart/KartState.hh"
14void RaceManager::init() {
23 u32 startPointIdx = 0;
25 MapdataStartPoint *kartpoint = CourseMap::Instance()->getStartPoint(startPointIdx);
31 angles = EGG::Vector3f::ex;
36void RaceManager::endPlayerRace(u32 ) {
38 m_stage = Stage::FinishGlobal;
42void RaceManager::calc() {
43 constexpr u16 STAGE_INTRO_DURATION = 172;
45 m_timerManager.calc();
50 if (++m_introTimer >= STAGE_INTRO_DURATION) {
51 m_stage = Stage::Countdown;
52 KPadDirector::Instance()->startGhostProxies();
55 case Stage::Countdown:
56 if (++m_timer >= STAGE_COUNTDOWN_DURATION) {
57 m_timerManager.setStarted(
true);
58 m_stage = Stage::Race;
70MapdataJugemPoint *RaceManager::jugemPoint()
const {
71 s8 jugemId = std::max<s8>(m_player.jugemId(), 0);
72 return System::CourseMap::Instance()->getJugemPoint(
static_cast<u16>(jugemId));
76RaceManager *RaceManager::CreateInstance() {
78 s_instance =
new RaceManager;
83void RaceManager::DestroyInstance() {
85 auto *instance = s_instance;
91RaceManager::RaceManager() : m_stage(Stage::Intro), m_introTimer(0), m_timer(0) {}
94RaceManager::~RaceManager() {
97 WARN(
"RaceManager instance not explicitly handled!");
102RaceManager::Player::Player() {
104 m_raceCompletion = 0.0f;
106 m_checkpointStartLapCompletion = 0.0f;
107 m_lapCompletion = 0.999999f;
109 auto *courseMap = CourseMap::Instance();
111 if (courseMap->getCheckPointCount() > 0 && courseMap->getCheckPathCount() > 0) {
112 m_maxKcp = courseMap->checkPoint()->lastKcpType();
119 m_inputs = &KPadDirector::Instance()->playerInput();
123void RaceManager::Player::init() {
124 auto *courseMap = CourseMap::Instance();
126 if (courseMap->getCheckPointCount() != 0 && courseMap->getCheckPathCount() != 0) {
127 const EGG::Vector3f &pos = Kart::KartObjectManager::Instance()->object(0)->pos();
129 s16 checkpointId = courseMap->findSector(pos, 0, distanceRatio);
131 m_checkpointId = std::max<s16>(0, checkpointId);
132 m_jugemId = courseMap->getCheckPoint(m_checkpointId)->jugemIndex();
139void RaceManager::Player::calc() {
140 auto *courseMap = CourseMap::Instance();
141 const auto *kart = Kart::KartObjectManager::Instance()->object(0);
143 if (courseMap->getCheckPointCount() == 0 || courseMap->getCheckPathCount() == 0 ||
144 kart->state()->isBeforeRespawn()) {
149 s16 checkpointId = courseMap->findSector(kart->pos(), m_checkpointId, distanceRatio);
151 if (checkpointId == -1) {
155 if (m_checkpointFactor < 0.0f || m_checkpointId != checkpointId) {
156 calcCheckpoint(checkpointId, distanceRatio);
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);
169 ASSERT(lap <= m_lapTimers.size());
172 return m_lapTimers[0];
175 const Timer ¤tLap = 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);
181 return currentLap - previousLap;
186 auto *courseMap = CourseMap::Instance();
188 u16 oldCheckpointId = m_checkpointId;
189 m_checkpointId = checkpointId;
191 f32 lapProportion = courseMap->checkPath()->lapProportion();
192 MapdataCheckPath *checkPath = courseMap->checkPath()->findCheckpathForCheckpoint(checkpointId);
193 m_checkpointFactor = checkPath->oneOverCount() * lapProportion;
195 m_checkpointStartLapCompletion =
static_cast<f32
>(checkPath->depth()) * lapProportion +
196 (m_checkpointFactor *
static_cast<f32
>(checkpointId - checkPath->start()));
198 f32 newLapCompletion = m_checkpointStartLapCompletion + distanceRatio * m_checkpointFactor;
199 f32 deltaLapCompletion = m_lapCompletion - newLapCompletion;
202 const MapdataCheckPoint *oldCheckpoint = courseMap->getCheckPoint(oldCheckpointId);
204 s8 newJugemIdx = newCheckpoint->jugemIndex();
205 if (newJugemIdx >= 0) {
206 m_jugemId = newJugemIdx;
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) {
221 if ((oldCheckpoint->isFinishLine() &&
222 areCheckpointsSubsequent(newCheckpoint, oldCheckpointId)) ||
223 deltaLapCompletion < -0.95f) {
227 m_lapCompletion = newLapCompletion;
229 return newCheckpoint;
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()) {
245void RaceManager::Player::decrementLap() {
246 auto *courseMap = CourseMap::Instance();
248 if (courseMap->getCheckPointCount() > 0 && courseMap->getCheckPathCount() > 0) {
249 m_maxKcp = courseMap->checkPoint()->lastKcpType();
258void RaceManager::Player::incrementLap() {
260 if (++m_currentLap <= m_maxLap) {
264 const auto *kart = Kart::KartObjectManager::Instance()->object(0);
265 u16 addMs = CourseMap::Instance()->getCheckPointEntryOffsetMs(m_checkpointId, kart->pos(),
268 const Timer ¤tTimer = RaceManager::Instance()->timerManager().currentTimer();
269 Timer timer = currentTimer +
static_cast<f32
>(addMs);
272 ASSERT(
static_cast<size_t>(m_maxLap - 1) < m_lapTimers.size());
273 m_lapTimers[m_maxLap - 1] = timer;
278 m_maxLap = m_currentLap;
283void RaceManager::Player::endRace(
const Timer &finishTime) {
284 m_raceTimer = finishTime;
285 RaceManager::Instance()->endPlayerRace(0);
288RaceManager *RaceManager::s_instance =
nullptr;
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,...
A simple struct to represent a lap or race finish time.