Definition at line 19 of file MapdataCheckPoint.hh.
◆ CheckArea
Enumerator |
---|
NormalCheckpoint | Only used for picking respawn position.
|
FinishLine | Triggers a lap change.
|
Definition at line 103 of file MapdataCheckPoint.hh.
◆ SectorOccupancy
Enumerator |
---|
InsideSector | Player is inside the given checkpoint group.
|
OutsideSector | Player is outside the given checkpoint group.
|
BetweenSides | Player is between sides of the checkpoint group but not between this checkpoint and next
|
Definition at line 31 of file MapdataCheckPoint.hh.
◆ MapdataCheckPoint()
System::MapdataCheckPoint::MapdataCheckPoint |
( |
const SData * | data | ) |
|
|
0x805154E4 |
◆ checkArea()
s8 System::MapdataCheckPoint::checkArea |
( |
| ) |
const |
|
inlinenodiscard |
◆ checkDistanceRatio()
|
nodiscardprivate0x80510BF0 |
Sets the distance ratio, which is the progress of traversal through the checkpoint quad.
- Parameters
-
distanceRatio | The distance ratio reference to set. |
- Returns
- Whether the distance ratio is in its valid range, [0, 1].
Definition at line 204 of file MapdataCheckPoint.cc.
◆ checkSector()
|
nodiscardprivate0x0x80510B84 |
- Returns
- Whether the player is between the two sides of the checkpoint quad.
Definition at line 187 of file MapdataCheckPoint.cc.
◆ checkSectorAndDistanceRatio() [1/2]
◆ checkSectorAndDistanceRatio() [2/2]
|
nodiscardprivate0x80510C74 |
◆ clearSearched()
void System::MapdataCheckPoint::clearSearched |
( |
| ) |
|
|
inline |
◆ getEntryOffsetExact()
Finds the offset between the two positions that enter the checkpoint.
This assumes the player is entering the checkpoint as intended, and not from the side. This function isn't in the base game, but it can be used to determine improvements to runs.
- Parameters
-
prevPos | The previous position, likely not located in the checkpoint. |
pos | The current position, likely located in the checkpoint. |
- Returns
- The exact offset that crosses into the checkpoint, in the range [0, 1000 / 59.94].
Definition at line 155 of file MapdataCheckPoint.cc.
◆ getEntryOffsetMs()
Finds the offset between the two positions that enter the checkpoint.
This assumes the player is entering the checkpoint as intended, and not from the side.
- Parameters
-
prevPos | The previous position, likely not located in the checkpoint. |
pos | The current position, likely located in the checkpoint. |
- Returns
- The earliest subdivision that crosses into the checkpoint, in the range [1, 17].
Definition at line 129 of file MapdataCheckPoint.cc.
◆ id()
u16 System::MapdataCheckPoint::id |
( |
| ) |
const |
|
inlinenodiscard |
◆ initCheckpointLinks()
Calculates m_nextPoints and m_prevPoints from m_nextPt and m_prevPt.
Also calculates the quadrilaterals for the next checkpoints, filling the fields of LinkedCheckpoint for each.
Definition at line 33 of file MapdataCheckPoint.cc.
◆ isFinishLine()
bool System::MapdataCheckPoint::isFinishLine |
( |
| ) |
const |
|
inlinenodiscard |
◆ isNormalCheckpoint()
bool System::MapdataCheckPoint::isNormalCheckpoint |
( |
| ) |
const |
|
inlinenodiscard |
◆ jugemIndex()
s8 System::MapdataCheckPoint::jugemIndex |
( |
| ) |
const |
|
inlinenodiscard |
◆ nextCount()
u16 System::MapdataCheckPoint::nextCount |
( |
| ) |
const |
|
inlinenodiscard |
◆ nextPoint()
◆ prevCount()
u16 System::MapdataCheckPoint::prevCount |
( |
| ) |
const |
|
inlinenodiscard |
◆ prevPoint()
◆ read()
void System::MapdataCheckPoint::read |
( |
EGG::Stream & | stream | ) |
|
◆ searched()
bool System::MapdataCheckPoint::searched |
( |
| ) |
const |
|
inlinenodiscard |
◆ setSearched()
void System::MapdataCheckPoint::setSearched |
( |
| ) |
|
|
inline |
◆ m_checkArea
s8 System::MapdataCheckPoint::m_checkArea |
|
private |
Either:
- a `NORMAL_CHECKPOINT` (-1) used to calulate respawns,
- a `FINISH_LINE` (0) which updates the lap count when crossed, or
- a "key checkpoint" (1-127) used to ensure racers travel around the entire course before proceeding to the next lap. the type value represents the index, i.e. racers must pass checkpoint with `m_type` 1, then 2, then 3 etc..
Definition at line 129 of file MapdataCheckPoint.hh.
◆ m_dir
◆ m_id
u16 System::MapdataCheckPoint::m_id |
|
private |
◆ m_jugemIndex
s8 System::MapdataCheckPoint::m_jugemIndex |
|
private |
Index of respawn point associated with this checkpoint. Players who die here will be respawned at this point.
Definition at line 121 of file MapdataCheckPoint.hh.
◆ m_left
◆ m_midpoint
◆ m_nextCount
u16 System::MapdataCheckPoint::m_nextCount |
|
private |
◆ m_nextPoints
std::array<LinkedCheckpoint, MAX_NEIGHBORS> System::MapdataCheckPoint::m_nextPoints |
|
private |
◆ m_nextPt
u8 System::MapdataCheckPoint::m_nextPt |
|
private |
◆ m_prevCount
u16 System::MapdataCheckPoint::m_prevCount |
|
private |
◆ m_prevPoints
std::array<MapdataCheckPoint *, MAX_NEIGHBORS> System::MapdataCheckPoint::m_prevPoints |
|
private |
◆ m_prevPt
u8 System::MapdataCheckPoint::m_prevPt |
|
private |
◆ m_rawData
const SData* System::MapdataCheckPoint::m_rawData |
|
private |
◆ m_right
◆ m_searched
bool System::MapdataCheckPoint::m_searched |
|
private |
◆ MAX_NEIGHBORS
size_t System::MapdataCheckPoint::MAX_NEIGHBORS = 6 |
|
staticconstexprprivate |