A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
CourseMap.hh
1#pragma once
2
3#include "game/system/map/MapdataAccessorBase.hh"
4#include "game/system/map/MapdataCannonPoint.hh"
5#include "game/system/map/MapdataCheckPath.hh"
6#include "game/system/map/MapdataCheckPoint.hh"
7#include "game/system/map/MapdataFileAccessor.hh"
8#include "game/system/map/MapdataGeoObj.hh"
9#include "game/system/map/MapdataJugemPoint.hh"
10#include "game/system/map/MapdataPointInfo.hh"
11#include "game/system/map/MapdataStageInfo.hh"
12#include "game/system/map/MapdataStartPoint.hh"
13
14#include <egg/math/Vector.hh>
15
18namespace System {
19
20template <typename T>
21concept MapdataDerived = is_derived_from_template_v<MapdataAccessorBase, T>;
22
27public:
28 void init();
29
30 template <MapdataDerived T>
31 [[nodiscard]] T *parseMapdata(u32 sectionName) const {
32 const MapSectionHeader *sectionPtr = m_course->findSection(sectionName);
33 return sectionPtr ? new T(sectionPtr) : nullptr;
34 }
35
36 [[nodiscard]] s16 findSector(const EGG::Vector3f &pos, u16 checkpointIdx, f32 &distanceRatio);
37 [[nodiscard]] s16 findRecursiveSector(const EGG::Vector3f &pos, s16 depth,
38 bool searchBackwardsFirst, MapdataCheckPoint *checkpoint, f32 &completion,
39 bool playerIsForwards) const;
40
42 [[nodiscard]] u16 getCheckPointEntryOffsetMs(u16 i, const EGG::Vector3f &pos,
43 const EGG::Vector3f &prevPos) const;
44 [[nodiscard]] f32 getCheckPointEntryOffsetExact(u16 i, const EGG::Vector3f &pos,
45 const EGG::Vector3f &prevPos) const;
46
48 [[nodiscard]] MapdataCannonPoint *getCannonPoint(u16 i) const {
49 return i < getCannonPointCount() ? m_cannonPoint->get(i) : nullptr;
50 }
51
53 [[nodiscard]] MapdataCheckPath *getCheckPath(u16 i) const {
54 return i < getCheckPathCount() ? m_checkPath->get(i) : nullptr;
55 }
56
58 [[nodiscard]] MapdataCheckPoint *getCheckPoint(u16 i) const {
59 return i < getCheckPointCount() ? m_checkPoint->get(i) : nullptr;
60 }
61
63 [[nodiscard]] MapdataGeoObj *getGeoObj(u16 i) const {
64 return i < getGeoObjCount() ? m_geoObj->get(i) : nullptr;
65 }
66
68 [[nodiscard]] MapdataPointInfo *getPointInfo(u16 i) const {
69 return i < getPointInfoCount() ? m_pointInfo->get(i) : nullptr;
70 }
71
73 [[nodiscard]] MapdataJugemPoint *getJugemPoint(u16 i) const {
74 return i < getJugemPointCount() ? m_jugemPoint->get(i) : nullptr;
75 }
76
78 [[nodiscard]] MapdataStageInfo *getStageInfo() const {
79 return getStageInfoCount() != 0 ? m_stageInfo->get(0) : nullptr;
80 }
81
83 [[nodiscard]] MapdataStartPoint *getStartPoint(u16 i) const {
84 return i < getStartPointCount() ? m_startPoint->get(i) : nullptr;
85 }
86
87 [[nodiscard]] u16 getCannonPointCount() const {
88 return m_cannonPoint ? m_cannonPoint->size() : 0;
89 }
90
91 [[nodiscard]] u16 getCheckPathCount() const {
92 return m_checkPath ? m_checkPath->size() : 0;
93 }
94
95 [[nodiscard]] u16 getCheckPointCount() const {
96 return m_checkPoint ? m_checkPoint->size() : 0;
97 }
98
99 [[nodiscard]] u16 getGeoObjCount() const {
100 return m_geoObj ? m_geoObj->size() : 0;
101 }
102
103 [[nodiscard]] u16 getPointInfoCount() const {
104 return m_pointInfo ? m_pointInfo->size() : 0;
105 }
106
107 [[nodiscard]] u16 getJugemPointCount() const {
108 return m_jugemPoint ? m_jugemPoint->size() : 0;
109 }
110
111 [[nodiscard]] u16 getStageInfoCount() const {
112 return m_stageInfo ? m_stageInfo->size() : 0;
113 }
114
115 [[nodiscard]] u16 getStartPointCount() const {
116 return m_startPoint ? m_startPoint->size() : 0;
117 }
118
119 [[nodiscard]] u32 version() const {
120 return m_course->version();
121 }
122
123 [[nodiscard]] MapdataCheckPathAccessor *checkPath() const {
124 return m_checkPath;
125 }
126
127 [[nodiscard]] MapdataCheckPointAccessor *checkPoint() const {
128 return m_checkPoint;
129 }
130
131 [[nodiscard]] f32 startTmpAngle() const {
132 return m_startTmpAngle;
133 }
134
135 [[nodiscard]] f32 startTmp0() const {
136 return m_startTmp0;
137 }
138
139 [[nodiscard]] f32 startTmp1() const {
140 return m_startTmp1;
141 }
142
143 [[nodiscard]] f32 startTmp2() const {
144 return m_startTmp2;
145 }
146
147 [[nodiscard]] f32 startTmp3() const {
148 return m_startTmp3;
149 }
151
152 static CourseMap *CreateInstance();
153 static void DestroyInstance();
154
155 [[nodiscard]] static CourseMap *Instance() {
156 return s_instance;
157 }
158
159private:
160 CourseMap();
161 ~CourseMap() override;
162
163 [[nodiscard]] s16 findSectorBetweenSides(const EGG::Vector3f &pos,
164 MapdataCheckPoint *checkpoint, f32 &distanceRatio);
165 [[nodiscard]] s16 findSectorOutsideSector(const EGG::Vector3f &pos,
166 MapdataCheckPoint *checkpoint, f32 &distanceRatio);
167 [[nodiscard]] s16 findSectorRegional(const EGG::Vector3f &pos, MapdataCheckPoint *checkpoint,
168 f32 &distanceRatio);
169 [[nodiscard]] s16 searchNextCheckpoint(const EGG::Vector3f &pos, s16 depth,
170 const MapdataCheckPoint *checkpoint, f32 &completion, bool playerIsForwards,
171 bool useCache) const;
172 [[nodiscard]] s16 searchPrevCheckpoint(const EGG::Vector3f &pos, s16 depth,
173 const MapdataCheckPoint *checkpoint, f32 &completion, bool playerIsForwards,
174 bool useCache) const;
175 void clearSectorChecked();
176
177 MapdataFileAccessor *m_course;
178 MapdataStartPointAccessor *m_startPoint;
179 MapdataCheckPathAccessor *m_checkPath;
180 MapdataCheckPointAccessor *m_checkPoint;
181 MapdataPointInfoAccessor *m_pointInfo;
182 MapdataGeoObjAccessor *m_geoObj;
183 MapdataJugemPointAccessor *m_jugemPoint;
184 MapdataCannonPointAccessor *m_cannonPoint;
185 MapdataStageInfoAccessor *m_stageInfo;
186
187 // TODO: Better names
188 f32 m_startTmpAngle;
189 f32 m_startTmp0;
190 f32 m_startTmp1;
191 f32 m_startTmp2;
192 f32 m_startTmp3;
193
194 static void *LoadFile(const char *filename);
195
196 static CourseMap *s_instance;
197};
198
199} // namespace System
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
Contains course metadata, notably the starting position.
Definition CourseMap.hh:26
This class represents the course's respawn positions.
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