X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TestPatterns.pde;h=52e8ea45f72a2929cf371b55ef38be3834b0df4e;hb=045b432d2b2bb8accd36080f3e501be60ff32782;hp=9b465311b62be1a0cfa1b65ef035541971358f36;hpb=2bae07c96a1b27bf4dc3cbe0082be5ae374fa0d9;p=SugarCubes.git diff --git a/TestPatterns.pde b/TestPatterns.pde index 9b46531..52e8ea4 100644 --- a/TestPatterns.pde +++ b/TestPatterns.pde @@ -112,7 +112,7 @@ class TestProjectionPattern extends SCPattern { projection.reset(model) // Translate so the center of the car is the origin, offset by yPos - .translateCenter(0, yPos.getValuef(), 0) + .translateCenter(model, 0, yPos.getValuef(), 0) // Rotate around the origin (now the center of the car) about an X-vector .rotate(angle.getValuef(), 1, 0, 0) @@ -134,6 +134,30 @@ class TestProjectionPattern extends SCPattern { } } +class TestCubePattern extends SCPattern { + + private SawLFO index = new SawLFO(0, Cube.POINTS_PER_CUBE, Cube.POINTS_PER_CUBE*60); + + TestCubePattern(GLucose glucose) { + super(glucose); + addModulator(index).start(); + } + + public void run(int deltaMs) { + for (Cube c : model.cubes) { + int i = 0; + for (Point p : c.points) { + colors[p.index] = color( + lx.getBaseHuef(), + 100, + max(0, 100 - 80.*abs(i - index.getValuef())) + ); + ++i; + } + } + } +} + class MappingTool extends SCPattern { private int cubeIndex = 0; @@ -154,30 +178,37 @@ class MappingTool extends SCPattern { public boolean channelModeGreen = false; public boolean channelModeBlue = false; - private final static int NUM_CHANNELS = 16; + private final int numChannels; - private final int[][] frontChannels; - private final int[][] rearChannels; - private int[] activeChannels; + private final PandaMapping[] pandaMappings; + private PandaMapping activeMapping; + private int mappingChannelIndex; - MappingTool(GLucose glucose, int[][]frontChannels, int[][]rearChannels) { + MappingTool(GLucose glucose, PandaMapping[] pandaMappings) { super(glucose); - this.frontChannels = frontChannels; - this.rearChannels = rearChannels; + this.pandaMappings = pandaMappings; + int totalChannels = 0; + for (PandaMapping pm : pandaMappings) { + totalChannels += pm.channelList.length; + } + numChannels = totalChannels; setChannel(); } private void setChannel() { - if (channelIndex < frontChannels.length) { - activeChannels = frontChannels[channelIndex]; - } else { - activeChannels = rearChannels[channelIndex - frontChannels.length]; + mappingChannelIndex = channelIndex; + for (PandaMapping pm : pandaMappings) { + if (mappingChannelIndex < pm.channelList.length) { + activeMapping = pm; + break; + } + mappingChannelIndex -= pm.channelList.length; } } private int cubeInChannel(Cube c) { int i = 1; - for (int index : activeChannels) { + for (int index : activeMapping.channelList[mappingChannelIndex]) { if (c == model.getCubeByRawIndex(index)) { return i; } @@ -197,7 +228,7 @@ class MappingTool extends SCPattern { } public void strip(int delta) { - int len = Cube.CLIPS_PER_CUBE * Clip.STRIPS_PER_CLIP; + int len = Cube.STRIPS_PER_CUBE; stripIndex = (len + stripIndex + delta) % len; printInfo(); } @@ -236,14 +267,14 @@ class MappingTool extends SCPattern { int si = 0; color sc = off; for (Strip strip : cube.strips) { - int clipI = si / Clip.STRIPS_PER_CLIP; - switch (clipI) { + int faceI = si / Face.STRIPS_PER_FACE; + switch (faceI) { case 0: sc = r; break; case 1: sc = g; break; case 2: sc = b; break; case 3: sc = r|g|b; break; } - if (si % Clip.STRIPS_PER_CLIP == 2) { + if (si % Face.STRIPS_PER_FACE == 2) { sc = r|g; } setColor(strip, sc); @@ -275,25 +306,25 @@ class MappingTool extends SCPattern { } public void incChannel() { - channelIndex = (channelIndex + 1) % NUM_CHANNELS; + channelIndex = (channelIndex + 1) % numChannels; setChannel(); } public void decChannel() { --channelIndex; if (channelIndex < 0) { - channelIndex += NUM_CHANNELS; + channelIndex += numChannels; } setChannel(); } public void incStrip() { - int stripsPerCube = Cube.CLIPS_PER_CUBE * Clip.STRIPS_PER_CLIP; + int stripsPerCube = Cube.FACES_PER_CUBE * Face.STRIPS_PER_FACE; stripIndex = (stripIndex + 1) % stripsPerCube; } public void decStrip() { - int stripsPerCube = Cube.CLIPS_PER_CUBE * Clip.STRIPS_PER_CLIP; + int stripsPerCube = Cube.FACES_PER_CUBE * Face.STRIPS_PER_FACE; --stripIndex; if (stripIndex < 0) { stripIndex += stripsPerCube;