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