A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
MapdataStageInfo.hh
1#pragma once
2
3#include "game/system/map/MapdataAccessorBase.hh"
4
5#include <egg/util/Stream.hh>
6
7namespace System {
8
10public:
11 struct SData {
12 u8 _0[0x1 - 0x0];
13 u8 polePosition;
14 u8 translationMode;
15 u8 _3[0xc - 0x3];
16 };
17 STATIC_ASSERT(sizeof(SData) == 0xc);
18
19 MapdataStageInfo(const SData *data);
20
21 void read(EGG::Stream &stream);
22
23 [[nodiscard]] u8 polePosition() const {
24 return m_rawData->polePosition;
25 }
26
27 [[nodiscard]] u8 translationMode() const {
28 return m_rawData->translationMode;
29 }
30
31private:
32 const SData *m_rawData;
33};
34
36 : public MapdataAccessorBase<MapdataStageInfo, MapdataStageInfo::SData> {
37public:
40};
41
42} // namespace System
A stream of data, abstracted to allow for continuous seeking.
Definition Stream.hh:10
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5