A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
MapdataStageInfo.cc
1#include "MapdataStageInfo.hh"
2
3#include "game/system/CourseMap.hh"
4
5namespace System {
6
7MapdataStageInfo::MapdataStageInfo(const SData *data) : m_rawData(data) {
8 EGG::RamStream stream = EGG::RamStream(data, sizeof(SData));
9 read(stream);
10}
11
12void MapdataStageInfo::read(EGG::Stream & /*stream*/) {}
13
14MapdataStageInfoAccessor::MapdataStageInfoAccessor(const MapSectionHeader *header)
15 : MapdataAccessorBase<MapdataStageInfo, MapdataStageInfo::SData>(header) {
16 init(reinterpret_cast<const MapdataStageInfo::SData *>(m_sectionHeader + 1),
17 parse<u16>(m_sectionHeader->count));
18}
19
20MapdataStageInfoAccessor::~MapdataStageInfoAccessor() = default;
21
22} // namespace System
A stream of data stored in memory.
Definition Stream.hh:64
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