summaryrefslogtreecommitdiff
path: root/src/factories/mk64/WaypointFactory.h
blob: 1268e6ceee0082cf0e2cb250655bdf359f7d3d3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once

#include "../BaseFactory.h"

namespace MK64 {

    struct TrackWaypoint {
        int16_t posX;
        int16_t posY;
        int16_t posZ;
        uint16_t trackSegment;
    };

    class WaypointData : public IParsedData {
    public:
        std::vector<TrackWaypoint> mWaypoints;

        explicit WaypointData(std::vector<TrackWaypoint> waypoints) : mWaypoints(waypoints) {}
    };

    class WaypointHeaderExporter : public BaseExporter {
        void Export(std::ostream& write, std::shared_ptr<IParsedData> data, std::string& entryName, YAML::Node& node, std::string* replacement) override;
    };

    class WaypointBinaryExporter : public BaseExporter {
        void Export(std::ostream& write, std::shared_ptr<IParsedData> data, std::string& entryName, YAML::Node& node, std::string* replacement) override;
    };

    class WaypointCodeExporter : public BaseExporter {
        void Export(std::ostream& write, std::shared_ptr<IParsedData> data, std::string& entryName, YAML::Node& node, std::string* replacement) override;
    };

    class WaypointFactory : public BaseFactory {
    public:
        std::optional<std::shared_ptr<IParsedData>> parse(std::vector<uint8_t>& buffer, YAML::Node& data) override;
        inline std::unordered_map<ExportType, std::shared_ptr<BaseExporter>> GetExporters() override {
            return {
                REGISTER(Code, WaypointCodeExporter)
                REGISTER(Header, WaypointHeaderExporter)
                REGISTER(Binary, WaypointBinaryExporter)
            };
        }
    };
}