Few tiny cleanups
[SugarCubes.git] / _Internals.pde
index 0362a7c871753e5932e5ea05284ecf9d5cfcf6e5..b593f3ef07b9c4aa7db088430348d3da9c653ae7 100644 (file)
@@ -347,107 +347,6 @@ void draw() {
   }  
 }
 
-class UICubesLayer extends UICameraComponent {
-  void onDraw(UI ui) {
-    color[] simulationColors = lx.getColors();
-    String displayMode = uiCrossfader.getDisplayMode();
-    if (displayMode == "A") {
-      simulationColors = lx.engine.getDeck(LEFT_DECK).getColors();
-    } else if (displayMode == "B") {
-      simulationColors = lx.engine.getDeck(RIGHT_DECK).getColors();
-    }
-
-    long simulationStart = System.nanoTime();
-    if (simulationOn) {
-      drawSimulation(simulationColors);
-    }
-    simulationNanos = System.nanoTime() - simulationStart;
-    
-    camera();
-    javax.media.opengl.GL gl = ((PGraphicsOpenGL)g).beginGL();
-    gl.glClear(javax.media.opengl.GL.GL_DEPTH_BUFFER_BIT);
-    ((PGraphicsOpenGL)g).endGL();
-    strokeWeight(1);
-  }
-  
-  void drawSimulation(color[] simulationColors) {
-    translate(0, 30, 0);
-  
-    noStroke();
-    fill(#141414);
-    drawBox(0, -TRAILER_HEIGHT, 0, 0, 0, 0, TRAILER_WIDTH, TRAILER_HEIGHT, TRAILER_DEPTH, TRAILER_HEIGHT/2.);
-    fill(#070707);
-    stroke(#222222);
-    beginShape();
-    vertex(0, 0, 0);
-    vertex(TRAILER_WIDTH, 0, 0);
-    vertex(TRAILER_WIDTH, 0, TRAILER_DEPTH);
-    vertex(0, 0, TRAILER_DEPTH);
-    endShape();
-  
-    // Draw the logo on the front of platform  
-    pushMatrix();
-    translate(0, 0, -1);
-    float s = .07;
-    scale(s, -s, s);
-    image(logo, TRAILER_WIDTH/2/s-logo.width/2, TRAILER_HEIGHT/2/s-logo.height/2-2/s);
-    popMatrix();
-    
-    noStroke();
-    for (Cube c : model.cubes) {
-      drawCube(c);
-    }
-  
-    noFill();
-    strokeWeight(2);
-    beginShape(POINTS);
-    for (LXPoint p : model.points) {
-      stroke(simulationColors[p.index]);
-      vertex(p.x, p.y, p.z);
-    }
-    endShape();
-  }
-  
-  void drawCube(Cube c) {
-    float in = .15;
-    noStroke();
-    fill(#393939);  
-    drawBox(c.x+in, c.y+in, c.z+in, c.rx, c.ry, c.rz, Cube.EDGE_WIDTH-in*2, Cube.EDGE_HEIGHT-in*2, Cube.EDGE_WIDTH-in*2, Cube.CHANNEL_WIDTH-in);
-  }
-  
-  void drawBox(float x, float y, float z, float rx, float ry, float rz, float xd, float yd, float zd, float sw) {
-    pushMatrix();
-    translate(x, y, z);
-    rotate(rx / 180. * PI, -1, 0, 0);
-    rotate(ry / 180. * PI, 0, -1, 0);
-    rotate(rz / 180. * PI, 0, 0, -1);
-    for (int i = 0; i < 4; ++i) {
-      float wid = (i % 2 == 0) ? xd : zd;
-      
-      beginShape();
-      vertex(0, 0);
-      vertex(wid, 0);
-      vertex(wid, yd);
-      vertex(wid - sw, yd);
-      vertex(wid - sw, sw);
-      vertex(0, sw);
-      endShape();
-      beginShape();
-      vertex(0, sw);
-      vertex(0, yd);
-      vertex(wid - sw, yd);
-      vertex(wid - sw, yd - sw);
-      vertex(sw, yd - sw);
-      vertex(sw, sw);
-      endShape();
-  
-      translate(wid, 0, 0);
-      rotate(HALF_PI, 0, -1, 0);
-    }
-    popMatrix();
-  }
-}
-
 void drawDiagnostics(long drawNanos, long simulationNanos, long uiNanos, long gammaNanos) {
   float ws = 4 / 1000000.;
   int thirtyfps = 1000000000 / 30;