3#include "game/system/map/MapdataAccessorBase.hh"
5#include <egg/math/Vector.hh>
9class MapdataCheckPoint;
10class MapdataCheckPointAccessor;
29 STATIC_ASSERT(
sizeof(
SData) == 0x14);
42 f32 &distanceRatio)
const;
49 [[nodiscard]]
bool isNormalCheckpoint()
const {
53 [[nodiscard]]
bool isFinishLine()
const {
62 void clearSearched() {
68 [[nodiscard]]
bool searched()
const {
72 [[nodiscard]] s8 jugemIndex()
const {
76 [[nodiscard]] s8 checkArea()
const {
80 [[nodiscard]]
u16 nextCount()
const {
84 [[nodiscard]]
u16 prevCount()
const {
88 [[nodiscard]]
u16 id()
const {
92 [[nodiscard]] MapdataCheckPoint *prevPoint(
size_t i)
const {
93 ASSERT(i < m_prevPoints.size());
94 return m_prevPoints[i];
97 [[nodiscard]] MapdataCheckPoint *nextPoint(
size_t i)
const {
98 ASSERT(i < m_nextPoints.size());
99 return m_nextPoints[i].checkpoint;
116 static constexpr size_t MAX_NEIGHBORS = 6;
118 const SData *m_rawData;
138 std::array<MapdataCheckPoint *, MAX_NEIGHBORS> m_prevPoints;
139 std::array<LinkedCheckpoint, MAX_NEIGHBORS> m_nextPoints;
148 [[nodiscard]] s8 lastKcpType()
const {
149 return m_lastKcpType;
156 u16 m_finishLineCheckpointId;
A stream of data, abstracted to allow for continuous seeking.
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,...