1
1
#include " VAlgorithm.h"
2
2
3
3
// #define NDEBUG // Disable assert().
4
+ #include < algorithm>
4
5
#include < cassert>
5
6
6
7
#ifdef VSS_WINDOWS
19
20
// Instances of algorithms.
20
21
VAlgorithmList VAlgorithm::Generators;
21
22
22
- VAlgorithm::VAlgorithm (void ) :
23
+ VAlgorithm::VAlgorithm () :
23
24
mute(false ),
24
25
pause(false ),
25
26
nchan(1 ),
@@ -75,19 +76,16 @@ VAlgorithm::VAlgorithm(void) :
75
76
hpf_d.setHiAllLopassGain (1 ., 0 ., 0 .);
76
77
}
77
78
78
- VAlgorithm::~VAlgorithm ()
79
- {
79
+ VAlgorithm::~VAlgorithm () {
80
80
// remove the dead generator from the list
81
81
Generators.erase (position);
82
82
}
83
83
84
- void VAlgorithm::invertAmp (int fInvert )
85
- {
84
+ void VAlgorithm::invertAmp (int fInvert ) {
86
85
fInvertAmp = fInvert ;
87
86
}
88
87
89
- void VAlgorithm::setAmp (float a, float t)
90
- {
88
+ void VAlgorithm::setAmp (float a, float t) {
91
89
if (!fLinearEnv )
92
90
{
93
91
setGain (dBFromScalar (a), t);
@@ -111,9 +109,7 @@ void VAlgorithm::setAmp(float a, float t)
111
109
}
112
110
}
113
111
114
- void
115
- VAlgorithm::setGain (float a, float t)
116
- {
112
+ void VAlgorithm::setGain (float a, float t) {
117
113
if (fLinearEnv )
118
114
{
119
115
setAmp (ScalarFromdB (a), t);
@@ -137,8 +133,7 @@ VAlgorithm::setGain(float a, float t)
137
133
}
138
134
}
139
135
140
- void VAlgorithm::scaleAmp (float a, float t)
141
- {
136
+ void VAlgorithm::scaleAmp (float a, float t) {
142
137
if (!fLinearEnv )
143
138
{
144
139
scaleGain (dBFromScalar (a), t);
@@ -160,9 +155,7 @@ void VAlgorithm::scaleAmp(float a, float t)
160
155
}
161
156
}
162
157
163
- void
164
- VAlgorithm::scaleGain (float a, float t)
165
- {
158
+ void VAlgorithm::scaleGain (float a, float t) {
166
159
if (fLinearEnv )
167
160
{
168
161
scaleAmp (ScalarFromdB (a), t);
@@ -184,8 +177,7 @@ VAlgorithm::scaleGain(float a, float t)
184
177
}
185
178
}
186
179
187
- void VAlgorithm::setInputAmp (float a, float t)
188
- {
180
+ void VAlgorithm::setInputAmp (float a, float t) {
189
181
if (!fLinearEnv )
190
182
{
191
183
setInputGain (dBFromScalar (a), t);
@@ -206,8 +198,7 @@ void VAlgorithm::setInputAmp(float a, float t)
206
198
}
207
199
}
208
200
209
- void VAlgorithm::setInputGain (float a, float t)
210
- {
201
+ void VAlgorithm::setInputGain (float a, float t) {
211
202
if (fLinearEnv )
212
203
{
213
204
setInputAmp (ScalarFromdB (a), t);
@@ -229,12 +220,11 @@ void VAlgorithm::setInputGain(float a, float t)
229
220
}
230
221
}
231
222
232
- static inline float NormalizePan (float a)
233
- {
234
- float _ = fmod (a, 2 .0f ); // 0 to 1.999 if a>0, -1.999 to 0 if a<0.
235
-
236
- return globs.nchansVSS <4 ?(a<-1 .?-1 .:a>1 .?1 .:a):(_<-1 .?_+2 .:_>1 .?_-2 .:_);
237
- // Real programmers can write APL in *any* language.
223
+ static double NormalizePan (double a) {
224
+ if (globs.nchansVSS < 4 )
225
+ return std::clamp (a, -1.0 , 1.0 );
226
+ const auto _ = fmod (a, 2.0 ); // 0 to 1.999 if a>0, -1.999 to 0 if a<0.
227
+ return _<-1.0 ? _+2.0 : _>1.0 ? _-2.0 : _;
238
228
}
239
229
240
230
// Quad: -1 to 1 is left-rear through left, front, right, right-rear.
@@ -244,21 +234,18 @@ static inline float NormalizePan(float a)
244
234
// (thanks to Carlos Ricci for the sqrt idea).
245
235
// Compute the sqrt lazily (don't bother, if we were going to return 0 anyway).
246
236
247
- static inline float PanIt (float _, float __)
248
- {
249
- float x = 1 . - 2 .*fabs (NormalizePan (_) - __);
250
- return x > 0 . ? fsqrt (x) : 0 .;
237
+ static double PanIt (double _, double __) {
238
+ const auto x = 1.0 - 2.0 *fabs (NormalizePan (_) - __);
239
+ return x > 0.0 ? sqrt (x) : 0.0 ;
251
240
}
252
-
253
- static inline float PanFL (float _) { return PanIt (_, -.25 ); }
254
- static inline float PanFR (float _) { return PanIt (_, .25 ); }
255
- static inline float PanRL (float _) { return PanIt (_, -.75 ) + PanIt (_, 1.25 ); }
256
- static inline float PanRR (float _) { return PanIt (_, .75 ) + PanIt (_, -1.25 ); }
241
+ static double PanFL (double _) { return PanIt (_, -.25 ); }
242
+ static double PanFR (double _) { return PanIt (_, .25 ); }
243
+ static double PanRL (double _) { return PanIt (_, -.75 ) + PanIt (_, 1.25 ); }
244
+ static double PanRR (double _) { return PanIt (_, .75 ) + PanIt (_, -1.25 ); }
257
245
// the 2 cases for RL and RR are to handle both sheets of the multiple covering
258
246
259
247
// Set panAmps[] from pan.
260
- inline void VAlgorithm::setPanImmediately (int nchans)
261
- {
248
+ void VAlgorithm::setPanImmediately (int nchans) {
262
249
if (fSetAmplsDirectly )
263
250
return ;
264
251
@@ -287,39 +274,31 @@ inline void VAlgorithm::setPanImmediately(int nchans)
287
274
}
288
275
}
289
276
290
- inline void VAlgorithm::setElevImmediately (int nchans)
291
- {
292
- if (fSetAmplsDirectly )
277
+ void VAlgorithm::setElevImmediately (int nchans) {
278
+ if (fSetAmplsDirectly || nchans != 8 )
293
279
return ;
294
280
295
- if (nchans == 8 )
296
- {
297
- // Like Quad, where pan is azimuth, and elev is elevation.
298
-
299
- float FL = PanFL (pan);
300
- float FR = PanFR (pan);
301
- float RL = PanRL (pan);
302
- float RR = PanRR (pan);
303
-
304
- float elevBot = fabs (elev - 1 ) * .5f ;
305
- float elevTop = 1 .f - elevBot;
306
-
307
- panAmps[0 ] = FL * elevTop;
308
- panAmps[1 ] = FR * elevTop;
309
- panAmps[2 ] = RL * elevTop;
310
- panAmps[3 ] = RR * elevTop;
311
- panAmps[4 ] = FL * elevBot;
312
- panAmps[5 ] = FR * elevBot;
313
- panAmps[6 ] = RL * elevBot;
314
- panAmps[7 ] = RR * elevBot;
315
- }
281
+ // Like Quad, where pan is azimuth, and elev is elevation.
282
+ const auto FL = PanFL (pan);
283
+ const auto FR = PanFR (pan);
284
+ const auto RL = PanRL (pan);
285
+ const auto RR = PanRR (pan);
286
+
287
+ const auto elevBot = fabs (elev - 1 ) * 0.5 ;
288
+ const auto elevTop = 1.0 - elevBot;
289
+
290
+ panAmps[0 ] = FL * elevTop;
291
+ panAmps[1 ] = FR * elevTop;
292
+ panAmps[2 ] = RL * elevTop;
293
+ panAmps[3 ] = RR * elevTop;
294
+ panAmps[4 ] = FL * elevBot;
295
+ panAmps[5 ] = FR * elevBot;
296
+ panAmps[6 ] = RL * elevBot;
297
+ panAmps[7 ] = RR * elevBot;
316
298
}
317
299
318
- inline void VAlgorithm::setDistanceImmediately (void )
319
- {
320
- dist01 = distance / distanceHorizon;
321
- if (dist01 < 0 .)
322
- dist01 = 0 .;
300
+ void VAlgorithm::setDistanceImmediately () {
301
+ dist01 = std::max (0 .0f , distance / distanceHorizon);
323
302
324
303
#ifdef ONE_WAY_TO_DO_IT
325
304
// inverse-1.2 law
@@ -360,9 +339,7 @@ inline void VAlgorithm::setDistanceImmediately(void)
360
339
hpf_d.setFrequency (10.0 * pow (2.0 , 4.0 *dist01));
361
340
}
362
341
363
- void
364
- VAlgorithm::setPan (float a, float t)
365
- {
342
+ void VAlgorithm::setPan (float a, float t) {
366
343
if (fSetAmplsDirectly )
367
344
return ;
368
345
@@ -410,9 +387,7 @@ VAlgorithm::setPan(float a, float t)
410
387
}
411
388
}
412
389
413
- void
414
- VAlgorithm::setElev (float a, float t)
415
- {
390
+ void VAlgorithm::setElev (float a, float t) {
416
391
if (fSetAmplsDirectly )
417
392
return ;
418
393
@@ -432,8 +407,7 @@ VAlgorithm::setElev(float a, float t)
432
407
}
433
408
}
434
409
435
- void VAlgorithm::setDistance (float a, float t)
436
- {
410
+ void VAlgorithm::setDistance (float a, float t) {
437
411
if (fSetAmplsDirectly )
438
412
return ;
439
413
@@ -453,20 +427,14 @@ void VAlgorithm::setDistance(float a, float t)
453
427
}
454
428
}
455
429
456
-
457
- void VAlgorithm::setDistanceHorizon (float a)
458
- {
459
- if (a < .0001 )
460
- a = .0001 ;
461
- distanceHorizon = a;
430
+ void VAlgorithm::setDistanceHorizon (float a) {
431
+ distanceHorizon = std::max (0 .0001f , a);
462
432
}
463
433
464
434
465
435
// Computes the new (modulated) amplitude values
466
436
// in place, and halts modulation if necessary.
467
- inline void
468
- VAlgorithm::updateAmps (int nchans)
469
- {
437
+ void VAlgorithm::updateAmps (int nchans) {
470
438
assert (!getPause ());
471
439
472
440
if (fLinearEnv )
@@ -570,9 +538,7 @@ VAlgorithm::updateAmps(int nchans)
570
538
}
571
539
}
572
540
573
- inline void
574
- VAlgorithm::updateDistance (void )
575
- {
541
+ void VAlgorithm::updateDistance () {
576
542
assert (!getPause ());
577
543
if (modDistance > 0L )
578
544
{
@@ -591,9 +557,7 @@ VAlgorithm::updateDistance(void)
591
557
// Utility functions to handle pause and mute states,
592
558
// for classes with overridden outputSamples().
593
559
// ProcessorActors commonly pass in (source != NULL) for fValidForOutput.
594
- int
595
- VAlgorithm::FOutputSamples1 (int howMany, int fValidForOutput )
596
- {
560
+ int VAlgorithm::FOutputSamples1 (int howMany, int fValidForOutput ) {
597
561
if (!fValidForOutput || getPause ())
598
562
{
599
563
// fill local buffer with zeros, in case anyone's listening
@@ -603,9 +567,7 @@ VAlgorithm::FOutputSamples1(int howMany, int fValidForOutput)
603
567
return 1 ;
604
568
}
605
569
606
- int
607
- VAlgorithm::FOutputSamples2 (int /* howMany*/ , int nchans)
608
- {
570
+ int VAlgorithm::FOutputSamples2 (int /* howMany*/ , int nchans) {
609
571
if (getMute () && !fSetAmplsDirectly )
610
572
{
611
573
for (int iChunk = 0 ; iChunk < cChunk; iChunk++)
@@ -621,9 +583,7 @@ VAlgorithm::FOutputSamples2(int /*howMany*/, int nchans)
621
583
// OutputSamples 3,4
622
584
// Functions to map the computed buffer of samples to the vss output channels,
623
585
// then fade, scale, and pan the mapped result onto the vss output busses
624
- inline void
625
- VAlgorithm::OutputSamples3 (int howMany, float * putEmHere, int nchans)
626
- {
586
+ void VAlgorithm::OutputSamples3 (int howMany, float * putEmHere, int nchans) {
627
587
VCircularBuffer* p;
628
588
int nchansAlgorithm = Nchan ();
629
589
VCircularBuffer bufferMono;
@@ -711,9 +671,7 @@ VAlgorithm::OutputSamples3(int howMany, float* putEmHere, int nchans)
711
671
// ;;;; if (nothing's changing /*updateAmps isn't doing anything*/)
712
672
// ;;;; { cChunk=1; csampChunk=howMany; }
713
673
714
- inline void
715
- VAlgorithm::OutputSamples4 (int howMany, float * putEmHere, int nchansAlgorithm, int nchans, VCircularBuffer& bufArg)
716
- {
674
+ void VAlgorithm::OutputSamples4 (int howMany, float * putEmHere, int nchansAlgorithm, int nchans, VCircularBuffer& bufArg) {
717
675
assert (howMany == MaxSampsPerBuffer);
718
676
assert (howMany == cChunk * csampChunk);
719
677
assert (nchans == 1 || nchans == 2 || nchans == 4 || nchans == 8 );
@@ -816,9 +774,7 @@ VAlgorithm::OutputSamples4(int howMany, float* putEmHere, int nchansAlgorithm, i
816
774
// for copying and scaling their samples into putEmHere[]).
817
775
//
818
776
// Update amplitudes every sample.
819
- void
820
- VAlgorithm::outputSamples ( int howMany, float * putEmHere, int nchans )
821
- {
777
+ void VAlgorithm::outputSamples (int howMany, float * putEmHere, int nchans) {
822
778
if (!FOutputSamples1 (howMany, FValidForOutput ()))
823
779
return ;
824
780
0 commit comments