Model is now in processing, not glucose
[SugarCubes.git] / SugarCubes.pde
index 81bb28316be5cf1af9575cb1e956ba3fdb4c547f..5fe3c7bb5f412a83a63e07129e44a0ec35dcca09 100644 (file)
@@ -15,8 +15,8 @@
  *
  * Welcome to the Sugar Cubes! This Processing sketch is a fun place to build
  * animations, effects, and interactions for the platform. Most of the icky
- * code guts are embedded in the GLucose library extension. If you're an
- * artist, you shouldn't need to worry about any of that.
+ * code guts are embedded in the HeronLX library, or files prefixed with
+ * an underscore. If you're an artist, you shouldn't need to worry about that.
  *
  * Below, you will find definitions of the Patterns, Effects, and Interactions.
  * If you're an artist, create a new tab in the Processing environment with
 
 LXPattern[] patterns(GLucose glucose) {
   return new LXPattern[] {        
+
     new SineSphere(glucose),
     //new CubeCurl(glucose), 
      
     // Slee
     // new Cathedrals(glucose),
-     new Swarm(glucose),
+    new Swarm(glucose),
     new MidiMusic(glucose),
     new Pulley(glucose),
     
@@ -50,15 +51,21 @@ LXPattern[] patterns(GLucose glucose) {
     new CubeEQ(glucose).setEligible(false),
     new PianoKeyPattern(glucose).setEligible(false),
 
+    // AntonK
+    new AKPong(glucose),
+
     // DanH
     new Noise(glucose),
     new Play (glucose),
     new Pong (glucose),
     new Worms(glucose),
 
+    // JR
+    new Gimbal(glucose),
+    
     // Alex G
      
-     // Tim
+    // Tim
     new TimMetronome(glucose),
     new TimPlanes(glucose),
     new TimPinwheels(glucose),
@@ -66,8 +73,6 @@ LXPattern[] patterns(GLucose glucose) {
     new TimCubes(glucose),
     // new TimTrace(glucose),
     new TimSpheres(glucose),
-    
-    
 
     // Jackie
     new JackieSquares(glucose),
@@ -75,8 +80,10 @@ LXPattern[] patterns(GLucose glucose) {
     new JackieDots(glucose),
 
     // L8on
-    new L8onLife(glucose),     
-    
+    new L8onAutomata(glucose),
+    new L8onLife(glucose),
+    new L8onStripLife(glucose),
+
     // Vincent
     new VSTowers(glucose),
     
@@ -92,8 +99,6 @@ LXPattern[] patterns(GLucose glucose) {
     new Swim(glucose),
     new Balance(glucose),
     
-
-    
     // Ben
     // new Sandbox(glucose),
     new TowerParams(glucose),
@@ -101,10 +106,7 @@ LXPattern[] patterns(GLucose glucose) {
     new GranimTestPattern2(glucose),
     
     // Shaheen
-    //new HelixPattern(glucose).setEligible(false),
-    
-    //JR
-    new Gimbal(glucose),
+    // new HelixPattern(glucose).setEligible(false),
     
     // Sam
     new JazzRainbow(glucose),
@@ -119,9 +121,6 @@ LXPattern[] patterns(GLucose glucose) {
     new TestTowerPattern(glucose),
     new TestProjectionPattern(glucose),
     new TestStripPattern(glucose),
-    new TestBassMapping(glucose),
-    new TestFloorMapping(glucose),
-    new TestSpeakerMapping(glucose),    
     // new TestHuePattern(glucose),
     // new TestXPattern(glucose),
     // new TestYPattern(glucose),
@@ -140,8 +139,8 @@ LXTransition[] transitions(GLucose glucose) {
     new SwipeTransition(glucose),
     new FadeTransition(lx),
 //  new SubtractTransition(glucose),   // similar to multiply - dh
-//  new BurnTransition(glucose),               // similar to multiply - dh
-//  new ScreenTransition(glucose),             // same as add -dh
+//  new BurnTransition(glucose),       // similar to multiply - dh
+//  new ScreenTransition(glucose),     // same as add -dh
 //  new SoftLightTransition(glucose),  // same as overlay -dh
   };
 }