forked from visigoth/SugarCubes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MarkSlee.pde
736 lines (619 loc) · 20.1 KB
/
MarkSlee.pde
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
class SpaceTime extends SCPattern {
SinLFO pos = new SinLFO(0, 1, 3000);
SinLFO rate = new SinLFO(1000, 9000, 13000);
SinLFO falloff = new SinLFO(10, 70, 5000);
float angle = 0;
BasicParameter rateParameter = new BasicParameter("RATE", 0.5);
BasicParameter sizeParameter = new BasicParameter("SIZE", 0.5);
public SpaceTime(GLucose glucose) {
super(glucose);
addModulator(pos).trigger();
addModulator(rate).trigger();
addModulator(falloff).trigger();
pos.modulateDurationBy(rate);
addParameter(rateParameter);
addParameter(sizeParameter);
}
public void onParameterChanged(LXParameter parameter) {
if (parameter == rateParameter) {
rate.stop().setValue(9000 - 8000*parameter.getValuef());
} else if (parameter == sizeParameter) {
falloff.stop().setValue(70 - 60*parameter.getValuef());
}
}
void run(int deltaMs) {
angle += deltaMs * 0.0007;
float sVal1 = model.strips.size() * (0.5 + 0.5*sin(angle));
float sVal2 = model.strips.size() * (0.5 + 0.5*cos(angle));
float pVal = pos.getValuef();
float fVal = falloff.getValuef();
int s = 0;
for (Strip strip : model.strips) {
int i = 0;
for (Point p : strip.points) {
colors[p.index] = color(
(lx.getBaseHuef() + 360 - p.fx*.2 + p.fy * .3) % 360,
constrain(.4 * min(abs(s - sVal1), abs(s - sVal2)), 20, 100),
max(0, 100 - fVal*abs(i - pVal*(strip.metrics.numPoints - 1)))
);
++i;
}
++s;
}
}
}
class Swarm extends SCPattern {
SawLFO offset = new SawLFO(0, 1, 1000);
SinLFO rate = new SinLFO(350, 1200, 63000);
SinLFO falloff = new SinLFO(15, 50, 17000);
SinLFO fX = new SinLFO(0, model.xMax, 19000);
SinLFO fY = new SinLFO(0, model.yMax, 11000);
SinLFO hOffX = new SinLFO(0, model.xMax, 13000);
public Swarm(GLucose glucose) {
super(glucose);
addModulator(offset).trigger();
addModulator(rate).trigger();
addModulator(falloff).trigger();
addModulator(fX).trigger();
addModulator(fY).trigger();
addModulator(hOffX).trigger();
offset.modulateDurationBy(rate);
}
float modDist(float v1, float v2, float mod) {
v1 = v1 % mod;
v2 = v2 % mod;
if (v2 > v1) {
return min(v2-v1, v1+mod-v2);
}
else {
return min(v1-v2, v2+mod-v1);
}
}
void run(int deltaMs) {
float s = 0;
for (Strip strip : model.strips ) {
int i = 0;
for (Point p : strip.points) {
float fV = max(-1, 1 - dist(p.fx/2., p.fy, fX.getValuef()/2., fY.getValuef()) / 64.);
colors[p.index] = color(
(lx.getBaseHuef() + 0.3 * abs(p.fx - hOffX.getValuef())) % 360,
constrain(80 + 40 * fV, 0, 100),
constrain(100 - (30 - fV * falloff.getValuef()) * modDist(i + (s*63)%61, (int) (offset.getValuef() * strip.metrics.numPoints), strip.metrics.numPoints), 0, 100)
);
++i;
}
++s;
}
}
}
class SwipeTransition extends SCTransition {
final BasicParameter bleed = new BasicParameter("WIDTH", 0.5);
SwipeTransition(GLucose glucose) {
super(glucose);
setDuration(5000);
addParameter(bleed);
}
void computeBlend(int[] c1, int[] c2, double progress) {
float bleedf = 10 + bleed.getValuef() * 200.;
float xPos = (float) (-bleedf + progress * (model.xMax + bleedf));
for (Point p : model.points) {
float d = (p.fx - xPos) / bleedf;
if (d < 0) {
colors[p.index] = c2[p.index];
} else if (d > 1) {
colors[p.index] = c1[p.index];
} else {
colors[p.index] = lerpColor(c2[p.index], c1[p.index], d, RGB);
}
}
}
}
class BassPod extends SCPattern {
private GraphicEQ eq = null;
public BassPod(GLucose glucose) {
super(glucose);
}
protected void onActive() {
if (eq == null) {
eq = new GraphicEQ(lx, 16);
eq.slope.setValue(0.6);
addParameter(eq.level);
addParameter(eq.range);
addParameter(eq.attack);
addParameter(eq.release);
addParameter(eq.slope);
}
}
public void run(int deltaMs) {
eq.run(deltaMs);
float bassLevel = eq.getAverageLevel(0, 5);
for (Point p : model.points) {
int avgIndex = (int) constrain(1 + abs(p.fx-model.xMax/2.)/(model.xMax/2.)*(eq.numBands-5), 0, eq.numBands-5);
float value = 0;
for (int i = avgIndex; i < avgIndex + 5; ++i) {
value += eq.getLevel(i);
}
value /= 5.;
float b = constrain(8 * (value*model.yMax - abs(p.fy-model.yMax/2.)), 0, 100);
colors[p.index] = color(
(lx.getBaseHuef() + abs(p.fy - model.cy) + abs(p.fx - model.cx)) % 360,
constrain(bassLevel*240 - .6*dist(p.fx, p.fy, model.cx, model.cy), 0, 100),
b
);
}
}
}
class CubeEQ extends SCPattern {
private GraphicEQ eq = null;
private final BasicParameter edge = new BasicParameter("EDGE", 0.5);
private final BasicParameter clr = new BasicParameter("CLR", 0.5);
private final BasicParameter blockiness = new BasicParameter("BLK", 0.5);
public CubeEQ(GLucose glucose) {
super(glucose);
}
protected void onActive() {
if (eq == null) {
eq = new GraphicEQ(lx, 16);
addParameter(eq.level);
addParameter(eq.range);
addParameter(eq.attack);
addParameter(eq.release);
addParameter(eq.slope);
addParameter(edge);
addParameter(clr);
addParameter(blockiness);
}
}
public void run(int deltaMs) {
eq.run(deltaMs);
float edgeConst = 2 + 30*edge.getValuef();
float clrConst = 1.1 + clr.getValuef();
for (Point p : model.points) {
float avgIndex = constrain(2 + p.fx / model.xMax * (eq.numBands-4), 0, eq.numBands-4);
int avgFloor = (int) avgIndex;
float leftVal = eq.getLevel(avgFloor);
float rightVal = eq.getLevel(avgFloor+1);
float smoothValue = lerp(leftVal, rightVal, avgIndex-avgFloor);
float chunkyValue = (
eq.getLevel(avgFloor/4*4) +
eq.getLevel(avgFloor/4*4 + 1) +
eq.getLevel(avgFloor/4*4 + 2) +
eq.getLevel(avgFloor/4*4 + 3)
) / 4.;
float value = lerp(smoothValue, chunkyValue, blockiness.getValuef());
float b = constrain(edgeConst * (value*model.yMax - p.fy), 0, 100);
colors[p.index] = color(
(480 + lx.getBaseHuef() - min(clrConst*p.fy, 120)) % 360,
100,
b
);
}
}
}
class BoomEffect extends SCEffect {
final BasicParameter falloff = new BasicParameter("WIDTH", 0.5);
final BasicParameter speed = new BasicParameter("SPD", 0.5);
final BasicParameter bright = new BasicParameter("BRT", 1.0);
final BasicParameter sat = new BasicParameter("SAT", 0.2);
List<Layer> layers = new ArrayList<Layer>();
final float maxr = sqrt(model.xMax*model.xMax + model.yMax*model.yMax + model.zMax*model.zMax) + 10;
class Layer {
LinearEnvelope boom = new LinearEnvelope(-40, 500, 1300);
Layer() {
addModulator(boom);
trigger();
}
void trigger() {
float falloffv = falloffv();
boom.setRange(-100 / falloffv, maxr + 100/falloffv, 4000 - speed.getValuef() * 3300);
boom.trigger();
}
void doApply(int[] colors) {
float brightv = 100 * bright.getValuef();
float falloffv = falloffv();
float satv = sat.getValuef() * 100;
float huev = lx.getBaseHuef();
for (Point p : model.points) {
colors[p.index] = blendColor(
colors[p.index],
color(huev, satv, constrain(brightv - falloffv*abs(boom.getValuef() - dist(p.fx, 2*p.fy, 3*p.fz, model.xMax/2, model.yMax, model.zMax*1.5)), 0, 100)),
ADD);
}
}
}
BoomEffect(GLucose glucose) {
super(glucose, true);
addParameter(falloff);
addParameter(speed);
addParameter(bright);
addParameter(sat);
}
public void onEnable() {
for (Layer l : layers) {
if (!l.boom.isRunning()) {
l.trigger();
return;
}
}
layers.add(new Layer());
}
private float falloffv() {
return 20 - 19 * falloff.getValuef();
}
public void onTrigger() {
onEnable();
}
public void doApply(int[] colors) {
for (Layer l : layers) {
if (l.boom.isRunning()) {
l.doApply(colors);
}
}
}
}
public class PianoKeyPattern extends SCPattern {
final LinearEnvelope[] cubeBrt;
final SinLFO base[];
final BasicParameter attack = new BasicParameter("ATK", 0.1);
final BasicParameter release = new BasicParameter("REL", 0.5);
final BasicParameter level = new BasicParameter("AMB", 0.6);
PianoKeyPattern(GLucose glucose) {
super(glucose);
for (MidiInputDevice input : RWMidi.getInputDevices()) {
input.createInput(this);
}
addParameter(attack);
addParameter(release);
addParameter(level);
cubeBrt = new LinearEnvelope[model.cubes.size() / 4];
for (int i = 0; i < cubeBrt.length; ++i) {
addModulator(cubeBrt[i] = new LinearEnvelope(0, 0, 100));
}
base = new SinLFO[model.cubes.size() / 12];
for (int i = 0; i < base.length; ++i) {
addModulator(base[i] = new SinLFO(0, 1, 7000 + 1000*i)).trigger();
}
}
private float getAttackTime() {
return 15 + attack.getValuef()*attack.getValuef() * 2000;
}
private float getReleaseTime() {
return 15 + release.getValuef() * 3000;
}
private LinearEnvelope getEnvelope(int index) {
return cubeBrt[index % cubeBrt.length];
}
private SinLFO getBase(int index) {
return base[index % base.length];
}
public void noteOnReceived(Note note) {
LinearEnvelope env = getEnvelope(note.getPitch());
env.setEndVal(min(1, env.getValuef() + (note.getVelocity() / 127.)), getAttackTime()).start();
}
public void noteOffReceived(Note note) {
getEnvelope(note.getPitch()).setEndVal(0, getReleaseTime()).start();
}
public void run(int deltaMs) {
int i = 0;
float huef = lx.getBaseHuef();
float levelf = level.getValuef();
for (Cube c : model.cubes) {
float v = max(getBase(i).getValuef() * levelf/4., getEnvelope(i++).getValuef());
setColor(c, color(
(huef + 20*v + abs(c.cx-model.xMax/2.)*.3 + c.cy) % 360,
min(100, 120*v),
100*v
));
}
}
}
class CrossSections extends SCPattern {
final SinLFO x = new SinLFO(0, model.xMax, 5000);
final SinLFO y = new SinLFO(0, model.yMax, 6000);
final SinLFO z = new SinLFO(0, model.zMax, 7000);
final BasicParameter xw = new BasicParameter("XWID", 0.3);
final BasicParameter yw = new BasicParameter("YWID", 0.3);
final BasicParameter zw = new BasicParameter("ZWID", 0.3);
final BasicParameter xr = new BasicParameter("XRAT", 0.7);
final BasicParameter yr = new BasicParameter("YRAT", 0.6);
final BasicParameter zr = new BasicParameter("ZRAT", 0.5);
final BasicParameter xl = new BasicParameter("XLEV", 1);
final BasicParameter yl = new BasicParameter("YLEV", 1);
final BasicParameter zl = new BasicParameter("ZLEV", 0.5);
CrossSections(GLucose glucose) {
super(glucose);
addModulator(x).trigger();
addModulator(y).trigger();
addModulator(z).trigger();
addParams();
}
protected void addParams() {
addParameter(xr);
addParameter(yr);
addParameter(zr);
addParameter(xw);
addParameter(xl);
addParameter(yl);
addParameter(zl);
addParameter(yw);
addParameter(zw);
}
void onParameterChanged(LXParameter p) {
if (p == xr) {
x.setDuration(10000 - 8800*p.getValuef());
} else if (p == yr) {
y.setDuration(10000 - 9000*p.getValuef());
} else if (p == zr) {
z.setDuration(10000 - 9000*p.getValuef());
}
}
float xv, yv, zv;
protected void updateXYZVals() {
xv = x.getValuef();
yv = y.getValuef();
zv = z.getValuef();
}
public void run(int deltaMs) {
updateXYZVals();
float xlv = 100*xl.getValuef();
float ylv = 100*yl.getValuef();
float zlv = 100*zl.getValuef();
float xwv = 100. / (10 + 40*xw.getValuef());
float ywv = 100. / (10 + 40*yw.getValuef());
float zwv = 100. / (10 + 40*zw.getValuef());
for (Point p : model.points) {
color c = 0;
c = blendColor(c, color(
(lx.getBaseHuef() + p.fx/10 + p.fy/3) % 360,
constrain(140 - 1.1*abs(p.fx - model.xMax/2.), 0, 100),
max(0, xlv - xwv*abs(p.fx - xv))
), ADD);
c = blendColor(c, color(
(lx.getBaseHuef() + 80 + p.fy/10) % 360,
constrain(140 - 2.2*abs(p.fy - model.yMax/2.), 0, 100),
max(0, ylv - ywv*abs(p.fy - yv))
), ADD);
c = blendColor(c, color(
(lx.getBaseHuef() + 160 + p.fz / 10 + p.fy/2) % 360,
constrain(140 - 2.2*abs(p.fz - model.zMax/2.), 0, 100),
max(0, zlv - zwv*abs(p.fz - zv))
), ADD);
colors[p.index] = c;
}
}
}
class Blinders extends SCPattern {
final SinLFO[] m;
final TriangleLFO r;
final SinLFO s;
final TriangleLFO hs;
public Blinders(GLucose glucose) {
super(glucose);
m = new SinLFO[12];
for (int i = 0; i < m.length; ++i) {
addModulator(m[i] = new SinLFO(0.5, 120, (120000. / (3+i)))).trigger();
}
addModulator(r = new TriangleLFO(9000, 15000, 29000)).trigger();
addModulator(s = new SinLFO(-20, 275, 11000)).trigger();
addModulator(hs = new TriangleLFO(0.1, 0.5, 15000)).trigger();
s.modulateDurationBy(r);
}
public void run(int deltaMs) {
float hv = lx.getBaseHuef();
int si = 0;
for (Strip strip : model.strips) {
int i = 0;
float mv = m[si % m.length].getValuef();
for (Point p : strip.points) {
colors[p.index] = color(
(hv + p.fz + p.fy*hs.getValuef()) % 360,
min(100, abs(p.fx - s.getValuef())/2.),
max(0, 100 - mv/2. - mv * abs(i - (strip.metrics.length-1)/2.))
);
++i;
}
++si;
}
}
}
class Psychedelia extends SCPattern {
final int NUM = 3;
SinLFO m = new SinLFO(-0.5, NUM-0.5, 9000);
SinLFO s = new SinLFO(-20, 147, 11000);
TriangleLFO h = new TriangleLFO(0, 240, 19000);
SinLFO c = new SinLFO(-.2, .8, 31000);
Psychedelia(GLucose glucose) {
super(glucose);
addModulator(m).trigger();
addModulator(s).trigger();
addModulator(h).trigger();
addModulator(c).trigger();
}
void run(int deltaMs) {
float huev = h.getValuef();
float cv = c.getValuef();
float sv = s.getValuef();
float mv = m.getValuef();
int i = 0;
for (Strip strip : model.strips) {
for (Point p : strip.points) {
colors[p.index] = color(
(huev + i*constrain(cv, 0, 2) + p.fz/2. + p.fx/4.) % 360,
min(100, abs(p.fy-sv)),
max(0, 100 - 50*abs((i%NUM) - mv))
);
}
++i;
}
}
}
class AskewPlanes extends SCPattern {
class Plane {
private final SinLFO a;
private final SinLFO b;
private final SinLFO c;
float av = 1;
float bv = 1;
float cv = 1;
float denom = 0.1;
Plane(int i) {
addModulator(a = new SinLFO(-1, 1, 4000 + 1029*i)).trigger();
addModulator(b = new SinLFO(-1, 1, 11000 - 1104*i)).trigger();
addModulator(c = new SinLFO(-50, 50, 4000 + 1000*i * ((i % 2 == 0) ? 1 : -1))).trigger();
}
void run(int deltaMs) {
av = a.getValuef();
bv = b.getValuef();
cv = c.getValuef();
denom = sqrt(av*av + bv*bv);
}
}
final Plane[] planes;
final int NUM_PLANES = 3;
AskewPlanes(GLucose glucose) {
super(glucose);
planes = new Plane[NUM_PLANES];
for (int i = 0; i < planes.length; ++i) {
planes[i] = new Plane(i);
}
}
public void run(int deltaMs) {
float huev = lx.getBaseHuef();
// This is super fucking bizarre. But if this is a for loop, the framerate
// tanks to like 30FPS, instead of 60. Call them manually and it works fine.
// Doesn't make ANY sense... there must be some weird side effect going on
// with the Processing internals perhaps?
// for (Plane plane : planes) {
// plane.run(deltaMs);
// }
planes[0].run(deltaMs);
planes[1].run(deltaMs);
planes[2].run(deltaMs);
for (Point p : model.points) {
float d = MAX_FLOAT;
for (Plane plane : planes) {
if (plane.denom != 0) {
d = min(d, abs(plane.av*(p.fx-model.cx) + plane.bv*(p.fy-model.cy) + plane.cv) / plane.denom);
}
}
colors[p.index] = color(
(huev + abs(p.fx-model.cx)*.3 + p.fy*.8) % 360,
max(0, 100 - .8*abs(p.fx - model.cx)),
constrain(140 - 10.*d, 0, 100)
);
}
}
}
class ShiftingPlane extends SCPattern {
final SinLFO a = new SinLFO(-.2, .2, 5300);
final SinLFO b = new SinLFO(1, -1, 13300);
final SinLFO c = new SinLFO(-1.4, 1.4, 5700);
final SinLFO d = new SinLFO(-10, 10, 9500);
ShiftingPlane(GLucose glucose) {
super(glucose);
addModulator(a).trigger();
addModulator(b).trigger();
addModulator(c).trigger();
addModulator(d).trigger();
}
public void run(int deltaMs) {
float hv = lx.getBaseHuef();
float av = a.getValuef();
float bv = b.getValuef();
float cv = c.getValuef();
float dv = d.getValuef();
float denom = sqrt(av*av + bv*bv + cv*cv);
for (Point p : model.points) {
float d = abs(av*(p.fx-model.cx) + bv*(p.fy-model.cy) + cv*(p.fz-model.cz) + dv) / denom;
colors[p.index] = color(
(hv + abs(p.fx-model.cx)*.6 + abs(p.fy-model.cy)*.9 + abs(p.fz - model.cz)) % 360,
constrain(110 - d*6, 0, 100),
constrain(130 - 7*d, 0, 100)
);
}
}
}
class Traktor extends SCPattern {
final int FRAME_WIDTH = 60;
final BasicParameter speed = new BasicParameter("SPD", 0.5);
private float[] bass = new float[FRAME_WIDTH];
private float[] treble = new float[FRAME_WIDTH];
private int index = 0;
private GraphicEQ eq = null;
public Traktor(GLucose glucose) {
super(glucose);
for (int i = 0; i < FRAME_WIDTH; ++i) {
bass[i] = 0;
treble[i] = 0;
}
addParameter(speed);
}
public void onActive() {
if (eq == null) {
eq = new GraphicEQ(lx, 16);
eq.slope.setValue(0.6);
eq.level.setValue(0.65);
eq.range.setValue(0.35);
eq.release.setValue(0.4);
addParameter(eq.level);
addParameter(eq.range);
addParameter(eq.attack);
addParameter(eq.release);
addParameter(eq.slope);
}
}
int counter = 0;
public void run(int deltaMs) {
eq.run(deltaMs);
int stepThresh = (int) (40 - 39*speed.getValuef());
counter += deltaMs;
if (counter < stepThresh) {
return;
}
counter = counter % stepThresh;
index = (index + 1) % FRAME_WIDTH;
float rawBass = eq.getAverageLevel(0, 4);
float rawTreble = eq.getAverageLevel(eq.numBands-7, 7);
bass[index] = rawBass * rawBass * rawBass * rawBass;
treble[index] = rawTreble * rawTreble;
for (Point p : model.points) {
int i = (int) constrain((model.xMax - p.x) / model.xMax * FRAME_WIDTH, 0, FRAME_WIDTH-1);
int pos = (index + FRAME_WIDTH - i) % FRAME_WIDTH;
colors[p.index] = color(
(360 + lx.getBaseHuef() + .8*abs(p.x-model.cx)) % 360,
100,
constrain(9 * (bass[pos]*model.cy - abs(p.fy - model.cy)), 0, 100)
);
colors[p.index] = blendColor(colors[p.index], color(
(400 + lx.getBaseHuef() + .5*abs(p.x-model.cx)) % 360,
60,
constrain(5 * (treble[pos]*.6*model.cy - abs(p.fy - model.cy)), 0, 100)
), ADD);
}
}
}
class ColorFuckerEffect extends SCEffect {
BasicParameter hueShift = new BasicParameter("HSHFT", 0);
BasicParameter sat = new BasicParameter("SAT", 1);
BasicParameter bright = new BasicParameter("BRT", 1);
ColorFuckerEffect(GLucose glucose) {
super(glucose);
addParameter(hueShift);
addParameter(bright);
addParameter(sat);
}
public void doApply(int[] colors) {
float bMod = bright.getValuef();
float sMod = sat.getValuef();
float hMod = hueShift.getValuef();
if (bMod < 1 || sMod < 1 || hMod > 0) {
for (int i = 0; i < colors.length; ++i) {
colors[i] = color(
(hue(colors[i]) + hueShift.getValuef()*360.) % 360,
saturation(colors[i]) * sat.getValuef(),
brightness(colors[i]) * bright.getValuef()
);
}
}
}
}