-
Notifications
You must be signed in to change notification settings - Fork 10
/
parameter-proxy.hh
201 lines (166 loc) · 7.65 KB
/
parameter-proxy.hh
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#pragma once
#include <QColor>
#include <QObject>
#include <algorithm>
#include <clap/clap.h>
namespace clap {
class Gui;
class ParameterProxy : public QObject {
using super = QObject;
Q_OBJECT
Q_PROPERTY(uint32_t id READ getId)
Q_PROPERTY(QString name READ getName NOTIFY nameChanged)
Q_PROPERTY(QString module READ getModule NOTIFY moduleChanged)
Q_PROPERTY(double value READ getValue WRITE setValueFromUI NOTIFY valueChanged)
Q_PROPERTY(double normalizedValue READ getNormalizedValue WRITE setNormalizedValueFromUI
NOTIFY valueChanged)
Q_PROPERTY(double modulation READ getModulation NOTIFY modulationChanged)
Q_PROPERTY(double normalizedModulation READ getNormalizedModulation NOTIFY modulationChanged)
Q_PROPERTY(double finalValue READ getFinalValue NOTIFY finalValueChanged)
Q_PROPERTY(double normalizedFinalValue READ getNormalizedFinalValue NOTIFY finalValueChanged)
Q_PROPERTY(double minValue READ getMinValue NOTIFY minValueChanged)
Q_PROPERTY(double maxValue READ getMaxValue NOTIFY maxValueChanged)
Q_PROPERTY(double defaultValue READ getDefaultValue NOTIFY defaultValueChanged)
Q_PROPERTY(bool isAdjusting READ isAdjusting WRITE setIsAdjusting NOTIFY isAdjustingChanged)
Q_PROPERTY(bool isHovered READ isHovered WRITE setIsHovered NOTIFY isHoveredChanged)
Q_PROPERTY(
bool hasMappingIndication READ hasMappingIndication NOTIFY hasMappingIndicationChanged)
Q_PROPERTY(QColor mappingIndicationColor READ mappingIndicationColor NOTIFY
mappingIndicationColorChanged)
Q_PROPERTY(QString mappingIndicationLabel READ mappingIndicationLabel NOTIFY
mappingIndicationLabelChanged)
Q_PROPERTY(QString mappingIndicationDescription READ mappingIndicationDescription NOTIFY
mappingIndicationDescriptionChanged)
Q_PROPERTY(uint32_t automationIndicationState READ automationIndicationState NOTIFY
automationIndicationStateChanged)
Q_PROPERTY(QColor automationIndicationColor READ automationIndicationColor NOTIFY
automationIndicationColorChanged)
public:
explicit ParameterProxy(Gui &client, const clap_param_info &info);
explicit ParameterProxy(Gui &client, clap_id param_id);
void redefine(const clap_param_info &info);
uint32_t getId() const { return _id; }
const QString &getModule() const { return _module; }
const QString &getName() const { return _name; }
double getValue() const { return _value; }
void setValueFromUI(double value);
void setValueFromPlugin(double value);
double getNormalizedValue() const { return normalize(getValue()); }
void setNormalizedValueFromUI(double value) { setValueFromUI(denormalize(value)); }
double getModulation() const { return _modulation; }
void setModulationFromPlugin(double mod);
double getNormalizedModulation() const { return normalize(getModulation()); }
double getFinalValue() const { return clip(_value + _modulation); }
double getNormalizedFinalValue() const { return normalize(getFinalValue()); }
bool isAdjusting() const { return _isAdjusting; }
void setIsAdjusting(bool isAdjusting);
double getMinValue() const { return _minValue; }
void setMinValueFromPlugin(double minValue);
double getMaxValue() const { return _maxValue; }
void setMaxValueFromPlugin(double maxValue);
double getDefaultValue() const { return _defaultValue; }
void setDefaultValueFromPlugin(double defaultValue);
double clip(double v) const {
return std::min<double>(_maxValue, std::max<double>(_minValue, v));
}
static double clipNormalized(double v) {
return std::min<double>(1., std::max<double>(0., v));
}
double normalize(double value) const {
double delta = _maxValue - _minValue;
return delta != 0 ? ((value - _minValue) / delta) : 0;
}
double denormalize(double value) const {
double delta = _maxValue - _minValue;
return _minValue + value * delta;
}
Q_INVOKABLE void setToDefault();
bool isHovered() const { return _isHovered; }
void setIsHovered(bool value);
bool hasMappingIndication() const noexcept { return _hasMappingIndication; }
const QColor &mappingIndicationColor() const noexcept { return _mappingIndicationColor; }
void setMappingIndication(clap_color color, const char *label, const char *description) {
const auto c = QColor::fromRgb(color.red, color.green, color.blue, color.alpha);
if (_mappingIndicationColor != c) {
_mappingIndicationColor = c;
mappingIndicationColorChanged();
}
if (_mappingIndicationLabel.compare(label)) {
_mappingIndicationLabel = label;
mappingIndicationLabelChanged();
}
if (_mappingIndicationDescription.compare(description)) {
_mappingIndicationDescription = description;
mappingIndicationDescriptionChanged();
}
if (!_hasMappingIndication) {
_hasMappingIndication = true;
hasMappingIndicationChanged();
}
}
void clearMappingIndication() {
if (!_hasMappingIndication)
return;
_hasMappingIndication = false;
_mappingIndicationLabel.clear();
_mappingIndicationDescription.clear();
mappingIndicationLabelChanged();
mappingIndicationDescriptionChanged();
hasMappingIndicationChanged();
}
const QString &mappingIndicationLabel() const noexcept { return _mappingIndicationLabel; }
const QString &mappingIndicationDescription() const noexcept {
return _mappingIndicationDescription;
}
const QColor &automationIndicationColor() const noexcept {
return _automationIndicationColor;
}
uint32_t automationIndicationState() const noexcept { return _automationIndicationState; }
void setAutomationIndication(uint32_t automationState, clap_color color) {
const auto c = QColor::fromRgb(color.red, color.green, color.blue, color.alpha);
if (c != _automationIndicationColor) {
_automationIndicationColor = c;
automationIndicationColorChanged();
}
if (_automationIndicationState != automationState) {
_automationIndicationState = automationState;
automationIndicationStateChanged();
}
}
signals:
void nameChanged();
void moduleChanged();
void valueChanged();
void modulationChanged();
void finalValueChanged();
void minValueChanged();
void maxValueChanged();
void defaultValueChanged();
void isHoveredChanged();
void isAdjustingChanged();
void hasMappingIndicationChanged();
void mappingIndicationColorChanged();
void mappingIndicationLabelChanged();
void mappingIndicationDescriptionChanged();
void automationIndicationStateChanged();
void automationIndicationColorChanged();
private:
Gui &_client;
const uint32_t _id;
QString _name;
QString _module;
double _value = 0;
double _modulation = 0;
double _minValue = 0;
double _maxValue = 0;
double _defaultValue = 0;
bool _isAdjusting = false;
bool _isHovered = false;
bool _hasMappingIndication = false;
QColor _mappingIndicationColor;
QString _mappingIndicationLabel;
QString _mappingIndicationDescription;
uint32_t _automationIndicationState = 0;
QColor _automationIndicationColor;
};
} // namespace clap