summaryrefslogtreecommitdiff
path: root/distrho/src/DistrhoPluginAUexport.cpp
blob: 2c1f749ffcc9587a7263bfce6d133ba8994bdd38 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
 * DISTRHO Plugin Framework (DPF)
 * Copyright (C) 2012-2019 Filipe Coelho <falktx@falktx.com>
 *
 * Permission to use, copy, modify, and/or distribute this software for any purpose with
 * or without fee is hereby granted, provided that the above copyright notice and this
 * permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
 * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include "DistrhoPluginInternal.hpp"

#include <fstream>
#include <iostream>

// -----------------------------------------------------------------------

void au_generate_r(const char* const basename)
{
    USE_NAMESPACE_DISTRHO

    // Dummy plugin to get data from
    d_lastBufferSize = 512;
    d_lastSampleRate = 44100.0;
    PluginExporter plugin(nullptr, nullptr);
    d_lastBufferSize = 0;
    d_lastSampleRate = 0.0;

    String filename(basename);
    if (! filename.endsWith("/"))
        filename += "/";
    filename += "DistrhoPluginInfo.r";

    // ---------------------------------------------

    std::cout << "Writing DistrhoPluginInfo.r..."; std::cout.flush();
    std::fstream rFile(filename, std::ios::out);

    // full name
    {
        String fullname(plugin.getMaker());

        if (fullname.isEmpty())
            fullname = "DPF";

        fullname += ": ";
        fullname += plugin.getName();

        rFile << "#define DISTRHO_PLUGIN_FULL_NAME \"" + fullname + "\"\n";
    }

    // description
    {
        String description(plugin.getDescription());

        if (description.isNotEmpty())
        {
            description.replace('\n', ' ').replace('"', '\'');
        }
        else
        {
            description = plugin.getName();
            description += " AU";
        }

        rFile << "#define DISTRHO_PLUGIN_DESCRIPTION \"" + description + "\"\n";
    }

#ifndef DEBUG
    // version
    {
        String version(plugin.getVersion());

        if (version.isEmpty())
            version = "0";

        rFile << "#define DISTRHO_PLUGIN_VERSION " + version + "\n";
    }
#else
    rFile << "#define DISTRHO_PLUGIN_VERSION 0xFFFFFFFF\n";
#endif

    rFile.close();
    std::cout << " done!" << std::endl;
}

// -----------------------------------------------------------------------

int main(int argc, char* argv[])
{
    if (argc != 2)
    {
        std::cout << "Single argument (output path) required!" << std::endl;
        return 1;
    }

    au_generate_r(argv[1]);
    return 0;
}

// -----------------------------------------------------------------------

#include "DistrhoPlugin.cpp"

// -----------------------------------------------------------------------