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