summaryrefslogtreecommitdiff
path: root/src/factories/pm64/BackgroundFactory.h
blob: 099bafbde26b3b6d93499d34271a5c59365ba55f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "factories/BaseFactory.h"
#include "types/RawBuffer.h"

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

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

class PM64BackgroundFactory : 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(Header, PM64BackgroundHeaderExporter)
            REGISTER(Binary, PM64BackgroundBinaryExporter)
        };
    }
};