summaryrefslogtreecommitdiff
path: root/src/factories/sm64/TextFactory.h
blob: e7840ac704a511f0e2744f59e0c2bf2ae800b76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

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

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

class TextFactory : 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(Binary, TextBinaryExporter) };
    }
};
};