1#include "game/system/map/MapdataCheckPath.hh"
6MapdataCheckPath::MapdataCheckPath(
const SData *data) : m_rawData(data), m_depth(-1) {
9 m_oneOverCount = 1.0f / m_size;
13 m_start = stream.read_u8();
14 m_size = stream.read_u8();
15 for (
auto &prev : m_prev) {
16 prev = stream.read_u8();
19 for (
auto &next : m_next) {
20 next = stream.read_u8();
34 for (
auto &nextID : m_next) {
39 accessor.get(nextID)->
findDepth(depth + 1, accessor);
44MapdataCheckPathAccessor::MapdataCheckPathAccessor(
const MapSectionHeader *header)
47 parse<u16>(m_sectionHeader->count));
49 if (m_entryCount == 0) {
55 get(0)->findDepth(0, *
this);
57 for (
size_t i = 0; i < size(); ++i) {
58 maxDepth = std::max(maxDepth, get(i)->depth());
61 m_lapProportion = 1.0f / (maxDepth + 1.0f);
64MapdataCheckPathAccessor::~MapdataCheckPathAccessor() =
default;
67MapdataCheckPath *MapdataCheckPathAccessor::findCheckpathForCheckpoint(
u16 checkpointId)
const {
68 for (
size_t i = 0; i < size(); ++i) {
69 MapdataCheckPath *checkpath = get(i);
70 if (checkpath->isPointInPath(checkpointId)) {
78f32 MapdataCheckPathAccessor::lapProportion()
const {
A stream of data stored in memory.
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).
void findDepth(s8 depth, const MapdataCheckPathAccessor &accessor)
Performs DFS to calculate m_depth for all subsequent checkpaths.
High-level handling for generic system operations, such as input reading, race configuration,...