X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TestPatterns.pde;h=1c2ea70e3cb832e465d7753a304f6ca96fa1b4eb;hb=1c44211b1a15965afee7056a2f1d43a1306df61b;hp=4c7899591a88e50bf338d2cf5b827c02509ce5fc;hpb=190d91c2948b274a2dbaf4ec07450b4ebf2feece;p=SugarCubes.git diff --git a/TestPatterns.pde b/TestPatterns.pde index 4c78995..1c2ea70 100644 --- a/TestPatterns.pde +++ b/TestPatterns.pde @@ -26,7 +26,7 @@ class TestSpeakerMapping extends TestPattern { for (Strip strip : speaker.strips) { float b = 100; for (Point p : strip.points) { - colors[p.index] = color(h % 360, 100, b); + colors[p.index] = lx.hsb(h % 360, 100, b); b = max(0, b - 10); } h += 70; @@ -47,7 +47,7 @@ class TestBassMapping extends TestPattern { for (int si : strips) { float b = 100; for (Point p : model.bassBox.strips.get(si).points) { - colors[p.index] = color(h % 360, 100, b); + colors[p.index] = lx.hsb(h % 360, 100, b); b = max(0, b - 10); } h += 70; @@ -66,7 +66,7 @@ class TestFloorMapping extends TestPattern { for (int si : strutIndices) { float b = 100; for (Point p : model.bassBox.struts.get(si).points) { - colors[p.index] = color(h % 360, 100, b); + colors[p.index] = lx.hsb(h % 360, 100, b); b = max(0, b - 10); } h += 50; @@ -76,7 +76,7 @@ class TestFloorMapping extends TestPattern { for (int fi : floorIndices) { float b = 100; for (Point p : model.boothFloor.strips.get(fi).points) { - colors[p.index] = color(h, 100, b); + colors[p.index] = lx.hsb(h, 100, b); b = max(0, b - 3); } h += 90; @@ -84,6 +84,59 @@ class TestFloorMapping extends TestPattern { } } +class TestPerformancePattern extends TestPattern { + + final BasicParameter ops = new BasicParameter("OPS", 0); + final BasicParameter iter = new BasicParameter("ITER", 0); + + TestPerformancePattern(GLucose glucose) { + super(glucose); + addParameter(ops); + addParameter(iter); + } + + public void run(double deltaMs) { + float x = 1; + for (int j = 0; j < ops.getValuef() * 400000; ++j) { + x *= random(0, 1); + } + + if (iter.getValuef() < 0.25) { + for (Point p : model.points) { + colors[p.index] = lx.hsb( + (p.x*.1 + p.y*.1) % 360, + 100, + 100 + ); + } + } else if (iter.getValuef() < 0.5) { + for (int i = 0; i < colors.length; ++i) { + colors[i] = lx.hsb( + (90 + model.px[i]*.1 + model.py[i]*.1) % 360, + 100, + 100 + ); + } + } else if (iter.getValuef() < 0.75) { + for (int i = 0; i < colors.length; ++i) { + colors[i] = lx.hsb( + (180 + model.p[3*i]*.1 + model.p[3*i+1]*.1) % 360, + 100, + 100 + ); + } + } else { + for (int i = 0; i < colors.length; ++i) { + colors[i] = lx.hsb( + (270 + model.x(i)*.1 + model.y(i)*.1) % 360, + 100, + 100 + ); + } + } + } +} + class TestStripPattern extends TestPattern { SinLFO d = new SinLFO(4, 40, 4000); @@ -96,7 +149,7 @@ class TestStripPattern extends TestPattern { public void run(double deltaMs) { for (Strip s : model.strips) { for (Point p : s.points) { - colors[p.index] = color( + colors[p.index] = lx.hsb( lx.getBaseHuef(), 100, max(0, 100 - d.getValuef()*dist(p.x, p.y, s.cx, s.cy)) @@ -119,7 +172,7 @@ class TestHuePattern extends TestPattern { // Access the core master hue via this method call float hv = lx.getBaseHuef(); for (int i = 0; i < colors.length; ++i) { - colors[i] = color(hv, 100, 100); + colors[i] = lx.hsb(hv, 100, 100); } } } @@ -141,7 +194,7 @@ class TestXPattern extends TestPattern { // values. The further away this point is from an exact // point, the more we decrease its brightness float bv = max(0, 100 - abs(p.x - xPos.getValuef())); - colors[p.index] = color(hv, 100, bv); + colors[p.index] = lx.hsb(hv, 100, bv); } } } @@ -159,7 +212,7 @@ class TestYPattern extends TestPattern { float hv = lx.getBaseHuef(); for (Point p : model.points) { float bv = max(0, 100 - abs(p.y - yPos.getValuef())); - colors[p.index] = color(hv, 100, bv); + colors[p.index] = lx.hsb(hv, 100, bv); } } } @@ -177,7 +230,7 @@ class TestZPattern extends TestPattern { float hv = lx.getBaseHuef(); for (Point p : model.points) { float bv = max(0, 100 - abs(p.z - zPos.getValuef())); - colors[p.index] = color(hv, 100, bv); + colors[p.index] = lx.hsb(hv, 100, bv); } } } @@ -197,7 +250,7 @@ class TestTowerPattern extends TestPattern { int ti = 0; for (Tower t : model.towers) { for (Point p : t.points) { - colors[p.index] = color( + colors[p.index] = lx.hsb( lx.getBaseHuef(), 100, max(0, 100 - 80*LXUtils.wrapdistf(ti, towerIndex.getValuef(), model.towers.size())) @@ -260,7 +313,7 @@ class TestProjectionPattern extends TestPattern { float d = sqrt(c.x*c.x + c.y*c.y + c.z*c.z); // distance from origin // d = abs(d-60) + max(0, abs(c.z) - 20); // life saver / ring thing d = max(0, abs(c.y) - 10 + .1*abs(c.z) + .02*abs(c.x)); // plane / spear thing - colors[c.index] = color( + colors[c.index] = lx.hsb( (hv + .6*abs(c.x) + abs(c.z)) % 360, 100, constrain(140 - 40*d, 0, 100) @@ -282,7 +335,7 @@ class TestCubePattern extends TestPattern { for (Cube c : model.cubes) { int i = 0; for (Point p : c.points) { - colors[p.index] = color( + colors[p.index] = lx.hsb( lx.getBaseHuef(), 100, max(0, 100 - 80.*abs(i - index.getValuef())) @@ -365,7 +418,7 @@ class MappingTool extends TestPattern { } public void run(double deltaMs) { - color off = color(0, 0, 0); + color off = #000000; color c = off; color r = #FF0000; color g = #00FF00;