-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathParameters.h
284 lines (248 loc) · 9.37 KB
/
Parameters.h
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
Copyright (c) 2024 Ghost Note Engineering Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#pragma once
#include <math.h>
#include <stdio.h>
#include <string.h>
#include "DSP/Utils.h"
namespace Cloudseed
{
namespace Parameter
{
const int Interpolation = 0;
const int LowCutEnabled = 1;
const int HighCutEnabled = 2;
const int InputMix = 3;
const int LowCut = 4;
const int HighCut = 5;
const int DryOut = 6;
const int EarlyOut = 7;
const int LateOut = 8;
const int TapEnabled = 9;
const int TapCount = 10;
const int TapDecay = 11;
const int TapPredelay = 12;
const int TapLength = 13;
const int EarlyDiffuseEnabled = 14;
const int EarlyDiffuseCount = 15;
const int EarlyDiffuseDelay = 16;
const int EarlyDiffuseModAmount = 17;
const int EarlyDiffuseFeedback = 18;
const int EarlyDiffuseModRate = 19;
const int LateMode = 20;
const int LateLineCount = 21;
const int LateDiffuseEnabled = 22;
const int LateDiffuseCount = 23;
const int LateLineSize = 24;
const int LateLineModAmount = 25;
const int LateDiffuseDelay = 26;
const int LateDiffuseModAmount = 27;
const int LateLineDecay = 28;
const int LateLineModRate = 29;
const int LateDiffuseFeedback = 30;
const int LateDiffuseModRate = 31;
const int EqLowShelfEnabled = 32;
const int EqHighShelfEnabled = 33;
const int EqLowpassEnabled = 34;
const int EqLowFreq = 35;
const int EqHighFreq = 36;
const int EqCutoff = 37;
const int EqLowGain = 38;
const int EqHighGain = 39;
const int EqCrossSeed = 40;
const int SeedTap = 41;
const int SeedDiffusion = 42;
const int SeedDelay = 43;
const int SeedPostDiffusion = 44;
const int COUNT = 45;
};
extern const char* ParameterLabel[Parameter::COUNT];
inline double ScaleParam(double val, int index)
{
switch (index)
{
case Parameter::Interpolation:
case Parameter::LowCutEnabled:
case Parameter::HighCutEnabled:
case Parameter::TapEnabled:
case Parameter::LateDiffuseEnabled:
case Parameter::EqLowShelfEnabled:
case Parameter::EqHighShelfEnabled:
case Parameter::EqLowpassEnabled:
case Parameter::EarlyDiffuseEnabled:
return val < 0.5 ? 0.0 : 1.0;
case Parameter::InputMix:
case Parameter::EarlyDiffuseFeedback:
case Parameter::TapDecay:
case Parameter::LateDiffuseFeedback:
case Parameter::EqCrossSeed:
return val;
case Parameter::SeedTap:
case Parameter::SeedDiffusion:
case Parameter::SeedDelay:
case Parameter::SeedPostDiffusion:
return (int)floor(val * 999.999);
case Parameter::LowCut:
return 20 + Utils::Resp4oct(val) * 980;
case Parameter::HighCut:
return 400 + Utils::Resp4oct(val) * 19600;
case Parameter::DryOut:
case Parameter::EarlyOut:
case Parameter::LateOut:
return -30 + val * 30;
case Parameter::TapCount:
return (int)(1 + val * 255);
case Parameter::TapPredelay:
return Utils::Resp1dec(val) * 500;
case Parameter::TapLength:
return 10 + val * 990;
case Parameter::EarlyDiffuseCount:
return (int)(1 + val * 11.999);
case Parameter::EarlyDiffuseDelay:
return 10 + val * 90;
case Parameter::EarlyDiffuseModAmount:
return val * 2.5;
case Parameter::EarlyDiffuseModRate:
return Utils::Resp2dec(val) * 5;
case Parameter::LateMode:
return val < 0.5 ? 0.0 : 1.0;
case Parameter::LateLineCount:
return (int)(1 + val * 11.999);
case Parameter::LateDiffuseCount:
return (int)(1 + val * 7.999);
case Parameter::LateLineSize:
return 20 + Utils::Resp2dec(val) * 980;
case Parameter::LateLineModAmount:
return val * 2.5;
case Parameter::LateDiffuseDelay:
return 10 + val * 90;
case Parameter::LateDiffuseModAmount:
return val * 2.5;
case Parameter::LateLineDecay:
return 0.05 + Utils::Resp3dec(val) * 59.95;
case Parameter::LateLineModRate:
return Utils::Resp2dec(val) * 5;
case Parameter::LateDiffuseModRate:
return Utils::Resp2dec(val) * 5;
case Parameter::EqLowFreq:
return 20 + Utils::Resp3oct(val) * 980;
case Parameter::EqHighFreq:
return 400 + Utils::Resp4oct(val) * 19600;
case Parameter::EqCutoff:
return 400 + Utils::Resp4oct(val) * 19600;
case Parameter::EqLowGain:
return -20 + val * 20;
case Parameter::EqHighGain:
return -20 + val * 20;
}
return 0;
}
inline void FormatParameter(float val, int maxLen, int paramId, char* buffer)
{
double s = ScaleParam(val, paramId);
switch (paramId)
{
case Parameter::Interpolation:
case Parameter::HighCutEnabled:
case Parameter::LowCutEnabled:
case Parameter::TapEnabled:
case Parameter::LateDiffuseEnabled:
case Parameter::EqLowShelfEnabled:
case Parameter::EqHighShelfEnabled:
case Parameter::EqLowpassEnabled:
case Parameter::EarlyDiffuseEnabled:
if (ScaleParam(val, paramId) == 1)
strcpy_s(buffer, MAX_STR_SIZE, "ENABLED");
else
strcpy_s(buffer, MAX_STR_SIZE, "DISABLED");
break;
case Parameter::InputMix:
case Parameter::EarlyDiffuseFeedback:
case Parameter::TapDecay:
case Parameter::LateDiffuseFeedback:
case Parameter::EqCrossSeed:
snprintf(buffer, MAX_STR_SIZE, "%d%%", (int)(s * 100));
break;
case Parameter::SeedTap:
case Parameter::SeedDiffusion:
case Parameter::SeedDelay:
case Parameter::SeedPostDiffusion:
snprintf(buffer, MAX_STR_SIZE, "%03d", (int)s);
break;
case Parameter::LowCut:
case Parameter::HighCut:
case Parameter::EqLowFreq:
case Parameter::EqHighFreq:
case Parameter::EqCutoff:
snprintf(buffer, MAX_STR_SIZE, "%d Hz", (int)s);
break;
case Parameter::DryOut:
case Parameter::EarlyOut:
case Parameter::LateOut:
if (s <= -30)
strcpy_s(buffer, MAX_STR_SIZE, "MUTED");
else
snprintf(buffer, MAX_STR_SIZE, "%.1f dB", s);
break;
case Parameter::TapCount:
case Parameter::EarlyDiffuseCount:
case Parameter::LateLineCount:
case Parameter::LateDiffuseCount:
snprintf(buffer, MAX_STR_SIZE, "%d", (int)s);
break;
case Parameter::TapPredelay:
case Parameter::TapLength:
case Parameter::EarlyDiffuseDelay:
case Parameter::LateLineSize:
case Parameter::LateDiffuseDelay:
snprintf(buffer, MAX_STR_SIZE, "%d ms", (int)s);
break;
case Parameter::LateLineDecay:
if (s < 1)
snprintf(buffer, MAX_STR_SIZE, "%d ms", (int)(s * 1000));
else if (s < 10)
snprintf(buffer, MAX_STR_SIZE, "%.2f sec", s);
else
snprintf(buffer, MAX_STR_SIZE, "%.1f sec", s);
break;
case Parameter::LateMode:
if (s == 1)
strcpy_s(buffer, MAX_STR_SIZE, "POST");
else
strcpy_s(buffer, MAX_STR_SIZE, "PRE");
break;
case Parameter::EarlyDiffuseModAmount:
case Parameter::LateLineModAmount:
case Parameter::LateDiffuseModAmount:
snprintf(buffer, MAX_STR_SIZE, "%d%%", (int)(s * 100));
break;
case Parameter::EarlyDiffuseModRate:
case Parameter::LateLineModRate:
case Parameter::LateDiffuseModRate:
snprintf(buffer, MAX_STR_SIZE, "%.2f Hz", s);
break;
case Parameter::EqLowGain:
case Parameter::EqHighGain:
snprintf(buffer, MAX_STR_SIZE, "%.1f dB", s);
break;
default:
snprintf(buffer, MAX_STR_SIZE, "%.2f", s);
}
}
}