3#include "game/system/map/MapdataAccessorBase.hh"
5#include <egg/math/Vector.hh>
9class MapdataCheckPathAccessor;
21 STATIC_ASSERT(
sizeof(
SData) == 0x10);
28 [[nodiscard]]
bool isPointInPath(
u16 checkpointId)
const {
29 return m_start <= checkpointId && checkpointId <= end();
32 static constexpr size_t MAX_NEIGHBORS = 6;
35 [[nodiscard]] u8 start()
const {
39 [[nodiscard]] u8 end()
const {
43 [[nodiscard]]
const std::array<u8, MAX_NEIGHBORS> &next()
const {
47 [[nodiscard]]
const std::array<u8, MAX_NEIGHBORS> &prev()
const {
51 [[nodiscard]] s8 depth()
const {
55 [[nodiscard]] f32 oneOverCount()
const {
56 return m_oneOverCount;
61 const SData *m_rawData;
64 std::array<u8, MAX_NEIGHBORS>
m_prev;
65 std::array<u8, MAX_NEIGHBORS>
m_next;
79 [[nodiscard]] f32 lapProportion()
const;
A stream of data, abstracted to allow for continuous seeking.
f32 m_lapProportion
Minimum proportion of a lap a checkpath can be. Calculated as 1/(maxDepth+1).
std::array< u8, MAX_NEIGHBORS > m_prev
Indices of previous connected checkpaths.
void findDepth(s8 depth, const MapdataCheckPathAccessor &accessor)
Performs DFS to calculate m_depth for all subsequent checkpaths.
std::array< u8, MAX_NEIGHBORS > m_next
Indices of next connected checkpaths.
u8 m_size
Number of checkpoints in this checkpath.
u8 m_start
Index of the first checkpoint in this checkpath.
High-level handling for generic system operations, such as input reading, race configuration,...