-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample01Plugin.cpp
126 lines (108 loc) · 3.08 KB
/
Example01Plugin.cpp
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* DISTRHO Plugin Framework (DPF)
* Copyright (C) 2012-2019 Filipe Coelho <[email protected]>
*
* 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 "DistrhoPlugin.hpp"
#include <string.h>
START_NAMESPACE_DISTRHO
class Example01Plugin : public Plugin
{
public:
enum ParameterIndex {
MUTE = 0,
PARAM_COUNT
};
Example01Plugin()
: Plugin(PARAM_COUNT,
0, // programCount
0) // stateCount
{
parameterValue[MUTE] = 0;
}
void initParameter(uint32_t index, Parameter& parameter)
{
switch (index) {
case MUTE: {
parameter.hints = kParameterIsBoolean|kParameterIsAutomable;
parameter.ranges.min = 0;
parameter.ranges.max = 1;
parameter.ranges.def = 0;
parameter.name = "Mute";
break;
}
}
parameter.symbol = parameter.name;
}
const char* getLabel() const
{
return "LDPF Example01";
}
const char* getMaker() const
{
return "Oliver Schmidt";
}
const char* getLicense() const
{
return "ISC";
}
uint32_t getVersion() const
{
return 0;
}
int64_t getUniqueId() const
{
return d_cconst('l', 'd', '0', '1');;
}
float getParameterValue(uint32_t index) const
{
return parameterValue[index];
}
void setParameterValue(uint32_t index, float value)
{
parameterValue[index] = value;
}
void initState(uint32_t index, String& stateKey, String& defaultStateValue)
{
}
void setState(const char* key, const char* value)
{
}
void initProgramName(uint32_t index, String& programName)
{
}
void loadProgram(uint32_t index)
{
}
String getState(const char* key) const
{
return String("");
}
void run(const float** inputs, float** outputs, uint32_t frames)
{
if (parameterValue[MUTE]) {
memset(outputs[0], 0, frames * sizeof(float));
memset(outputs[1], 0, frames * sizeof(float));
} else {
memcpy(outputs[0], inputs[0], frames * sizeof(float));
memcpy(outputs[1], inputs[1], frames * sizeof(float));
}
}
private:
float parameterValue[PARAM_COUNT];
};
Plugin* createPlugin()
{
return new Example01Plugin();
}
END_NAMESPACE_DISTRHO