1#include "MapdataPointInfo.hh"
3#include "game/system/CourseMap.hh"
7MapdataPointInfo::MapdataPointInfo(
const SData *data) : m_rawData(data) {
9 EGG::RamStream(data,
sizeof(SData) + parse<u16>(data->pointCount) *
sizeof(Point));
13MapdataPointInfo::~MapdataPointInfo() {
14 delete m_points.data();
18 u16 count = stream.read_u16();
20 m_points = std::span<Point>(
new Point[count], count);
22 for (
auto &setting : m_settings) {
23 setting = stream.read_u8();
26 for (
auto &point : m_points) {
31 settings[0] = stream.read_u16();
32 settings[1] = stream.read_u16();
34 point = Point(pos, {settings[0], settings[1]});
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));
45MapdataPointInfoAccessor::~MapdataPointInfoAccessor() =
default;
47void MapdataPointInfoAccessor::init(
const MapdataPointInfo::SData *start,
u16 count) {
50 m_entries =
new MapdataPointInfo *[count];
53 uintptr_t data =
reinterpret_cast<uintptr_t
>(start);
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);
A stream of data stored in memory.
High-level handling for generic system operations, such as input reading, race configuration,...
void read(Stream &stream)
Initializes a Vector3f by reading 12 bytes from the stream.