summaryrefslogtreecommitdiff
path: root/src/factories/naudio/v1/EnvelopeFactory.cpp
blob: be8205db128e77ce78f9a80a20152b923134e3e6 (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
47
48
49
50
51
52
53
54
55
56
57
#include "EnvelopeFactory.h"
#include "utils/Decompressor.h"
#include "Companion.h"

ExportResult EnvelopeHeaderExporter::Export(std::ostream& write, std::shared_ptr<IParsedData> raw,
                                            std::string& entryName, YAML::Node& node, std::string* replacement) {
    const auto symbol = GetSafeNode(node, "symbol", entryName);

    if (Companion::Instance->IsOTRMode()) {
        write << "static const ALIGN_ASSET(2) char " << symbol << "[] = \"__OTR__" << (*replacement) << "\";\n\n";
        return std::nullopt;
    }

    write << "extern Envelope " << symbol << ";\n";

    return std::nullopt;
}

ExportResult EnvelopeCodeExporter::Export(std::ostream& write, std::shared_ptr<IParsedData> raw, std::string& entryName,
                                          YAML::Node& node, std::string* replacement) {
    return std::nullopt;
}

ExportResult EnvelopeBinaryExporter::Export(std::ostream& write, std::shared_ptr<IParsedData> raw,
                                            std::string& entryName, YAML::Node& node, std::string* replacement) {
    auto writer = LUS::BinaryWriter();
    auto data = std::static_pointer_cast<EnvelopeData>(raw);

    WriteHeader(writer, Torch::ResourceType::Envelope, 0);
    writer.Write((uint32_t)data->points.size());
    for (auto& point : data->points) {
        writer.Write(point.delay);
        writer.Write(point.arg);
    }

    writer.Finish(write);
    return std::nullopt;
}

std::optional<std::shared_ptr<IParsedData>> EnvelopeFactory::parse(std::vector<uint8_t>& buffer, YAML::Node& node) {
    auto offset = GetSafeNode<uint32_t>(node, "offset");
    auto reader = AudioContext::MakeReader(AudioTableType::FONT_TABLE, offset);

    std::vector<EnvelopePoint> temp;
    while (true) {
        int16_t delay = BSWAP16(reader.ReadInt16());
        int16_t arg = BSWAP16(reader.ReadInt16());

        temp.push_back({ delay, arg });

        if (1 <= (-delay) % (1 << 16) && (-delay) % (1 << 16) <= 3) {
            break;
        }
    }

    return std::make_shared<EnvelopeData>(temp);
}