Add blank pattern to right deck, clean up bouncyballs
authorMark Slee <mcslee@Mark-Slees-MacBook-Pro.local>
Fri, 27 Sep 2013 04:50:11 +0000 (21:50 -0700)
committerMark Slee <mcslee@Mark-Slees-MacBook-Pro.local>
Fri, 27 Sep 2013 04:50:36 +0000 (21:50 -0700)
MarkSlee.pde
SugarCubes.pde
TestPatterns.pde
_Internals.pde

index 55f09227316d7491bb759e6d829d331e951fc795..699df38d540d5fb9cfa391b825bf4e636f253415 100644 (file)
@@ -1,15 +1,17 @@
-class Flitters extends SCPattern {
+class BouncyBalls extends SCPattern {
   
-  static final int NUM_FLITTERS = 6;
+  static final int NUM_BALLS = 6;
   
-  class Flitter {
+  class BouncyBall {
        
     Accelerator yPos;
     TriangleLFO xPos = new TriangleLFO(0, model.xMax, random(8000, 19000));
+    float zPos;
     
-    Flitter(int i) {
+    BouncyBall(int i) {
       addModulator(xPos).setBasis(random(0, TWO_PI)).start();
       addModulator(yPos = new Accelerator(0, 0, 0));
+      zPos = lerp(model.zMin, model.zMax, (i+2.) / (NUM_BALLS + 4.));
     }
     
     void bounce(float midiVel) {
@@ -33,8 +35,11 @@ class Flitters extends SCPattern {
         }
       }
       float falloff = 130.f / (12 + blobSize.getValuef() * 36);
+      float xv = xPos.getValuef();
+      float yv = yPos.getValuef();
+      
       for (Point p : model.points) {
-        float d = dist(p.x, p.y, xPos.getValuef(), yPos.getValuef());
+        float d = sqrt((p.x-xv)*(p.x-xv) + (p.y-yv)*(p.y-yv) + .1*(p.z-zPos)*(p.z-zPos));
         float b = constrain(130 - falloff*d, 0, 100);
         if (b > 0) {
           colors[p.index] = blendColor(colors[p.index], color(
@@ -47,16 +52,16 @@ class Flitters extends SCPattern {
     }
   }
   
-  final Flitter[] flitters = new Flitter[NUM_FLITTERS];
+  final BouncyBall[] balls = new BouncyBall[NUM_BALLS];
   
   final BasicParameter bounce = new BasicParameter("BNC", .8);
   final BasicParameter flr = new BasicParameter("FLR", 0);
   final BasicParameter blobSize = new BasicParameter("SIZE", 0.5);
   
-  Flitters(GLucose glucose) {
+  BouncyBalls(GLucose glucose) {
     super(glucose);
-    for (int i = 0; i < flitters.length; ++i) {
-      flitters[i] = new Flitter(i);
+    for (int i = 0; i < balls.length; ++i) {
+      balls[i] = new BouncyBall(i);
     }
     addParameter(bounce);
     addParameter(flr);
@@ -65,14 +70,14 @@ class Flitters extends SCPattern {
   
   public void run(double deltaMs) {
     setColors(#000000);
-    for (Flitter f : flitters) {
-      f.run(deltaMs);
+    for (BouncyBall b : balls) {
+      b.run(deltaMs);
     }
   }
   
   public boolean noteOnReceived(Note note) {
-    int pitch = (note.getPitch() + note.getChannel()) % NUM_FLITTERS;
-    flitters[pitch].bounce(note.getVelocity());
+    int pitch = (note.getPitch() + note.getChannel()) % NUM_BALLS;
+    balls[pitch].bounce(note.getVelocity());
     return true;
   }
 }
index ef89237e2223531445568c8ca3507202e2de8bb6..42817a6b0ead39692be310c41a22d2e04a7f5903 100644 (file)
@@ -26,8 +26,8 @@
 LXPattern[] patterns(GLucose glucose) {
   return new LXPattern[] {
     
-   // Slee
-    new Flitters(glucose),
+    // Slee
+    new BouncyBalls(glucose),
     new Swarm(glucose),
     new SpaceTime(glucose),
     new ShiftingPlane(glucose),
@@ -41,7 +41,7 @@ LXPattern[] patterns(GLucose glucose) {
     new CubeEQ(glucose).setEligible(false),
     new PianoKeyPattern(glucose).setEligible(false),
 
-     // DanH
+    // DanH
     new Noise(glucose),
     new Play(glucose),
     new Pong(glucose),
index f8d59eecd9f9a65eafc98ba678af3f5e8fdb601c..2f04698a5c9d30c9874cb22c8b07bafd16928553 100644 (file)
@@ -1,3 +1,13 @@
+class BlankPattern extends SCPattern {
+  BlankPattern(GLucose glucose) {
+    super(glucose);
+  }
+  
+  public void run(double deltaMs) {
+    setColors(#000000);
+  }
+}
+
 abstract class TestPattern extends SCPattern {
   public TestPattern(GLucose glucose) {
     super(glucose);
index c86ff963f2bb1cabb94810a89ab19e9ec49a504e..f25f74a89473cece0229c6e052d65296ec1377e4 100644 (file)
@@ -72,14 +72,31 @@ float eyeR, eyeA, eyeX, eyeY, eyeZ, midX, midY, midZ;
 /**
  * Engine construction and initialization.
  */
-LXPattern[] _patterns(GLucose glucose) {
+
+LXTransition _transition(GLucose glucose) {
+  return new DissolveTransition(glucose.lx).setDuration(1000);
+}
+
+LXPattern[] _leftPatterns(GLucose glucose) {
   LXPattern[] patterns = patterns(glucose);
   for (LXPattern p : patterns) {
-    p.setTransition(new DissolveTransition(glucose.lx).setDuration(1000));
+    p.setTransition(_transition(glucose));
   }
   return patterns;
 }
 
+LXPattern[] _rightPatterns(GLucose glucose) {
+  LXPattern[] patterns = _leftPatterns(glucose);
+  LXPattern[] rightPatterns = new LXPattern[patterns.length+1];
+  int i = 0;
+  rightPatterns[i++] = new BlankPattern(glucose).setTransition(_transition(glucose));
+  for (LXPattern p : patterns) {
+    rightPatterns[i++] = p;
+  }
+  return rightPatterns;
+}
+  
+
 void logTime(String evt) {
   int now = millis();
   println(evt + ": " + (now - lastMillis) + "ms");
@@ -108,8 +125,8 @@ void setup() {
 
   // Set the patterns
   Engine engine = lx.engine;
-  engine.setPatterns(patterns = _patterns(glucose));
-  engine.addDeck(_patterns(glucose));
+  engine.setPatterns(patterns = _leftPatterns(glucose));
+  engine.addDeck(_rightPatterns(glucose));
   logTime("Built patterns");
   glucose.setTransitions(transitions(glucose));
   logTime("Built transitions");