Bug fixes and new mapping for sub
[SugarCubes.git] / MarkSlee.pde
1 class MidiMusic extends SCPattern {
2
3 private final Stack<LXLayer> newLayers = new Stack<LXLayer>();
4
5 private final Map<Integer, LightUp> lightMap = new HashMap<Integer, LightUp>();
6 private final List<LightUp> lights = new ArrayList<LightUp>();
7 private final BasicParameter lightSize = new BasicParameter("SIZE", 0.5);
8
9 private final List<Sweep> sweeps = new ArrayList<Sweep>();
10
11 private final LinearEnvelope sparkle = new LinearEnvelope(0, 1, 500);
12 private boolean sparkleDirection = true;
13 private float sparkleBright = 100;
14
15 private final BasicParameter wave = new BasicParameter("WAVE", 0);
16
17 MidiMusic(GLucose glucose) {
18 super(glucose);
19 addParameter(lightSize);
20 addParameter(wave);
21 addModulator(sparkle).setValue(1);
22 }
23
24 void onReset() {
25 for (LightUp light : lights) {
26 light.noteOff(null);
27 }
28 }
29
30 class Sweep extends LXLayer {
31
32 final LinearEnvelope position = new LinearEnvelope(0, 1, 1000);
33 float bright = 100;
34 float falloff = 10;
35
36 Sweep() {
37 addModulator(position);
38 }
39
40 public void run(double deltaMs, color[] colors) {
41 if (!position.isRunning()) {
42 return;
43 }
44 float posf = position.getValuef();
45 for (Point p : model.points) {
46 colors[p.index] = blendColor(colors[p.index], color(
47 (lx.getBaseHuef() + .2*abs(p.x - model.cx) + .2*abs(p.y - model.cy)) % 360,
48 100,
49 max(0, bright - posf*100 - falloff*abs(p.y - posf*model.yMax))
50 ), ADD);
51 }
52 }
53 }
54
55 class LightUp extends LXLayer {
56
57 private final LinearEnvelope brt = new LinearEnvelope(0, 0, 0);
58 private final Accelerator yPos = new Accelerator(0, 0, 0);
59 private float xPos;
60
61 LightUp() {
62 addModulator(brt);
63 addModulator(yPos);
64 }
65
66 boolean isAvailable() {
67 return brt.getValuef() <= 0;
68 }
69
70 void noteOn(Note note) {
71 xPos = lerp(0, model.xMax, constrain(0.5 + (note.getPitch() - 60) / 28., 0, 1));
72 yPos.setValue(lerp(20, model.yMax*.72, note.getVelocity() / 127.)).stop();
73 brt.setRangeFromHereTo(lerp(40, 100, note.getVelocity() / 127.), 20).start();
74 }
75
76 void noteOff(Note note) {
77 yPos.setVelocity(0).setAcceleration(-380).start();
78 brt.setRangeFromHereTo(0, 1000).start();
79 }
80
81 public void run(double deltaMs, color[] colors) {
82 float bVal = brt.getValuef();
83 if (bVal <= 0) {
84 return;
85 }
86 float yVal = yPos.getValuef();
87 for (Point p : model.points) {
88 float falloff = 6 - 5*lightSize.getValuef();
89 float b = max(0, bVal - falloff*dist(p.x, p.y, xPos, yVal));
90 if (b > 0) {
91 colors[p.index] = blendColor(colors[p.index], lx.hsb(
92 (lx.getBaseHuef() + .2*abs(p.x - model.cx) + .2*abs(p.y - model.cy)) % 360,
93 100,
94 b
95 ), ADD);
96 }
97 }
98 }
99 }
100
101 private LightUp getLight() {
102 for (LightUp light : lights) {
103 if (light.isAvailable()) {
104 return light;
105 }
106 }
107 LightUp newLight = new LightUp();
108 lights.add(newLight);
109 synchronized(newLayers) {
110 newLayers.push(newLight);
111 }
112 return newLight;
113 }
114
115 private Sweep getSweep() {
116 for (Sweep s : sweeps) {
117 if (!s.position.isRunning()) {
118 return s;
119 }
120 }
121 Sweep newSweep = new Sweep();
122 sweeps.add(newSweep);
123 synchronized(newLayers) {
124 newLayers.push(newSweep);
125 }
126 return newSweep;
127 }
128
129 public synchronized boolean noteOn(Note note) {
130 if (note.getChannel() == 0) {
131 LightUp light = getLight();
132 lightMap.put(note.getPitch(), light);
133 light.noteOn(note);
134 } else if (note.getChannel() == 1) {
135 } else if (note.getChannel() == 9) {
136 if (note.getVelocity() > 0) {
137 switch (note.getPitch()) {
138 case 36:
139 Sweep s = getSweep();
140 s.bright = 50 + note.getVelocity() / 127. * 50;
141 s.falloff = 20 - note.getVelocity() / 127. * 17;
142 s.position.trigger();
143 break;
144 case 37:
145 sparkleBright = note.getVelocity() / 127. * 100;
146 sparkleDirection = true;
147 sparkle.trigger();
148 break;
149 case 38:
150 sparkleBright = note.getVelocity() / 127. * 100;
151 sparkleDirection = false;
152 sparkle.trigger();
153 break;
154 case 39:
155 effects.boom.trigger();
156 break;
157 case 40:
158 effects.flash.trigger();
159 break;
160 }
161 }
162 }
163 return true;
164 }
165
166 public synchronized boolean noteOff(Note note) {
167 if (note.getChannel() == 0) {
168 LightUp light = lightMap.get(note.getPitch());
169 if (light != null) {
170 light.noteOff(note);
171 }
172 }
173 return true;
174 }
175
176 final float[] wval = new float[16];
177 float wavoff = 0;
178
179 public synchronized void run(double deltaMs) {
180 wavoff += deltaMs * .001;
181 for (int i = 0; i < wval.length; ++i) {
182 wval[i] = model.cy + 0.2 * model.yMax/2. * sin(wavoff + i / 1.9);
183 }
184 float sparklePos = (sparkleDirection ? sparkle.getValuef() : (1 - sparkle.getValuef())) * (Cube.POINTS_PER_STRIP)/2.;
185 float maxBright = sparkleBright * (1 - sparkle.getValuef());
186 for (Strip s : model.strips) {
187 int i = 0;
188 for (Point p : s.points) {
189 int wavi = (int) constrain(p.x / model.xMax * wval.length, 0, wval.length-1);
190 float wavb = max(0, wave.getValuef()*100. - 8.*abs(p.y - wval[wavi]));
191 colors[p.index] = color(
192 (lx.getBaseHuef() + .2*abs(p.x - model.cx) + .2*abs(p.y - model.cy)) % 360,
193 100,
194 constrain(wavb + max(0, maxBright - 40.*abs(sparklePos - abs(i - (Cube.POINTS_PER_STRIP-1)/2.))), 0, 100)
195 );
196 ++i;
197 }
198 }
199
200 if (!newLayers.isEmpty()) {
201 synchronized(newLayers) {
202 while (!newLayers.isEmpty()) {
203 addLayer(newLayers.pop());
204 }
205 }
206 }
207 }
208 }
209
210 class Pulley extends SCPattern {
211
212 final int NUM_DIVISIONS = 16;
213 private final Accelerator[] gravity = new Accelerator[NUM_DIVISIONS];
214 private final Click[] delays = new Click[NUM_DIVISIONS];
215
216 private final Click reset = new Click(9000);
217 private boolean isRising = false;
218
219 private BasicParameter sz = new BasicParameter("SIZE", 0.5);
220 private BasicParameter beatAmount = new BasicParameter("BEAT", 0);
221
222 Pulley(GLucose glucose) {
223 super(glucose);
224 for (int i = 0; i < NUM_DIVISIONS; ++i) {
225 addModulator(gravity[i] = new Accelerator(0, 0, 0));
226 addModulator(delays[i] = new Click(0));
227 }
228 addModulator(reset).start();
229 addParameter(sz);
230 addParameter(beatAmount);
231 trigger();
232
233 }
234
235 private void trigger() {
236 isRising = !isRising;
237 int i = 0;
238 for (Accelerator g : gravity) {
239 if (isRising) {
240 g.setSpeed(random(20, 33), 0).start();
241 } else {
242 g.setVelocity(0).setAcceleration(-420);
243 delays[i].setDuration(random(0, 500)).trigger();
244 }
245 ++i;
246 }
247 }
248
249 public void run(double deltaMs) {
250 if (reset.click()) {
251 trigger();
252 }
253
254 if (isRising) {
255 // Fucking A, had to comment this all out because of that bizarre
256 // Processing bug where some simple loop takes an absurd amount of
257 // time, must be some pre-processor bug
258 // for (Accelerator g : gravity) {
259 // if (g.getValuef() > model.yMax) {
260 // g.stop();
261 // } else if (g.getValuef() > model.yMax*.55) {
262 // if (g.getVelocityf() > 10) {
263 // g.setAcceleration(-16);
264 // } else {
265 // g.setAcceleration(0);
266 // }
267 // }
268 // }
269 } else {
270 int j = 0;
271 for (Click d : delays) {
272 if (d.click()) {
273 gravity[j].start();
274 d.stop();
275 }
276 ++j;
277 }
278 for (Accelerator g : gravity) {
279 if (g.getValuef() < 0) {
280 g.setValue(-g.getValuef());
281 g.setVelocity(-g.getVelocityf() * random(0.74, 0.84));
282 }
283 }
284 }
285
286 // A little silliness to test the grid API
287 if (midiEngine != null && midiEngine.getFocusedPattern() == this) {
288 for (int i = 0; i < 5; ++i) {
289 for (int j = 0; j < 8; ++j) {
290 int gi = (int) constrain(j * NUM_DIVISIONS / 8, 0, NUM_DIVISIONS-1);
291 float b = 1 - 4.*abs((6-i)/6. - gravity[gi].getValuef() / model.yMax);
292 midiEngine.grid.setState(i, j, (b < 0) ? 0 : 3);
293 }
294 }
295 }
296
297 float fPos = 1 - lx.tempo.rampf();
298 if (fPos < .2) {
299 fPos = .2 + 4 * (.2 - fPos);
300 }
301 float falloff = 100. / (3 + sz.getValuef() * 36 + fPos * beatAmount.getValuef()*48);
302 for (Point p : model.points) {
303 int gi = (int) constrain((p.x - model.xMin) * NUM_DIVISIONS / (model.xMax - model.xMin), 0, NUM_DIVISIONS-1);
304 colors[p.index] = lx.hsb(
305 (lx.getBaseHuef() + abs(p.x - model.cx)*.8 + p.y*.4) % 360,
306 constrain(130 - p.y*.8, 0, 100),
307 max(0, 100 - abs(p.y - gravity[gi].getValuef())*falloff)
308 );
309 }
310 }
311 }
312
313 class ViolinWave extends SCPattern {
314
315 BasicParameter level = new BasicParameter("LVL", 0.45);
316 BasicParameter range = new BasicParameter("RNG", 0.5);
317 BasicParameter edge = new BasicParameter("EDG", 0.5);
318 BasicParameter release = new BasicParameter("RLS", 0.5);
319 BasicParameter speed = new BasicParameter("SPD", 0.5);
320 BasicParameter amp = new BasicParameter("AMP", 0.25);
321 BasicParameter period = new BasicParameter("WAVE", 0.5);
322 BasicParameter pSize = new BasicParameter("PSIZE", 0.5);
323 BasicParameter pSpeed = new BasicParameter("PSPD", 0.5);
324 BasicParameter pDensity = new BasicParameter("PDENS", 0.25);
325
326 LinearEnvelope dbValue = new LinearEnvelope(0, 0, 10);
327
328 ViolinWave(GLucose glucose) {
329 super(glucose);
330 addParameter(level);
331 addParameter(edge);
332 addParameter(range);
333 addParameter(release);
334 addParameter(speed);
335 addParameter(amp);
336 addParameter(period);
337 addParameter(pSize);
338 addParameter(pSpeed);
339 addParameter(pDensity);
340
341 addModulator(dbValue);
342 }
343
344 final List<Particle> particles = new ArrayList<Particle>();
345
346 class Particle {
347
348 LinearEnvelope x = new LinearEnvelope(0, 0, 0);
349 LinearEnvelope y = new LinearEnvelope(0, 0, 0);
350
351 Particle() {
352 addModulator(x);
353 addModulator(y);
354 }
355
356 Particle trigger(boolean direction) {
357 float xInit = random(model.xMin, model.xMax);
358 float time = 3000 - 2500*pSpeed.getValuef();
359 x.setRange(xInit, xInit + random(-40, 40), time).trigger();
360 y.setRange(model.cy + 10, direction ? model.yMax + 50 : model.yMin - 50, time).trigger();
361 return this;
362 }
363
364 boolean isActive() {
365 return x.isRunning() || y.isRunning();
366 }
367
368 public void run(double deltaMs) {
369 if (!isActive()) {
370 return;
371 }
372
373 float pFalloff = (30 - 27*pSize.getValuef());
374 for (Point p : model.points) {
375 float b = 100 - pFalloff * (abs(p.x - x.getValuef()) + abs(p.y - y.getValuef()));
376 if (b > 0) {
377 colors[p.index] = blendColor(colors[p.index], lx.hsb(
378 lx.getBaseHuef(), 20, b
379 ), ADD);
380 }
381 }
382 }
383 }
384
385 float[] centers = new float[30];
386 double accum = 0;
387 boolean rising = true;
388
389 void fireParticle(boolean direction) {
390 boolean gotOne = false;
391 for (Particle p : particles) {
392 if (!p.isActive()) {
393 p.trigger(direction);
394 return;
395 }
396 }
397 particles.add(new Particle().trigger(direction));
398 }
399
400 public void run(double deltaMs) {
401 accum += deltaMs / (1000. - 900.*speed.getValuef());
402 for (int i = 0; i < centers.length; ++i) {
403 centers[i] = model.cy + 30*amp.getValuef()*sin((float) (accum + (i-centers.length/2.)/(1. + 9.*period.getValuef())));
404 }
405
406 float zeroDBReference = pow(10, (50 - 190*level.getValuef())/20.);
407 float dB = 20*GraphicEQ.log10(lx.audioInput().mix.level() / zeroDBReference);
408 if (dB > dbValue.getValuef()) {
409 rising = true;
410 dbValue.setRangeFromHereTo(dB, 10).trigger();
411 } else {
412 if (rising) {
413 for (int j = 0; j < pDensity.getValuef()*3; ++j) {
414 fireParticle(true);
415 fireParticle(false);
416 }
417 }
418 rising = false;
419 dbValue.setRangeFromHereTo(max(dB, -96), 50 + 1000*release.getValuef()).trigger();
420 }
421 float edg = 1 + edge.getValuef() * 40;
422 float rng = (78 - 64 * range.getValuef()) / (model.yMax - model.cy);
423 float val = max(2, dbValue.getValuef());
424
425 for (Point p : model.points) {
426 int ci = (int) lerp(0, centers.length-1, (p.x - model.xMin) / (model.xMax - model.xMin));
427 float rFactor = 1.0 - 0.9 * abs(p.x - model.cx) / (model.xMax - model.cx);
428 colors[p.index] = lx.hsb(
429 (lx.getBaseHuef() + abs(p.x - model.cx)) % 360,
430 min(100, 20 + 8*abs(p.y - centers[ci])),
431 constrain(edg*(val*rFactor - rng * abs(p.y-centers[ci])), 0, 100)
432 );
433 }
434
435 for (Particle p : particles) {
436 p.run(deltaMs);
437 }
438 }
439 }
440
441 class BouncyBalls extends SCPattern {
442
443 static final int NUM_BALLS = 6;
444
445 class BouncyBall {
446
447 Accelerator yPos;
448 TriangleLFO xPos = new TriangleLFO(0, model.xMax, random(8000, 19000));
449 float zPos;
450
451 BouncyBall(int i) {
452 addModulator(xPos).setBasis(random(0, TWO_PI)).start();
453 addModulator(yPos = new Accelerator(0, 0, 0));
454 zPos = lerp(model.zMin, model.zMax, (i+2.) / (NUM_BALLS + 4.));
455 }
456
457 void bounce(float midiVel) {
458 float v = 100 + 8*midiVel;
459 yPos.setSpeed(v, getAccel(v, 60 / lx.tempo.bpmf())).start();
460 }
461
462 float getAccel(float v, float oneBeat) {
463 return -2*v / oneBeat;
464 }
465
466 void run(double deltaMs) {
467 float flrLevel = flr.getValuef() * model.xMax/2.;
468 if (yPos.getValuef() < flrLevel) {
469 if (yPos.getVelocity() < -50) {
470 yPos.setValue(2*flrLevel-yPos.getValuef());
471 float v = -yPos.getVelocityf() * bounce.getValuef();
472 yPos.setSpeed(v, getAccel(v, 60 / lx.tempo.bpmf()));
473 } else {
474 yPos.setValue(flrLevel).stop();
475 }
476 }
477 float falloff = 130.f / (12 + blobSize.getValuef() * 36);
478 float xv = xPos.getValuef();
479 float yv = yPos.getValuef();
480
481 for (Point p : model.points) {
482 float d = sqrt((p.x-xv)*(p.x-xv) + (p.y-yv)*(p.y-yv) + .1*(p.z-zPos)*(p.z-zPos));
483 float b = constrain(130 - falloff*d, 0, 100);
484 if (b > 0) {
485 colors[p.index] = blendColor(colors[p.index], lx.hsb(
486 (lx.getBaseHuef() + p.y*.5 + abs(model.cx - p.x) * .5) % 360,
487 max(0, 100 - .45*(p.y - flrLevel)),
488 b
489 ), ADD);
490 }
491 }
492 }
493 }
494
495 final BouncyBall[] balls = new BouncyBall[NUM_BALLS];
496
497 final BasicParameter bounce = new BasicParameter("BNC", .8);
498 final BasicParameter flr = new BasicParameter("FLR", 0);
499 final BasicParameter blobSize = new BasicParameter("SIZE", 0.5);
500
501 BouncyBalls(GLucose glucose) {
502 super(glucose);
503 for (int i = 0; i < balls.length; ++i) {
504 balls[i] = new BouncyBall(i);
505 }
506 addParameter(bounce);
507 addParameter(flr);
508 addParameter(blobSize);
509 }
510
511 public void run(double deltaMs) {
512 setColors(#000000);
513 for (BouncyBall b : balls) {
514 b.run(deltaMs);
515 }
516 }
517
518 public boolean noteOn(Note note) {
519 int pitch = (note.getPitch() + note.getChannel()) % NUM_BALLS;
520 balls[pitch].bounce(note.getVelocity());
521 return true;
522 }
523 }
524
525 class SpaceTime extends SCPattern {
526
527 SinLFO pos = new SinLFO(0, 1, 3000);
528 SinLFO rate = new SinLFO(1000, 9000, 13000);
529 SinLFO falloff = new SinLFO(10, 70, 5000);
530 float angle = 0;
531
532 BasicParameter rateParameter = new BasicParameter("RATE", 0.5);
533 BasicParameter sizeParameter = new BasicParameter("SIZE", 0.5);
534
535
536 public SpaceTime(GLucose glucose) {
537 super(glucose);
538
539 addModulator(pos).trigger();
540 addModulator(rate).trigger();
541 addModulator(falloff).trigger();
542 pos.modulateDurationBy(rate);
543 addParameter(rateParameter);
544 addParameter(sizeParameter);
545 }
546
547 public void onParameterChanged(LXParameter parameter) {
548 if (parameter == rateParameter) {
549 rate.stop().setValue(9000 - 8000*parameter.getValuef());
550 } else if (parameter == sizeParameter) {
551 falloff.stop().setValue(70 - 60*parameter.getValuef());
552 }
553 }
554
555 void run(double deltaMs) {
556 angle += deltaMs * 0.0007;
557 float sVal1 = model.strips.size() * (0.5 + 0.5*sin(angle));
558 float sVal2 = model.strips.size() * (0.5 + 0.5*cos(angle));
559
560 float pVal = pos.getValuef();
561 float fVal = falloff.getValuef();
562
563 int s = 0;
564 for (Strip strip : model.strips) {
565 int i = 0;
566 for (Point p : strip.points) {
567 colors[p.index] = lx.hsb(
568 (lx.getBaseHuef() + 360 - p.x*.2 + p.y * .3) % 360,
569 constrain(.4 * min(abs(s - sVal1), abs(s - sVal2)), 20, 100),
570 max(0, 100 - fVal*abs(i - pVal*(strip.metrics.numPoints - 1)))
571 );
572 ++i;
573 }
574 ++s;
575 }
576 }
577 }
578
579 class Swarm extends SCPattern {
580
581 SawLFO offset = new SawLFO(0, 1, 1000);
582 SinLFO rate = new SinLFO(350, 1200, 63000);
583 SinLFO falloff = new SinLFO(15, 50, 17000);
584 SinLFO fX = new SinLFO(0, model.xMax, 19000);
585 SinLFO fY = new SinLFO(0, model.yMax, 11000);
586 SinLFO hOffX = new SinLFO(0, model.xMax, 13000);
587
588 public Swarm(GLucose glucose) {
589 super(glucose);
590
591 addModulator(offset).trigger();
592 addModulator(rate).trigger();
593 addModulator(falloff).trigger();
594 addModulator(fX).trigger();
595 addModulator(fY).trigger();
596 addModulator(hOffX).trigger();
597 offset.modulateDurationBy(rate);
598 }
599
600 float modDist(float v1, float v2, float mod) {
601 v1 = v1 % mod;
602 v2 = v2 % mod;
603 if (v2 > v1) {
604 return min(v2-v1, v1+mod-v2);
605 }
606 else {
607 return min(v1-v2, v2+mod-v1);
608 }
609 }
610
611 void run(double deltaMs) {
612 float s = 0;
613 for (Strip strip : model.strips ) {
614 int i = 0;
615 for (Point p : strip.points) {
616 float fV = max(-1, 1 - dist(p.x/2., p.y, fX.getValuef()/2., fY.getValuef()) / 64.);
617 colors[p.index] = lx.hsb(
618 (lx.getBaseHuef() + 0.3 * abs(p.x - hOffX.getValuef())) % 360,
619 constrain(80 + 40 * fV, 0, 100),
620 constrain(100 - (30 - fV * falloff.getValuef()) * modDist(i + (s*63)%61, offset.getValuef() * strip.metrics.numPoints, strip.metrics.numPoints), 0, 100)
621 );
622 ++i;
623 }
624 ++s;
625 }
626 }
627 }
628
629 class SwipeTransition extends SCTransition {
630
631 final BasicParameter bleed = new BasicParameter("WIDTH", 0.5);
632
633 SwipeTransition(GLucose glucose) {
634 super(glucose);
635 setDuration(5000);
636 addParameter(bleed);
637 }
638
639 void computeBlend(int[] c1, int[] c2, double progress) {
640 float bleedf = 10 + bleed.getValuef() * 200.;
641 float xPos = (float) (-bleedf + progress * (model.xMax + bleedf));
642 for (Point p : model.points) {
643 float d = (p.x - xPos) / bleedf;
644 if (d < 0) {
645 colors[p.index] = c2[p.index];
646 } else if (d > 1) {
647 colors[p.index] = c1[p.index];
648 } else {
649 colors[p.index] = lerpColor(c2[p.index], c1[p.index], d, RGB);
650 }
651 }
652 }
653 }
654
655 abstract class BlendTransition extends SCTransition {
656
657 final int blendType;
658
659 BlendTransition(GLucose glucose, int blendType) {
660 super(glucose);
661 this.blendType = blendType;
662 }
663
664 void computeBlend(int[] c1, int[] c2, double progress) {
665 if (progress < 0.5) {
666 for (int i = 0; i < c1.length; ++i) {
667 colors[i] = lerpColor(
668 c1[i],
669 blendColor(c1[i], c2[i], blendType),
670 (float) (2.*progress),
671 RGB);
672 }
673 } else {
674 for (int i = 0; i < c1.length; ++i) {
675 colors[i] = lerpColor(
676 c2[i],
677 blendColor(c1[i], c2[i], blendType),
678 (float) (2.*(1. - progress)),
679 RGB);
680 }
681 }
682 }
683 }
684
685 class MultiplyTransition extends BlendTransition {
686 MultiplyTransition(GLucose glucose) {
687 super(glucose, MULTIPLY);
688 }
689 }
690
691 class ScreenTransition extends BlendTransition {
692 ScreenTransition(GLucose glucose) {
693 super(glucose, SCREEN);
694 }
695 }
696
697 class BurnTransition extends BlendTransition {
698 BurnTransition(GLucose glucose) {
699 super(glucose, BURN);
700 }
701 }
702
703 class DodgeTransition extends BlendTransition {
704 DodgeTransition(GLucose glucose) {
705 super(glucose, DODGE);
706 }
707 }
708
709 class OverlayTransition extends BlendTransition {
710 OverlayTransition(GLucose glucose) {
711 super(glucose, OVERLAY);
712 }
713 }
714
715 class AddTransition extends BlendTransition {
716 AddTransition(GLucose glucose) {
717 super(glucose, ADD);
718 }
719 }
720
721 class SubtractTransition extends BlendTransition {
722 SubtractTransition(GLucose glucose) {
723 super(glucose, SUBTRACT);
724 }
725 }
726
727 class SoftLightTransition extends BlendTransition {
728 SoftLightTransition(GLucose glucose) {
729 super(glucose, SOFT_LIGHT);
730 }
731 }
732
733 class BassPod extends SCPattern {
734
735 private GraphicEQ eq = null;
736
737 public BassPod(GLucose glucose) {
738 super(glucose);
739 }
740
741 protected void onActive() {
742 if (eq == null) {
743 eq = new GraphicEQ(lx, 16);
744 eq.slope.setValue(0.6);
745 addParameter(eq.level);
746 addParameter(eq.range);
747 addParameter(eq.attack);
748 addParameter(eq.release);
749 addParameter(eq.slope);
750 }
751 }
752
753 public void run(double deltaMs) {
754 eq.run(deltaMs);
755
756 float bassLevel = eq.getAverageLevel(0, 5);
757
758 for (Point p : model.points) {
759 int avgIndex = (int) constrain(1 + abs(p.x-model.xMax/2.)/(model.xMax/2.)*(eq.numBands-5), 0, eq.numBands-5);
760 float value = 0;
761 for (int i = avgIndex; i < avgIndex + 5; ++i) {
762 value += eq.getLevel(i);
763 }
764 value /= 5.;
765
766 float b = constrain(8 * (value*model.yMax - abs(p.y-model.yMax/2.)), 0, 100);
767 colors[p.index] = lx.hsb(
768 (lx.getBaseHuef() + abs(p.y - model.cy) + abs(p.x - model.cx)) % 360,
769 constrain(bassLevel*240 - .6*dist(p.x, p.y, model.cx, model.cy), 0, 100),
770 b
771 );
772 }
773 }
774 }
775
776
777 class CubeEQ extends SCPattern {
778
779 private GraphicEQ eq = null;
780
781 private final BasicParameter edge = new BasicParameter("EDGE", 0.5);
782 private final BasicParameter clr = new BasicParameter("CLR", 0.5);
783 private final BasicParameter blockiness = new BasicParameter("BLK", 0.5);
784
785 public CubeEQ(GLucose glucose) {
786 super(glucose);
787 }
788
789 protected void onActive() {
790 if (eq == null) {
791 eq = new GraphicEQ(lx, 16);
792 addParameter(eq.level);
793 addParameter(eq.range);
794 addParameter(eq.attack);
795 addParameter(eq.release);
796 addParameter(eq.slope);
797 addParameter(edge);
798 addParameter(clr);
799 addParameter(blockiness);
800 }
801 }
802
803 public void run(double deltaMs) {
804 eq.run(deltaMs);
805
806 float edgeConst = 2 + 30*edge.getValuef();
807 float clrConst = 1.1 + clr.getValuef();
808
809 for (Point p : model.points) {
810 float avgIndex = constrain(2 + p.x / model.xMax * (eq.numBands-4), 0, eq.numBands-4);
811 int avgFloor = (int) avgIndex;
812
813 float leftVal = eq.getLevel(avgFloor);
814 float rightVal = eq.getLevel(avgFloor+1);
815 float smoothValue = lerp(leftVal, rightVal, avgIndex-avgFloor);
816
817 float chunkyValue = (
818 eq.getLevel(avgFloor/4*4) +
819 eq.getLevel(avgFloor/4*4 + 1) +
820 eq.getLevel(avgFloor/4*4 + 2) +
821 eq.getLevel(avgFloor/4*4 + 3)
822 ) / 4.;
823
824 float value = lerp(smoothValue, chunkyValue, blockiness.getValuef());
825
826 float b = constrain(edgeConst * (value*model.yMax - p.y), 0, 100);
827 colors[p.index] = lx.hsb(
828 (480 + lx.getBaseHuef() - min(clrConst*p.y, 120)) % 360,
829 100,
830 b
831 );
832 }
833 }
834 }
835
836 class BoomEffect extends SCEffect {
837
838 final BasicParameter falloff = new BasicParameter("WIDTH", 0.5);
839 final BasicParameter speed = new BasicParameter("SPD", 0.5);
840 final BasicParameter bright = new BasicParameter("BRT", 1.0);
841 final BasicParameter sat = new BasicParameter("SAT", 0.2);
842 List<Layer> layers = new ArrayList<Layer>();
843 final float maxr = sqrt(model.xMax*model.xMax + model.yMax*model.yMax + model.zMax*model.zMax) + 10;
844
845 class Layer {
846 LinearEnvelope boom = new LinearEnvelope(-40, 500, 1300);
847
848 Layer() {
849 addModulator(boom);
850 trigger();
851 }
852
853 void trigger() {
854 float falloffv = falloffv();
855 boom.setRange(-100 / falloffv, maxr + 100/falloffv, 4000 - speed.getValuef() * 3300);
856 boom.trigger();
857 }
858
859 void doApply(int[] colors) {
860 float brightv = 100 * bright.getValuef();
861 float falloffv = falloffv();
862 float satv = sat.getValuef() * 100;
863 float huev = lx.getBaseHuef();
864 for (Point p : model.points) {
865 colors[p.index] = blendColor(
866 colors[p.index],
867 lx.hsb(huev, satv, constrain(brightv - falloffv*abs(boom.getValuef() - dist(p.x, 2*p.y, 3*p.z, model.xMax/2, model.yMax, model.zMax*1.5)), 0, 100)),
868 ADD);
869 }
870 }
871 }
872
873 BoomEffect(GLucose glucose) {
874 super(glucose, true);
875 addParameter(falloff);
876 addParameter(speed);
877 addParameter(bright);
878 addParameter(sat);
879 }
880
881 public void onEnable() {
882 for (Layer l : layers) {
883 if (!l.boom.isRunning()) {
884 l.trigger();
885 return;
886 }
887 }
888 layers.add(new Layer());
889 }
890
891 private float falloffv() {
892 return 20 - 19 * falloff.getValuef();
893 }
894
895 public void onTrigger() {
896 onEnable();
897 }
898
899 public void doApply(int[] colors) {
900 for (Layer l : layers) {
901 if (l.boom.isRunning()) {
902 l.doApply(colors);
903 }
904 }
905 }
906 }
907
908 public class PianoKeyPattern extends SCPattern {
909
910 final LinearEnvelope[] cubeBrt;
911 final SinLFO base[];
912 final BasicParameter attack = new BasicParameter("ATK", 0.1);
913 final BasicParameter release = new BasicParameter("REL", 0.5);
914 final BasicParameter level = new BasicParameter("AMB", 0.6);
915
916 PianoKeyPattern(GLucose glucose) {
917 super(glucose);
918
919 addParameter(attack);
920 addParameter(release);
921 addParameter(level);
922 cubeBrt = new LinearEnvelope[model.cubes.size() / 4];
923 for (int i = 0; i < cubeBrt.length; ++i) {
924 addModulator(cubeBrt[i] = new LinearEnvelope(0, 0, 100));
925 }
926 base = new SinLFO[model.cubes.size() / 12];
927 for (int i = 0; i < base.length; ++i) {
928 addModulator(base[i] = new SinLFO(0, 1, 7000 + 1000*i)).trigger();
929 }
930 }
931
932 private float getAttackTime() {
933 return 15 + attack.getValuef()*attack.getValuef() * 2000;
934 }
935
936 private float getReleaseTime() {
937 return 15 + release.getValuef() * 3000;
938 }
939
940 private LinearEnvelope getEnvelope(int index) {
941 return cubeBrt[index % cubeBrt.length];
942 }
943
944 private SinLFO getBase(int index) {
945 return base[index % base.length];
946 }
947
948 public boolean noteOn(Note note) {
949 LinearEnvelope env = getEnvelope(note.getPitch());
950 env.setEndVal(min(1, env.getValuef() + (note.getVelocity() / 127.)), getAttackTime()).start();
951 return true;
952 }
953
954 public boolean noteOff(Note note) {
955 getEnvelope(note.getPitch()).setEndVal(0, getReleaseTime()).start();
956 return true;
957 }
958
959 public void run(double deltaMs) {
960 int i = 0;
961 float huef = lx.getBaseHuef();
962 float levelf = level.getValuef();
963 for (Cube c : model.cubes) {
964 float v = max(getBase(i).getValuef() * levelf/4., getEnvelope(i++).getValuef());
965 setColor(c, lx.hsb(
966 (huef + 20*v + abs(c.cx-model.xMax/2.)*.3 + c.cy) % 360,
967 min(100, 120*v),
968 100*v
969 ));
970 }
971 }
972 }
973
974 class CrossSections extends SCPattern {
975
976 final SinLFO x = new SinLFO(0, model.xMax, 5000);
977 final SinLFO y = new SinLFO(0, model.yMax, 6000);
978 final SinLFO z = new SinLFO(0, model.zMax, 7000);
979
980 final BasicParameter xw = new BasicParameter("XWID", 0.3);
981 final BasicParameter yw = new BasicParameter("YWID", 0.3);
982 final BasicParameter zw = new BasicParameter("ZWID", 0.3);
983 final BasicParameter xr = new BasicParameter("XRAT", 0.7);
984 final BasicParameter yr = new BasicParameter("YRAT", 0.6);
985 final BasicParameter zr = new BasicParameter("ZRAT", 0.5);
986 final BasicParameter xl = new BasicParameter("XLEV", 1);
987 final BasicParameter yl = new BasicParameter("YLEV", 1);
988 final BasicParameter zl = new BasicParameter("ZLEV", 0.5);
989
990
991 CrossSections(GLucose glucose) {
992 super(glucose);
993 addModulator(x).trigger();
994 addModulator(y).trigger();
995 addModulator(z).trigger();
996 addParams();
997 }
998
999 protected void addParams() {
1000 addParameter(xr);
1001 addParameter(yr);
1002 addParameter(zr);
1003 addParameter(xw);
1004 addParameter(xl);
1005 addParameter(yl);
1006 addParameter(zl);
1007 addParameter(yw);
1008 addParameter(zw);
1009 }
1010
1011 void onParameterChanged(LXParameter p) {
1012 if (p == xr) {
1013 x.setDuration(10000 - 8800*p.getValuef());
1014 } else if (p == yr) {
1015 y.setDuration(10000 - 9000*p.getValuef());
1016 } else if (p == zr) {
1017 z.setDuration(10000 - 9000*p.getValuef());
1018 }
1019 }
1020
1021 float xv, yv, zv;
1022
1023 protected void updateXYZVals() {
1024 xv = x.getValuef();
1025 yv = y.getValuef();
1026 zv = z.getValuef();
1027 }
1028
1029 public void run(double deltaMs) {
1030 updateXYZVals();
1031
1032 float xlv = 100*xl.getValuef();
1033 float ylv = 100*yl.getValuef();
1034 float zlv = 100*zl.getValuef();
1035
1036 float xwv = 100. / (10 + 40*xw.getValuef());
1037 float ywv = 100. / (10 + 40*yw.getValuef());
1038 float zwv = 100. / (10 + 40*zw.getValuef());
1039
1040 for (Point p : model.points) {
1041 color c = 0;
1042 c = blendColor(c, lx.hsb(
1043 (lx.getBaseHuef() + p.x/10 + p.y/3) % 360,
1044 constrain(140 - 1.1*abs(p.x - model.xMax/2.), 0, 100),
1045 max(0, xlv - xwv*abs(p.x - xv))
1046 ), ADD);
1047 c = blendColor(c, lx.hsb(
1048 (lx.getBaseHuef() + 80 + p.y/10) % 360,
1049 constrain(140 - 2.2*abs(p.y - model.yMax/2.), 0, 100),
1050 max(0, ylv - ywv*abs(p.y - yv))
1051 ), ADD);
1052 c = blendColor(c, lx.hsb(
1053 (lx.getBaseHuef() + 160 + p.z / 10 + p.y/2) % 360,
1054 constrain(140 - 2.2*abs(p.z - model.zMax/2.), 0, 100),
1055 max(0, zlv - zwv*abs(p.z - zv))
1056 ), ADD);
1057 colors[p.index] = c;
1058 }
1059 }
1060 }
1061
1062 class Blinders extends SCPattern {
1063
1064 final SinLFO[] m;
1065 final TriangleLFO r;
1066 final SinLFO s;
1067 final TriangleLFO hs;
1068
1069 public Blinders(GLucose glucose) {
1070 super(glucose);
1071 m = new SinLFO[12];
1072 for (int i = 0; i < m.length; ++i) {
1073 addModulator(m[i] = new SinLFO(0.5, 120, (120000. / (3+i)))).trigger();
1074 }
1075 addModulator(r = new TriangleLFO(9000, 15000, 29000)).trigger();
1076 addModulator(s = new SinLFO(-20, 275, 11000)).trigger();
1077 addModulator(hs = new TriangleLFO(0.1, 0.5, 15000)).trigger();
1078 s.modulateDurationBy(r);
1079 }
1080
1081 public void run(double deltaMs) {
1082 float hv = lx.getBaseHuef();
1083 int si = 0;
1084 for (Strip strip : model.strips) {
1085 int i = 0;
1086 float mv = m[si % m.length].getValuef();
1087 for (Point p : strip.points) {
1088 colors[p.index] = lx.hsb(
1089 (hv + p.z + p.y*hs.getValuef()) % 360,
1090 min(100, abs(p.x - s.getValuef())/2.),
1091 max(0, 100 - mv/2. - mv * abs(i - (strip.metrics.length-1)/2.))
1092 );
1093 ++i;
1094 }
1095 ++si;
1096 }
1097 }
1098 }
1099
1100 class Psychedelia extends SCPattern {
1101
1102 final int NUM = 3;
1103 SinLFO m = new SinLFO(-0.5, NUM-0.5, 9000);
1104 SinLFO s = new SinLFO(-20, 147, 11000);
1105 TriangleLFO h = new TriangleLFO(0, 240, 19000);
1106 SinLFO c = new SinLFO(-.2, .8, 31000);
1107
1108 Psychedelia(GLucose glucose) {
1109 super(glucose);
1110 addModulator(m).trigger();
1111 addModulator(s).trigger();
1112 addModulator(h).trigger();
1113 addModulator(c).trigger();
1114 }
1115
1116 void run(double deltaMs) {
1117 float huev = h.getValuef();
1118 float cv = c.getValuef();
1119 float sv = s.getValuef();
1120 float mv = m.getValuef();
1121 int i = 0;
1122 for (Strip strip : model.strips) {
1123 for (Point p : strip.points) {
1124 colors[p.index] = lx.hsb(
1125 (huev + i*constrain(cv, 0, 2) + p.z/2. + p.x/4.) % 360,
1126 min(100, abs(p.y-sv)),
1127 max(0, 100 - 50*abs((i%NUM) - mv))
1128 );
1129 }
1130 ++i;
1131 }
1132 }
1133 }
1134
1135 class AskewPlanes extends SCPattern {
1136
1137 class Plane {
1138 private final SinLFO a;
1139 private final SinLFO b;
1140 private final SinLFO c;
1141 float av = 1;
1142 float bv = 1;
1143 float cv = 1;
1144 float denom = 0.1;
1145
1146 Plane(int i) {
1147 addModulator(a = new SinLFO(-1, 1, 4000 + 1029*i)).trigger();
1148 addModulator(b = new SinLFO(-1, 1, 11000 - 1104*i)).trigger();
1149 addModulator(c = new SinLFO(-50, 50, 4000 + 1000*i * ((i % 2 == 0) ? 1 : -1))).trigger();
1150 }
1151
1152 void run(double deltaMs) {
1153 av = a.getValuef();
1154 bv = b.getValuef();
1155 cv = c.getValuef();
1156 denom = sqrt(av*av + bv*bv);
1157 }
1158 }
1159
1160 final Plane[] planes;
1161 final int NUM_PLANES = 3;
1162
1163 AskewPlanes(GLucose glucose) {
1164 super(glucose);
1165 planes = new Plane[NUM_PLANES];
1166 for (int i = 0; i < planes.length; ++i) {
1167 planes[i] = new Plane(i);
1168 }
1169 }
1170
1171 public void run(double deltaMs) {
1172 float huev = lx.getBaseHuef();
1173
1174 // This is super fucking bizarre. But if this is a for loop, the framerate
1175 // tanks to like 30FPS, instead of 60. Call them manually and it works fine.
1176 // Doesn't make ANY sense... there must be some weird side effect going on
1177 // with the Processing internals perhaps?
1178 // for (Plane plane : planes) {
1179 // plane.run(deltaMs);
1180 // }
1181 planes[0].run(deltaMs);
1182 planes[1].run(deltaMs);
1183 planes[2].run(deltaMs);
1184
1185 for (Point p : model.points) {
1186 float d = MAX_FLOAT;
1187 for (Plane plane : planes) {
1188 if (plane.denom != 0) {
1189 d = min(d, abs(plane.av*(p.x-model.cx) + plane.bv*(p.y-model.cy) + plane.cv) / plane.denom);
1190 }
1191 }
1192 colors[p.index] = lx.hsb(
1193 (huev + abs(p.x-model.cx)*.3 + p.y*.8) % 360,
1194 max(0, 100 - .8*abs(p.x - model.cx)),
1195 constrain(140 - 10.*d, 0, 100)
1196 );
1197 }
1198 }
1199 }
1200
1201 class ShiftingPlane extends SCPattern {
1202
1203 final SinLFO a = new SinLFO(-.2, .2, 5300);
1204 final SinLFO b = new SinLFO(1, -1, 13300);
1205 final SinLFO c = new SinLFO(-1.4, 1.4, 5700);
1206 final SinLFO d = new SinLFO(-10, 10, 9500);
1207
1208 ShiftingPlane(GLucose glucose) {
1209 super(glucose);
1210 addModulator(a).trigger();
1211 addModulator(b).trigger();
1212 addModulator(c).trigger();
1213 addModulator(d).trigger();
1214 }
1215
1216 public void run(double deltaMs) {
1217 float hv = lx.getBaseHuef();
1218 float av = a.getValuef();
1219 float bv = b.getValuef();
1220 float cv = c.getValuef();
1221 float dv = d.getValuef();
1222 float denom = sqrt(av*av + bv*bv + cv*cv);
1223 for (Point p : model.points) {
1224 float d = abs(av*(p.x-model.cx) + bv*(p.y-model.cy) + cv*(p.z-model.cz) + dv) / denom;
1225 colors[p.index] = lx.hsb(
1226 (hv + abs(p.x-model.cx)*.6 + abs(p.y-model.cy)*.9 + abs(p.z - model.cz)) % 360,
1227 constrain(110 - d*6, 0, 100),
1228 constrain(130 - 7*d, 0, 100)
1229 );
1230 }
1231 }
1232 }
1233
1234 class Traktor extends SCPattern {
1235
1236 final int FRAME_WIDTH = 60;
1237
1238 final BasicParameter speed = new BasicParameter("SPD", 0.5);
1239
1240 private float[] bass = new float[FRAME_WIDTH];
1241 private float[] treble = new float[FRAME_WIDTH];
1242
1243 private int index = 0;
1244 private GraphicEQ eq = null;
1245
1246 public Traktor(GLucose glucose) {
1247 super(glucose);
1248 for (int i = 0; i < FRAME_WIDTH; ++i) {
1249 bass[i] = 0;
1250 treble[i] = 0;
1251 }
1252 addParameter(speed);
1253 }
1254
1255 public void onActive() {
1256 if (eq == null) {
1257 eq = new GraphicEQ(lx, 16);
1258 eq.slope.setValue(0.6);
1259 eq.level.setValue(0.65);
1260 eq.range.setValue(0.35);
1261 eq.release.setValue(0.4);
1262 addParameter(eq.level);
1263 addParameter(eq.range);
1264 addParameter(eq.attack);
1265 addParameter(eq.release);
1266 addParameter(eq.slope);
1267 }
1268 }
1269
1270 int counter = 0;
1271
1272 public void run(double deltaMs) {
1273 eq.run(deltaMs);
1274
1275 int stepThresh = (int) (40 - 39*speed.getValuef());
1276 counter += deltaMs;
1277 if (counter < stepThresh) {
1278 return;
1279 }
1280 counter = counter % stepThresh;
1281
1282 index = (index + 1) % FRAME_WIDTH;
1283
1284 float rawBass = eq.getAverageLevel(0, 4);
1285 float rawTreble = eq.getAverageLevel(eq.numBands-7, 7);
1286
1287 bass[index] = rawBass * rawBass * rawBass * rawBass;
1288 treble[index] = rawTreble * rawTreble;
1289
1290 for (Point p : model.points) {
1291 int i = (int) constrain((model.xMax - p.x) / model.xMax * FRAME_WIDTH, 0, FRAME_WIDTH-1);
1292 int pos = (index + FRAME_WIDTH - i) % FRAME_WIDTH;
1293
1294 colors[p.index] = lx.hsb(
1295 (360 + lx.getBaseHuef() + .8*abs(p.x-model.cx)) % 360,
1296 100,
1297 constrain(9 * (bass[pos]*model.cy - abs(p.y - model.cy + 5)), 0, 100)
1298 );
1299 colors[p.index] = blendColor(colors[p.index], lx.hsb(
1300 (400 + lx.getBaseHuef() + .5*abs(p.x-model.cx)) % 360,
1301 60,
1302 constrain(5 * (treble[pos]*.6*model.cy - abs(p.y - model.cy)), 0, 100)
1303
1304 ), ADD);
1305 }
1306 }
1307 }
1308
1309 class ColorFuckerEffect extends SCEffect {
1310
1311 final BasicParameter level = new BasicParameter("BRT", 1);
1312 final BasicParameter desat = new BasicParameter("DSAT", 0);
1313 final BasicParameter hueShift = new BasicParameter("HSHFT", 0);
1314 final BasicParameter sharp = new BasicParameter("SHARP", 0);
1315 final BasicParameter soft = new BasicParameter("SOFT", 0);
1316 final BasicParameter mono = new BasicParameter("MONO", 0);
1317 final BasicParameter invert = new BasicParameter("INVERT", 0);
1318
1319
1320 float[] hsb = new float[3];
1321
1322 ColorFuckerEffect(GLucose glucose) {
1323 super(glucose);
1324 addParameter(level);
1325 addParameter(desat);
1326 addParameter(sharp);
1327 addParameter(hueShift);
1328 addParameter(soft);
1329 addParameter(mono);
1330 addParameter(invert);
1331 }
1332
1333 public void doApply(int[] colors) {
1334 if (!enabled) {
1335 return;
1336 }
1337 float bMod = level.getValuef();
1338 float sMod = 1 - desat.getValuef();
1339 float hMod = hueShift.getValuef();
1340 float fSharp = 1/(1.0001-sharp.getValuef());
1341 float fSoft = soft.getValuef();
1342 boolean mon = mono.getValuef() > 0.5;
1343 boolean ivt = invert.getValuef() > 0.5;
1344 if (bMod < 1 || sMod < 1 || hMod > 0 || fSharp > 0 || ivt || mon || fSoft > 0) {
1345 for (int i = 0; i < colors.length; ++i) {
1346 lx.RGBtoHSB(colors[i], hsb);
1347 if (mon) {
1348 hsb[0] = lx.getBaseHuef() / 360.;
1349 }
1350 if (ivt) {
1351 hsb[2] = 1 - hsb[2];
1352 }
1353 if (fSharp > 0) {
1354 hsb[2] = hsb[2] < .5 ? pow(hsb[2],fSharp) : 1-pow(1-hsb[2],fSharp);
1355 }
1356 if (fSoft > 0) {
1357 if (hsb[2] > 0.5) {
1358 hsb[2] = lerp(hsb[2], 0.5 + 2 * (hsb[2]-0.5)*(hsb[2]-0.5), fSoft);
1359 } else {
1360 hsb[2] = lerp(hsb[2], 0.5 * sqrt(2*hsb[2]), fSoft);
1361 }
1362 }
1363 colors[i] = lx.hsb(
1364 (360. * hsb[0] + hMod*360.) % 360,
1365 100. * hsb[1] * sMod,
1366 100. * hsb[2] * bMod
1367 );
1368 }
1369 }
1370 }
1371 }
1372
1373 class QuantizeEffect extends SCEffect {
1374
1375 color[] quantizedFrame;
1376 float lastQuant;
1377 final BasicParameter amount = new BasicParameter("AMT", 0);
1378
1379 QuantizeEffect(GLucose glucose) {
1380 super(glucose);
1381 quantizedFrame = new color[glucose.lx.total];
1382 lastQuant = 0;
1383 }
1384
1385 public void doApply(int[] colors) {
1386 float fQuant = amount.getValuef();
1387 if (fQuant > 0) {
1388 float tRamp = (lx.tempo.rampf() % (1./pow(2,floor((1-fQuant) * 4))));
1389 float f = lastQuant;
1390 lastQuant = tRamp;
1391 if (tRamp > f) {
1392 for (int i = 0; i < colors.length; ++i) {
1393 colors[i] = quantizedFrame[i];
1394 }
1395 return;
1396 }
1397 }
1398 for (int i = 0; i < colors.length; ++i) {
1399 quantizedFrame[i] = colors[i];
1400 }
1401 }
1402 }
1403
1404 class BlurEffect extends SCEffect {
1405
1406 final LXParameter amount = new BasicParameter("AMT", 0);
1407 final int[] frame;
1408 final LinearEnvelope env = new LinearEnvelope(0, 1, 100);
1409
1410 BlurEffect(GLucose glucose) {
1411 super(glucose);
1412 addParameter(amount);
1413 addModulator(env);
1414 frame = new int[lx.total];
1415 for (int i = 0; i < frame.length; ++i) {
1416 frame[i] = #000000;
1417 }
1418 }
1419
1420 public void onEnable() {
1421 env.setRangeFromHereTo(1, 400).start();
1422 for (int i = 0; i < frame.length; ++i) {
1423 frame[i] = #000000;
1424 }
1425 }
1426
1427 public void onDisable() {
1428 env.setRangeFromHereTo(0, 1000).start();
1429 }
1430
1431 public void doApply(int[] colors) {
1432 float amt = env.getValuef() * amount.getValuef();
1433 if (amt > 0) {
1434 amt = (1 - amt);
1435 amt = 1 - (amt*amt*amt);
1436 for (int i = 0; i < colors.length; ++i) {
1437 // frame[i] = colors[i] = blendColor(colors[i], lerpColor(#000000, frame[i], amt, RGB), SCREEN);
1438 frame[i] = colors[i] = lerpColor(colors[i], blendColor(colors[i], frame[i], SCREEN), amt, RGB);
1439 }
1440 }
1441
1442 }
1443 }