A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
MapdataPointInfo.cc
1#include "MapdataPointInfo.hh"
2
3#include "game/system/CourseMap.hh"
4
5namespace System {
6
7MapdataPointInfo::MapdataPointInfo(const SData *data) : m_rawData(data) {
8 EGG::RamStream stream =
9 EGG::RamStream(data, sizeof(SData) + parse<u16>(data->pointCount) * sizeof(Point));
10 read(stream);
11}
12
13MapdataPointInfo::~MapdataPointInfo() {
14 delete m_points.data();
15}
16
17void MapdataPointInfo::read(EGG::RamStream &stream) {
18 u16 count = stream.read_u16();
19
20 m_points = std::span<Point>(new Point[count], count);
21
22 for (auto &setting : m_settings) {
23 setting = stream.read_u8();
24 }
25
26 for (auto &point : m_points) {
27 EGG::Vector3f pos;
28 pos.read(stream);
29
30 u16 settings[2];
31 settings[0] = stream.read_u16();
32 settings[1] = stream.read_u16();
33
34 point = Point(pos, {settings[0], settings[1]});
35 }
36}
37
39MapdataPointInfoAccessor::MapdataPointInfoAccessor(const MapSectionHeader *header)
40 : MapdataAccessorBase<MapdataPointInfo, MapdataPointInfo::SData>(header) {
41 init(reinterpret_cast<const MapdataPointInfo::SData *>(m_sectionHeader + 1),
42 parse<u16>(m_sectionHeader->count));
43}
44
45MapdataPointInfoAccessor::~MapdataPointInfoAccessor() = default;
46
47void MapdataPointInfoAccessor::init(const MapdataPointInfo::SData *start, u16 count) {
48 if (count != 0) {
49 m_entryCount = count;
50 m_entries = new MapdataPointInfo *[count];
51 }
52
53 uintptr_t data = reinterpret_cast<uintptr_t>(start);
54
55 for (u16 i = 0; i < count; ++i) {
56 m_entries[i] = new MapdataPointInfo(reinterpret_cast<MapdataPointInfo::SData *>(data));
57 data += m_entries[i]->pointCount() * sizeof(MapdataPointInfo::Point) +
58 offsetof(MapdataPointInfo::SData, MapdataPointInfo::SData::points);
59 }
60}
61
62} // namespace System
A stream of data stored in memory.
Definition Stream.hh:64
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5
A 3D float vector.
Definition Vector.hh:83
void read(Stream &stream)
Initializes a Vector3f by reading 12 bytes from the stream.
Definition Vector.cc:115