Some cleanups and listen to deck for transition changes
[SugarCubes.git] / TestPatterns.pde
CommitLineData
6c1a9e53
MS
1abstract class TestPattern extends SCPattern {
2 public TestPattern(GLucose glucose) {
3 super(glucose);
4 setEligible(false);
5 }
6}
7
1d75c8a9
MS
8class TestSpeakerMapping extends TestPattern {
9 TestSpeakerMapping(GLucose glucose) {
10 super(glucose);
11 }
12
13 public void run(int deltaMs) {
14 int h = 0;
15 for (Speaker speaker : model.speakers) {
16 for (Strip strip : speaker.strips) {
17 float b = 100;
18 for (Point p : strip.points) {
d429ada5
MS
19 colors[p.index] = color(h % 360, 100, b);
20 b = max(0, b - 10);
21 }
22 h += 70;
1d75c8a9
MS
23 }
24 }
25 }
26
27}
28
29class TestBassMapping extends TestPattern {
30 TestBassMapping(GLucose glucose) {
31 super(glucose);
32 }
33
34 public void run(int deltaMs) {
35 int[] strips = { 2, 1, 0, 3, 13, 12, 15, 14, 9, 8, 11, 10, 5, 4, 7, 6 };
36 int h = 0;
37 for (int si : strips) {
38 float b = 100;
39 for (Point p : model.bassBox.strips.get(si).points) {
40 colors[p.index] = color(h % 360, 100, b);
41 b = max(0, b - 10);
42 }
43 h += 70;
44 }
45 }
46}
47
48class TestFloorMapping extends TestPattern {
49 TestFloorMapping(GLucose glucose) {
50 super(glucose);
51 }
52
53 public void run(int deltaMs) {
54 int[] strutIndices = {6, 5, 4, 3, 2, 1, 0, 7};
55 int h = 0;
56 for (int si : strutIndices) {
57 float b = 100;
58 for (Point p : model.bassBox.struts.get(si).points) {
59 colors[p.index] = color(h % 360, 100, b);
60 b = max(0, b - 10);
61 }
62 h += 50;
63 }
64 int[] floorIndices = {0, 1, 2, 3};
65 h = 0;
66 for (int fi : floorIndices) {
67 float b = 100;
68 for (Point p : model.boothFloor.strips.get(fi).points) {
69 colors[p.index] = color(h, 100, b);
70 b = max(0, b - 3);
71 }
72 h += 90;
73 }
74 }
75}
76
254fbb68 77class TestStripPattern extends TestPattern {
e105ef7c
MS
78
79 SinLFO d = new SinLFO(4, 40, 4000);
80
254fbb68
MS
81 public TestStripPattern(GLucose glucose) {
82 super(glucose);
e105ef7c 83 addModulator(d).trigger();
254fbb68
MS
84 }
85
86 public void run(int deltaMs) {
87 for (Strip s : model.strips) {
88 for (Point p : s.points) {
89 colors[p.index] = color(
90 lx.getBaseHuef(),
91 100,
e105ef7c 92 max(0, 100 - d.getValuef()*dist(p.x, p.y, s.cx, s.cy))
254fbb68
MS
93 );
94 }
95 }
96 }
97}
98
7ef61b89
MS
99/**
100 * Simplest demonstration of using the rotating master hue.
101 * All pixels are full-on the same color.
102 */
6c1a9e53 103class TestHuePattern extends TestPattern {
49815cc0
MS
104 public TestHuePattern(GLucose glucose) {
105 super(glucose);
106 }
7ef61b89 107
49815cc0 108 public void run(int deltaMs) {
7ef61b89
MS
109 // Access the core master hue via this method call
110 float hv = lx.getBaseHuef();
49815cc0 111 for (int i = 0; i < colors.length; ++i) {
7ef61b89 112 colors[i] = color(hv, 100, 100);
49815cc0
MS
113 }
114 }
115}
116
7ef61b89
MS
117/**
118 * Test of a wave moving across the X axis.
119 */
6c1a9e53 120class TestXPattern extends TestPattern {
7ef61b89 121 private final SinLFO xPos = new SinLFO(0, model.xMax, 4000);
49815cc0
MS
122 public TestXPattern(GLucose glucose) {
123 super(glucose);
124 addModulator(xPos).trigger();
125 }
126 public void run(int deltaMs) {
7ef61b89 127 float hv = lx.getBaseHuef();
87f6fa39 128 for (Point p : model.points) {
7ef61b89
MS
129 // This is a common technique for modulating brightness.
130 // You can use abs() to determine the distance between two
131 // values. The further away this point is from an exact
132 // point, the more we decrease its brightness
133 float bv = max(0, 100 - abs(p.fx - xPos.getValuef()));
134 colors[p.index] = color(hv, 100, bv);
49815cc0
MS
135 }
136 }
137}
138
7ef61b89
MS
139/**
140 * Test of a wave on the Y axis.
141 */
6c1a9e53 142class TestYPattern extends TestPattern {
7ef61b89 143 private final SinLFO yPos = new SinLFO(0, model.yMax, 4000);
49815cc0
MS
144 public TestYPattern(GLucose glucose) {
145 super(glucose);
146 addModulator(yPos).trigger();
147 }
148 public void run(int deltaMs) {
7ef61b89 149 float hv = lx.getBaseHuef();
87f6fa39 150 for (Point p : model.points) {
7ef61b89
MS
151 float bv = max(0, 100 - abs(p.fy - yPos.getValuef()));
152 colors[p.index] = color(hv, 100, bv);
49815cc0
MS
153 }
154 }
155}
156
7ef61b89
MS
157/**
158 * Test of a wave on the Z axis.
159 */
6c1a9e53 160class TestZPattern extends TestPattern {
7ef61b89 161 private final SinLFO zPos = new SinLFO(0, model.zMax, 4000);
49815cc0
MS
162 public TestZPattern(GLucose glucose) {
163 super(glucose);
164 addModulator(zPos).trigger();
165 }
166 public void run(int deltaMs) {
7ef61b89 167 float hv = lx.getBaseHuef();
87f6fa39 168 for (Point p : model.points) {
7ef61b89
MS
169 float bv = max(0, 100 - abs(p.fz - zPos.getValuef()));
170 colors[p.index] = color(hv, 100, bv);
49815cc0
MS
171 }
172 }
173}
f3f5a876 174
186bc4d3
MS
175/**
176 * This shows how to iterate over towers, enumerated in the model.
177 */
6c1a9e53 178class TestTowerPattern extends TestPattern {
186bc4d3
MS
179 private final SawLFO towerIndex = new SawLFO(0, model.towers.size(), 1000*model.towers.size());
180
181 public TestTowerPattern(GLucose glucose) {
182 super(glucose);
183 addModulator(towerIndex).trigger();
186bc4d3
MS
184 }
185
186 public void run(int deltaMs) {
186bc4d3
MS
187 int ti = 0;
188 for (Tower t : model.towers) {
189 for (Point p : t.points) {
190 colors[p.index] = color(
191 lx.getBaseHuef(),
192 100,
92341dd9 193 max(0, 100 - 80*LXUtils.wrapdistf(ti, towerIndex.getValuef(), model.towers.size()))
186bc4d3
MS
194 );
195 }
196 ++ti;
197 }
198 }
199
200}
201
7ef61b89
MS
202/**
203 * This is a demonstration of how to use the projection library. A projection
204 * creates a mutation of the coordinates of all the points in the model, creating
205 * virtual x,y,z coordinates. In effect, this is like virtually rotating the entire
206 * art car. However, since in reality the car does not move, the result is that
207 * it appears that the object we are drawing on the car is actually moving.
208 *
209 * Keep in mind that what we are creating a projection of is the view coordinates.
210 * Depending on your intuition, some operations may feel backwards. For instance,
211 * if you translate the view to the right, it will make it seem that the object
212 * you are drawing has moved to the left. If you scale the view up 2x, objects
213 * drawn with the same absolute values will seem to be half the size.
214 *
215 * If this feels counterintuitive at first, don't worry. Just remember that you
216 * are moving the pixels, not the structure. We're dealing with a finite set
217 * of sparse, non-uniformly spaced pixels. Mutating the structure would move
218 * things to a space where there are no pixels in 99% of the cases.
219 */
6c1a9e53 220class TestProjectionPattern extends TestPattern {
f3f5a876 221
7ef61b89
MS
222 private final Projection projection;
223 private final SawLFO angle = new SawLFO(0, TWO_PI, 9000);
224 private final SinLFO yPos = new SinLFO(-20, 40, 5000);
f3f5a876 225
7ef61b89 226 public TestProjectionPattern(GLucose glucose) {
f3f5a876
MS
227 super(glucose);
228 projection = new Projection(model);
229 addModulator(angle).trigger();
230 addModulator(yPos).trigger();
231 }
232
233 public void run(int deltaMs) {
7ef61b89
MS
234 // For the same reasons described above, it may logically feel to you that
235 // some of these operations are in reverse order. Again, just keep in mind that
236 // the car itself is what's moving, not the object
f3f5a876 237 projection.reset(model)
7ef61b89
MS
238
239 // Translate so the center of the car is the origin, offset by yPos
e0cea600 240 .translateCenter(model, 0, yPos.getValuef(), 0)
7ef61b89
MS
241
242 // Rotate around the origin (now the center of the car) about an X-vector
f3f5a876 243 .rotate(angle.getValuef(), 1, 0, 0)
7ef61b89
MS
244
245 // Scale up the Y axis (objects will look smaller in that access)
f3f5a876
MS
246 .scale(1, 1.5, 1);
247
7ef61b89 248 float hv = lx.getBaseHuef();
f3f5a876
MS
249 for (Coord c : projection) {
250 float d = sqrt(c.x*c.x + c.y*c.y + c.z*c.z); // distance from origin
251 // d = abs(d-60) + max(0, abs(c.z) - 20); // life saver / ring thing
e105ef7c 252 d = max(0, abs(c.y) - 10 + .1*abs(c.z) + .02*abs(c.x)); // plane / spear thing
f3f5a876 253 colors[c.index] = color(
7ef61b89 254 (hv + .6*abs(c.x) + abs(c.z)) % 360,
f3f5a876 255 100,
e105ef7c 256 constrain(140 - 40*d, 0, 100)
f3f5a876
MS
257 );
258 }
259 }
260}
bf551144 261
6c1a9e53 262class TestCubePattern extends TestPattern {
254d34c0 263
cdb88d5d 264 private SawLFO index = new SawLFO(0, Cube.POINTS_PER_CUBE, Cube.POINTS_PER_CUBE*60);
254d34c0
MS
265
266 TestCubePattern(GLucose glucose) {
267 super(glucose);
268 addModulator(index).start();
269 }
270
271 public void run(int deltaMs) {
272 for (Cube c : model.cubes) {
273 int i = 0;
274 for (Point p : c.points) {
275 colors[p.index] = color(
276 lx.getBaseHuef(),
277 100,
278 max(0, 100 - 80.*abs(i - index.getValuef()))
279 );
280 ++i;
281 }
282 }
283 }
284}
285
6c1a9e53 286class MappingTool extends TestPattern {
bf551144
MS
287
288 private int cubeIndex = 0;
289 private int stripIndex = 0;
2bae07c9 290 private int channelIndex = 0;
bf551144 291
2bae07c9
MS
292 public final int MAPPING_MODE_ALL = 0;
293 public final int MAPPING_MODE_CHANNEL = 1;
294 public final int MAPPING_MODE_SINGLE_CUBE = 2;
295 public int mappingMode = MAPPING_MODE_ALL;
bf551144
MS
296
297 public final int CUBE_MODE_ALL = 0;
298 public final int CUBE_MODE_SINGLE_STRIP = 1;
299 public final int CUBE_MODE_STRIP_PATTERN = 2;
300 public int cubeMode = CUBE_MODE_ALL;
301
302 public boolean channelModeRed = true;
303 public boolean channelModeGreen = false;
304 public boolean channelModeBlue = false;
305
45f43cc2 306 private final int numChannels;
2bae07c9 307
45f43cc2 308 private final PandaMapping[] pandaMappings;
84086fa3
MS
309 private PandaMapping activePanda;
310 private ChannelMapping activeChannel;
2bae07c9 311
45f43cc2 312 MappingTool(GLucose glucose, PandaMapping[] pandaMappings) {
bf551144 313 super(glucose);
45f43cc2 314 this.pandaMappings = pandaMappings;
1685dc84 315 numChannels = pandaMappings.length * PandaMapping.CHANNELS_PER_BOARD;
2bae07c9
MS
316 setChannel();
317 }
d626bc9b
MS
318
319 public int numChannels() {
320 return numChannels;
321 }
2bae07c9
MS
322
323 private void setChannel() {
84086fa3
MS
324 activePanda = pandaMappings[channelIndex / PandaMapping.CHANNELS_PER_BOARD];
325 activeChannel = activePanda.channelList[channelIndex % PandaMapping.CHANNELS_PER_BOARD];
2bae07c9
MS
326 }
327
84086fa3
MS
328 private int indexOfCubeInChannel(Cube c) {
329 if (activeChannel.mode == ChannelMapping.MODE_CUBES) {
330 int i = 1;
331 for (int index : activeChannel.objectIndices) {
9f823de4 332 if ((index >= 0) && (c == model.getCubeByRawIndex(index))) {
84086fa3
MS
333 return i;
334 }
335 ++i;
2bae07c9 336 }
2bae07c9
MS
337 }
338 return 0;
bf551144
MS
339 }
340
341 private void printInfo() {
342 println("Cube:" + cubeIndex + " Strip:" + (stripIndex+1));
343 }
344
345 public void cube(int delta) {
346 int len = model.cubes.size();
347 cubeIndex = (len + cubeIndex + delta) % len;
348 printInfo();
349 }
350
351 public void strip(int delta) {
45f43cc2 352 int len = Cube.STRIPS_PER_CUBE;
bf551144
MS
353 stripIndex = (len + stripIndex + delta) % len;
354 printInfo();
355 }
356
357 public void run(int deltaMs) {
358 color off = color(0, 0, 0);
359 color c = off;
360 color r = #FF0000;
361 color g = #00FF00;
362 color b = #0000FF;
363 if (channelModeRed) c |= r;
364 if (channelModeGreen) c |= g;
365 if (channelModeBlue) c |= b;
366
367 int ci = 0;
368 for (Cube cube : model.cubes) {
2bae07c9 369 boolean cubeOn = false;
84086fa3 370 int indexOfCubeInChannel = indexOfCubeInChannel(cube);
2bae07c9
MS
371 switch (mappingMode) {
372 case MAPPING_MODE_ALL: cubeOn = true; break;
373 case MAPPING_MODE_SINGLE_CUBE: cubeOn = (cubeIndex == ci); break;
d626bc9b 374 case MAPPING_MODE_CHANNEL: cubeOn = (indexOfCubeInChannel > 0); break;
2bae07c9
MS
375 }
376 if (cubeOn) {
377 if (mappingMode == MAPPING_MODE_CHANNEL) {
378 color cc = off;
84086fa3 379 switch (indexOfCubeInChannel) {
2bae07c9
MS
380 case 1: cc = r; break;
381 case 2: cc = r|g; break;
382 case 3: cc = g; break;
383 case 4: cc = b; break;
384 case 5: cc = r|b; break;
385 }
386 setColor(cube, cc);
387 } else if (cubeMode == CUBE_MODE_STRIP_PATTERN) {
bf551144
MS
388 int si = 0;
389 color sc = off;
390 for (Strip strip : cube.strips) {
a797d019
MS
391 int faceI = si / Face.STRIPS_PER_FACE;
392 switch (faceI) {
bf551144
MS
393 case 0: sc = r; break;
394 case 1: sc = g; break;
395 case 2: sc = b; break;
396 case 3: sc = r|g|b; break;
397 }
a797d019 398 if (si % Face.STRIPS_PER_FACE == 2) {
bf551144
MS
399 sc = r|g;
400 }
401 setColor(strip, sc);
402 ++si;
403 }
404 } else if (cubeMode == CUBE_MODE_SINGLE_STRIP) {
405 setColor(cube, off);
406 setColor(cube.strips.get(stripIndex), c);
407 } else {
408 setColor(cube, c);
409 }
410 } else {
411 setColor(cube, off);
412 }
413 ++ci;
414 }
d626bc9b
MS
415 }
416
417 public void setCube(int index) {
418 cubeIndex = index % model.cubes.size();
bf551144
MS
419 }
420
421 public void incCube() {
422 cubeIndex = (cubeIndex + 1) % model.cubes.size();
423 }
424
425 public void decCube() {
426 --cubeIndex;
427 if (cubeIndex < 0) {
428 cubeIndex += model.cubes.size();
429 }
430 }
d626bc9b
MS
431
432 public void setChannel(int index) {
433 channelIndex = index % numChannels;
434 setChannel();
435 }
2bae07c9
MS
436
437 public void incChannel() {
45f43cc2 438 channelIndex = (channelIndex + 1) % numChannels;
2bae07c9
MS
439 setChannel();
440 }
441
442 public void decChannel() {
9f823de4 443 channelIndex = (channelIndex + numChannels - 1) % numChannels;
2bae07c9
MS
444 setChannel();
445 }
bf551144 446
d626bc9b
MS
447 public void setStrip(int index) {
448 stripIndex = index % Cube.STRIPS_PER_CUBE;
449 }
450
bf551144 451 public void incStrip() {
92c06c97 452 stripIndex = (stripIndex + 1) % Cube.STRIPS_PER_CUBE;
bf551144
MS
453 }
454
455 public void decStrip() {
9f823de4 456 stripIndex = (stripIndex + Cube.STRIPS_PER_CUBE - 1) % Cube.STRIPS_PER_CUBE;
bf551144
MS
457 }
458
d626bc9b 459 public void keyPressed(UIMapping uiMapping) {
bf551144 460 switch (keyCode) {
2bae07c9
MS
461 case UP: if (mappingMode == MAPPING_MODE_CHANNEL) incChannel(); else incCube(); break;
462 case DOWN: if (mappingMode == MAPPING_MODE_CHANNEL) decChannel(); else decCube(); break;
bf551144
MS
463 case LEFT: decStrip(); break;
464 case RIGHT: incStrip(); break;
465 }
466 switch (key) {
467 case 'r': channelModeRed = !channelModeRed; break;
468 case 'g': channelModeGreen = !channelModeGreen; break;
469 case 'b': channelModeBlue = !channelModeBlue; break;
470 }
d626bc9b
MS
471 uiMapping.setChannelID(channelIndex+1);
472 uiMapping.setCubeID(cubeIndex+1);
473 uiMapping.setStripID(stripIndex+1);
474 uiMapping.redraw();
bf551144 475 }
d626bc9b 476
bf551144 477}