30 template <MapdataDerived T>
31 [[nodiscard]] T *parseMapdata(u32 sectionName)
const {
33 return sectionPtr ?
new T(sectionPtr) :
nullptr;
36 [[nodiscard]] s16 findSector(
const EGG::Vector3f &pos,
u16 checkpointIdx, f32 &distanceRatio);
37 [[nodiscard]] s16 findRecursiveSector(
const EGG::Vector3f &pos, s16 depth,
39 bool playerIsForwards)
const;
44 [[nodiscard]] f32 getCheckPointEntryOffsetExact(
u16 i,
const EGG::Vector3f &pos,
49 return i < getCannonPointCount() ? m_cannonPoint->get(i) :
nullptr;
54 return i < getCheckPathCount() ? m_checkPath->get(i) :
nullptr;
59 return i < getCheckPointCount() ? m_checkPoint->get(i) :
nullptr;
64 return i < getGeoObjCount() ? m_geoObj->get(i) :
nullptr;
69 return i < getPointInfoCount() ? m_pointInfo->get(i) :
nullptr;
74 return i < getJugemPointCount() ? m_jugemPoint->get(i) :
nullptr;
79 return getStageInfoCount() != 0 ? m_stageInfo->get(0) :
nullptr;
84 return i < getStartPointCount() ? m_startPoint->get(i) :
nullptr;
87 [[nodiscard]]
u16 getCannonPointCount()
const {
88 return m_cannonPoint ? m_cannonPoint->size() : 0;
91 [[nodiscard]]
u16 getCheckPathCount()
const {
92 return m_checkPath ? m_checkPath->size() : 0;
95 [[nodiscard]]
u16 getCheckPointCount()
const {
96 return m_checkPoint ? m_checkPoint->size() : 0;
99 [[nodiscard]]
u16 getGeoObjCount()
const {
100 return m_geoObj ? m_geoObj->size() : 0;
103 [[nodiscard]]
u16 getPointInfoCount()
const {
104 return m_pointInfo ? m_pointInfo->size() : 0;
107 [[nodiscard]]
u16 getJugemPointCount()
const {
108 return m_jugemPoint ? m_jugemPoint->size() : 0;
111 [[nodiscard]]
u16 getStageInfoCount()
const {
112 return m_stageInfo ? m_stageInfo->size() : 0;
115 [[nodiscard]]
u16 getStartPointCount()
const {
116 return m_startPoint ? m_startPoint->size() : 0;
119 [[nodiscard]] u32 version()
const {
120 return m_course->version();
131 [[nodiscard]] f32 startTmpAngle()
const {
132 return m_startTmpAngle;
135 [[nodiscard]] f32 startTmp0()
const {
139 [[nodiscard]] f32 startTmp1()
const {
143 [[nodiscard]] f32 startTmp2()
const {
147 [[nodiscard]] f32 startTmp3()
const {
153 static void DestroyInstance();
155 [[nodiscard]]
static CourseMap *Instance() {
163 [[nodiscard]] s16 findSectorBetweenSides(
const EGG::Vector3f &pos,
165 [[nodiscard]] s16 findSectorOutsideSector(
const EGG::Vector3f &pos,
169 [[nodiscard]] s16 searchNextCheckpoint(
const EGG::Vector3f &pos, s16 depth,
171 bool useCache)
const;
172 [[nodiscard]] s16 searchPrevCheckpoint(
const EGG::Vector3f &pos, s16 depth,
174 bool useCache)
const;
175 void clearSectorChecked();
194 static void *LoadFile(
const char *filename);