This repository was archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCustomControls.h
More file actions
485 lines (407 loc) · 11.2 KB
/
CustomControls.h
File metadata and controls
485 lines (407 loc) · 11.2 KB
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
#ifndef CUSTOM_CONTROLS_H
#define CUSTOM_CONTROLS_H
#include <valarray>
#include <cairo.h>
#include "IControl.h"
#include "DSP/DSP.h"
#include "DSP/EnvelopeFollower.h"
class IKnobMultiControlText : public IKnobMultiControl
{
private:
IRECT mTextRECT, mImgRECT;
IBitmap mBitmap;
bool mShowParamLabel;
public:
IKnobMultiControlText (IPlugBase* pPlug, int x, int y, int paramIdx, IBitmap* pBitmap, IText* pText,
bool showParamLabel = true, int offset = 0);
~IKnobMultiControlText ();
bool Draw (IGraphics* pGraphics);
void OnMouseDown (int x, int y, IMouseMod* pMod);
void OnMouseDblClick (int x, int y, IMouseMod* pMod);
void setCaptionOffset (int offset);
};
/**
* An IKnobMultiControl with mouse snapping functionality for use as a fader.
*
*/
class IFaderControlText : public IKnobMultiControl
{
private:
IRECT mTextRECT, mImgRECT;
IBitmap mBitmap;
bool mShowParamLabel;
public:
IFaderControlText (IPlugBase* pPlug, int x, int y, int paramIdx, IBitmap* pBitmap, IText* pText,
bool showParamLabel = true, int offset = 0);
~IFaderControlText ();
bool Draw (IGraphics* pGraphics);
void OnMouseDown (int x, int y, IMouseMod* pMod);
void OnMouseDblClick (int x, int y, IMouseMod* pMod);
void OnMouseDrag (int x, int y, int dX, int dY, IMouseMod* pMod);
void SnapToMouse (int x, int y);
void setCaptionOffset (int offset);
};
using std::valarray;
/**
* A struct for storing color data for use with Cairo
* Can be initialized with a pointer to an IColor
*/
struct CColor
{
public:
double A, R, G, B;
/**
* Constructor
* @param ic A pointer to an IColor
*/
CColor (IColor* ic)
{
A = ic->A / 255.;
R = ic->R / 255.;
G = ic->G / 255.;
B = ic->B / 255.;
}
/**
* Constructor
* @param a Alpha value in range [0,1]
* @param r Red value in range [0,1]
* @param g Green value in range [0,1]
* @param b Blue value in range [0,1]
*/
CColor (double a = 1., double r = 0., double g = 0., double b = 0.)
{
A = a;
R = r;
G = g;
B = b;
Clamp ();
}
bool operator== (const CColor& rhs)
{
return (rhs.A == A && rhs.R == R && rhs.G == G && rhs.B == B);
}
bool operator!= (const CColor& rhs)
{
return !operator== (rhs);
}
bool Empty () const
{
return A == 0 && R == 0 && G == 0 && B == 0;
}
void Clamp ()
{
A = IPMIN (A, 1.);
R = IPMIN (R, 1.);
G = IPMIN (G, 1.);
B = IPMIN (B, 1.);
}
void setFromIColor (IColor* ic)
{
A = ic->A / 255.;
R = ic->R / 255.;
G = ic->G / 255.;
B = ic->B / 255.;
}
};
/**
* An IControl that plots a set of data points using Cairo
*/
class ICairoPlotControl : public IControl
{
public:
/**
Antialiasing quality options
*/
enum AAQuality
{
kNone,
kFast,
kGood,
kBest
};
ICairoPlotControl (IPlugBase* pPlug, IRECT pR, int paramIdx, IColor* fillColor, IColor* lineColor,
bool fillEnable = true);
~ICairoPlotControl ();
/**
* Set whether or not a fill will be drawn under the plot points
*
* @param b True=Enabled, False=Disabled
*/
void setFillEnable (bool b);
/**
* Set the color of the plot line
*
* @param color A Pointer to an IColor
*/
void setLineColor (IColor* color);
/**
* Set the color of the fill
*
* @param color A pointer to an IColor
*/
void setFillColor (IColor* color);
/**
* Set antialiasing quality
*
* @see AAQualtiy
* @param quality An int in range [0,4]
*/
void setAAquality (int quality);
/**
* Set the line weight of the plot
*
* @param w Line weight in pixels
*/
void setLineWeight (double w);
/**
* Set the Y-axis range
*
* @param range The Y-axis range
*/
void setRange (double range);
/*
* Plot a set of values
* Points will be evenly spaced along the horizontal axis
*
* @param vals Pointer to a valarray of doubles to be plotted
* @param normalize If true, values will be scaled so that the max value is at the top of the plot. Default = false
*/
void plotVals (valarray<double>* vals, bool normalize = false);
/**
* Draw the plot. To be called by IGraphics.
*
* @param pGraphics Pointer to IGraphics
*
* @return True if drawn
*/
bool Draw (IGraphics* pGraphics);
// Accessors//
CColor getColorFill ();
CColor getColorLine ();
bool getFill ();
int getWidth ();
int getHeight ();
double getRange ();
protected:
CColor mColorFill;
CColor mColorLine;
bool mFill;
int mWidth, mHeight;
double mRange, mLineWeight;
valarray<double>* mVals;
cairo_surface_t* surface;
cairo_t* cr;
bool mRetina;
/**
* Scale a value from range [inMin, inMax] to [outMin, outMax]
*
* @param inValue Value to be scaled
* @param inMin Min of input range
* @param inMax Max of input range
* @param outMin Min of output range
* @param outMax Max of output range
*
* @return Scaled value
*/
inline double scaleValue (double inValue, double inMin, double inMax, double outMin, double outMax);
inline double percentToCoordinates (double value);
};
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class ILevelPlotControl : public ICairoPlotControl
{
public:
/**
* Resolution settings, determines number of data points to be plotted
* kLowRes -> mRECT.W() / 8.
* kMidRes -> mRECT.W() / 4.
* kHighRes -> mRECT.W() / 2.
* kMaxRes -> mRECT.W()
*/
enum kResolution
{
kLowRes,
kMidRes,
kHighRes,
kMaxRes
};
/**
* Y-axis range settings. Determines min value of Y-axis
*/
enum kYRange
{
k16dB,
k32dB,
k48dB
};
/**
* Constructor
*
* @param pPlug Pointer to IPlugBase
* @param pR IRECT for the plot
* @param fillColor Pointer to an IColor for plot fill
* @param lineColor Pointer to an IColor for plot line
* @param timeScale X-Axis range in seconds (Default = 5)
* @param paramIdx Parameter index for IControl (Default = -1)
*/
ILevelPlotControl (IPlugBase* pPlug, IRECT pR, IColor* fillColor, IColor* lineColor, double timeScale = 5.,
bool fillEnable = true, int paramIdx = -1);
~ILevelPlotControl ();
/**
* If enabled, fill will be drawn above line instead of below
*
* @param rev True = reverse fill
*/
void setReverseFill (bool rev);
/**
* Set the horizontal resolution of the plot (number of points to be plotted)
*
* @see kResolution
* @param res Resolution value in range [0,3]
*/
void setResolution (int res);
/**
* Set the minimum value of the Y-Axis
*
* @see kYRange
* @param yRangeDB Range value
*/
void setYRange (int yRangeDB);
/**
* Set whether or not the plot line will be drawn
*
* @param stroke True = enabled
*/
void setStroke (bool stroke);
/**
* If true, plot fill will be a vertical, linear gradient from mColorFill to transparent
*
* @param grad True = gradient fill enabled
*/
void setGradientFill (bool grad);
/**
* Takes a sample of audio to be added to the plot
* For a smooth plot, sample should be processed by an envelope follower
* @param sample A sample of audio
*/
void process (double sample);
/**
* Draws the plot
*
* @param pGraphics Pointer to IGraphics
*
* @return True if drawn
*/
bool Draw (IGraphics* pGraphics);
protected:
double mTimeScale;
int mBufferLength, mXRes, mRes, mSpacing, mYRange, mHeadroom;
valarray<double>*mBuffer, *mDrawVals;
bool mStroke, mReverseFill, mGradientFill;
};
class IGRPlotControl : public ICairoPlotControl
{
public:
enum kResolution
{
kLowRes,
kMidRes,
kHighRes,
kMaxRes
};
enum kYRange
{
k16dB,
k32dB,
k48dB
};
IGRPlotControl (IPlugBase* pPlug, IRECT pR, int paramIdx, IColor* preFillColor, IColor* postFillColor,
IColor* postLineColor, IColor* GRFillColor, IColor* GRLineColor, double timeScale = 5.);
~IGRPlotControl ();
void setResolution (int res);
void setYRange (int yRangeDB);
void setGradientFill (bool enabled);
void process (double sampleIn, double sampleOut, double sampleGR);
bool Draw (IGraphics* pGraphics);
protected:
double mTimeScale, sr;
int mBufferLength, mXRes, mSpacing, mYRange, mHeadroom, mRes;
valarray<double>*mBufferPre, *mBufferPost, *mBufferGR, *mDrawValsPre, *mDrawValsPost, *mDrawValsGR;
bool mGradientFill;
CColor mPreFillColor, mGRLineColor, mGRFillColor;
};
/**
* An ICairoPlotControl class for plotting response curve of a compressor
* Designed to be overlayed on an ILevelPlotControl
*
* @see compressor
* @see ICairoPlotControl
* @see ILevelPlotControl
*/
class ICompressorPlotControl : public ICairoPlotControl
{
public:
/**
* Constructor
*
* @param pPlug Pointer to IPlugBase
* @param pR IRECT
* @param lineColor Pointer to an IColor
* @param fillColor Pointer to an IColor
* @param comp Pointer to a compressor
* @param paramIdx Parameter index (Default = -1)
*/
ICompressorPlotControl (IPlugBase* pPlug, IRECT pR, IColor* lineColor, IColor* fillColor, compressor* comp,
int paramIdx = -1);
/**
* Update the compressor response curve. Call when compressor settings are changed.
*/
void calc ();
/**
* Draw the plot
*
* @param pGraphics Pointer to IGraphics
*
* @return True if drawn
*/
bool Draw (IGraphics* pGraphics);
private:
double mHeadroom;
/**
* Coordinates of lower bound of knee
*/
double x1, y1;
/**
* Coordinates of control point for knee bezier curve
*/
double xCP, yCP;
/**
* Coordinates of upper bound of knee
*/
double x2, y2;
/**
* Coordinates where response curve exits mRECT
*/
double x3, y3;
int mYRange;
compressor* mComp;
};
/**
* An ICairoPlotControl class for plotting the threshold of a compressor
* Designed to be overlayed on an ILevelPlotControl and ICompressorControl
*
* @see compressor
* @see ICairoPlotControl
* @see ILevelPlotControl
* @see ICompressorControl
*/
class IThresholdPlotControl : public ICairoPlotControl
{
public:
IThresholdPlotControl (IPlugBase* pPlug, IRECT pR, int paramIdx, IColor* lineColor, compressor* comp);
bool Draw (IGraphics* pGraphics);
private:
int mYRange;
double mHeadroom;
compressor* mComp;
};
#endif //CUSTOM_CONTROLS_H