A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
MapdataCheckPoint.hh
1#pragma once
2
3#include "game/system/map/MapdataAccessorBase.hh"
4
5#include <egg/math/Vector.hh>
6
7namespace System {
8
9class MapdataCheckPoint;
10class MapdataCheckPointAccessor;
11
13 MapdataCheckPoint *checkpoint;
14 EGG::Vector2f p0diff;
15 EGG::Vector2f p1diff;
16 f32 distance;
17};
18
20public:
21 struct SData {
22 EGG::Vector2f left;
23 EGG::Vector2f right;
24 s8 jugemIndex;
25 s8 checkArea;
26 u8 prevPt;
27 u8 nextPt;
28 };
29 STATIC_ASSERT(sizeof(SData) == 0x14);
30
37
38 MapdataCheckPoint(const SData *data);
39 void read(EGG::Stream &stream);
40 void initCheckpointLinks(MapdataCheckPointAccessor &accessor, int id);
41 [[nodiscard]] SectorOccupancy checkSectorAndDistanceRatio(const EGG::Vector3f &pos,
42 f32 &distanceRatio) const;
43
44 [[nodiscard]] u16 getEntryOffsetMs(const EGG::Vector2f &prevPos,
45 const EGG::Vector2f &pos) const;
46 [[nodiscard]] f32 getEntryOffsetExact(const EGG::Vector2f &prevPos,
47 const EGG::Vector2f &pos) const;
48
49 [[nodiscard]] bool isNormalCheckpoint() const {
51 }
52
53 [[nodiscard]] bool isFinishLine() const {
54 return static_cast<CheckArea>(m_checkArea) == CheckArea::FinishLine;
55 }
56
58 void setSearched() {
59 m_searched = true;
60 }
61
62 void clearSearched() {
63 m_searched = false;
64 }
66
68 [[nodiscard]] bool searched() const {
69 return m_searched;
70 }
71
72 [[nodiscard]] s8 jugemIndex() const {
73 return m_jugemIndex;
74 }
75
76 [[nodiscard]] s8 checkArea() const {
77 return m_checkArea;
78 }
79
80 [[nodiscard]] u16 nextCount() const {
81 return m_nextCount;
82 }
83
84 [[nodiscard]] u16 prevCount() const {
85 return m_prevCount;
86 }
87
88 [[nodiscard]] u16 id() const {
89 return m_id;
90 }
91
92 [[nodiscard]] MapdataCheckPoint *prevPoint(size_t i) const {
93 ASSERT(i < m_prevPoints.size());
94 return m_prevPoints[i];
95 }
96
97 [[nodiscard]] MapdataCheckPoint *nextPoint(size_t i) const {
98 ASSERT(i < m_nextPoints.size());
99 return m_nextPoints[i].checkpoint;
100 }
102
103 enum class CheckArea {
104 NormalCheckpoint = -1,
105 FinishLine = 0,
106 };
107
108private:
109 [[nodiscard]] SectorOccupancy checkSectorAndDistanceRatio(const LinkedCheckpoint &next,
110 const EGG::Vector2f &p0, const EGG::Vector2f &p1, f32 &distanceRatio) const;
111 [[nodiscard]] bool checkSector(const LinkedCheckpoint &next, const EGG::Vector2f &p0,
112 const EGG::Vector2f &p1) const;
113 [[nodiscard]] bool checkDistanceRatio(const LinkedCheckpoint &next, const EGG::Vector2f &p0,
114 const EGG::Vector2f &p1, f32 &distanceRatio) const;
115
116 static constexpr size_t MAX_NEIGHBORS = 6;
117
118 const SData *m_rawData;
119 EGG::Vector2f m_left;
120 EGG::Vector2f m_right;
130 u8 m_prevPt;
131 u8 m_nextPt;
132 u16 m_nextCount;
133 u16 m_prevCount;
134 EGG::Vector2f m_midpoint;
135 EGG::Vector2f m_dir;
136 bool m_searched;
137 u16 m_id;
138 std::array<MapdataCheckPoint *, MAX_NEIGHBORS> m_prevPoints;
139 std::array<LinkedCheckpoint, MAX_NEIGHBORS> m_nextPoints;
140};
141
143 : public MapdataAccessorBase<MapdataCheckPoint, MapdataCheckPoint::SData> {
144public:
147
148 [[nodiscard]] s8 lastKcpType() const {
149 return m_lastKcpType;
150 }
151
152private:
153 void init();
154
155 s8 m_lastKcpType;
156 u16 m_finishLineCheckpointId;
157};
158
159} // namespace System
A stream of data, abstracted to allow for continuous seeking.
Definition Stream.hh:10
void init()
Initializes all checkpoint links, and finds the finish line and last key checkpoint.
f32 getEntryOffsetExact(const EGG::Vector2f &prevPos, const EGG::Vector2f &pos) const
Finds the offset between the two positions that enter the checkpoint.
u16 getEntryOffsetMs(const EGG::Vector2f &prevPos, const EGG::Vector2f &pos) const
Finds the offset between the two positions that enter the checkpoint.
@ FinishLine
Triggers a lap change.
@ NormalCheckpoint
Only used for picking respawn position.
bool checkDistanceRatio(const LinkedCheckpoint &next, const EGG::Vector2f &p0, const EGG::Vector2f &p1, f32 &distanceRatio) const
Sets the distance ratio, which is the progress of traversal through the checkpoint quad.
@ OutsideSector
Player is outside the given checkpoint group.
@ InsideSector
Player is inside the given checkpoint group.
bool checkSector(const LinkedCheckpoint &next, const EGG::Vector2f &p0, const EGG::Vector2f &p1) const
void initCheckpointLinks(MapdataCheckPointAccessor &accessor, int id)
Calculates m_nextPoints and m_prevPoints from m_nextPt and m_prevPt.
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5
A 2D float vector.
Definition Vector.hh:12
A 3D float vector.
Definition Vector.hh:83