summaryrefslogtreecommitdiff
path: root/src/factories/mk64/DrivingBehaviour.h
blob: 57d84b01c29186b03e993409f994dd36b51157e9 (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
45
46
#pragma once

#include <factories/BaseFactory.h>

namespace MK64 {

    struct BhvRaw {
        int16_t		waypoint1;
        int16_t	waypoint2;
        int32_t		bhv;
    };

    class DrivingData : public IParsedData {
    public:
        std::vector<BhvRaw> mBhvs;

        explicit DrivingData(std::vector<BhvRaw> bhvs) : mBhvs(bhvs) {}
    };

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

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

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

    class DrivingBehaviourFactory : public BaseFactory {
    public:
        std::optional<std::shared_ptr<IParsedData>> parse(std::vector<uint8_t>& buffer, YAML::Node& data) override;
        std::optional<std::shared_ptr<IParsedData>> parse_modding(std::vector<uint8_t>& buffer, YAML::Node& data) override {
            return std::nullopt;
        }
        inline std::unordered_map<ExportType, std::shared_ptr<BaseExporter>> GetExporters() override {
            return {
                REGISTER(Code, DrivingBehaviourCodeExporter)
                REGISTER(Header, DrivingBehaviourHeaderExporter)
                REGISTER(Binary, DrivingBehaviourBinaryExporter)
            };
        }
    };
}