Overhaul GL rendering to use Processing primitives, much faster
authorMark Slee <mcslee@Mark-Slees-MacBook-Pro.local>
Fri, 28 Jun 2013 18:44:00 +0000 (11:44 -0700)
committerMark Slee <mcslee@Mark-Slees-MacBook-Pro.local>
Fri, 28 Jun 2013 18:44:00 +0000 (11:44 -0700)
_Internals.pde
_Overlay.pde
code/GLucose.jar

index 5603698adf2d4f907aa832a1ec09ef9e27db2661..7936724ce327b594270fae946e26a24f6c082b9b 100644 (file)
@@ -34,7 +34,7 @@ import rwmidi.*;
 final int VIEWPORT_WIDTH = 900;
 final int VIEWPORT_HEIGHT = 700;
 
-int targetFramerate = 30;
+int targetFramerate = 45;
 
 int startMillis, lastMillis;
 GLucose glucose;
@@ -54,6 +54,10 @@ boolean pandaBoardsEnabled = false;
 
 boolean debugMode = false;
 
+// Camera variables
+final float eyeR = -270;
+float eyeA, eyeX, eyeY, eyeZ, midX, midY, midZ;
+
 void setup() {
   startMillis = lastMillis = millis();
 
@@ -99,6 +103,15 @@ void setup() {
   SCMidiDevices.initializeStandardDevices(glucose);
   logTime("Setup MIDI devices");
   
+  // Setup camera
+  midX = glucose.model.xMax/2 + 20;
+  midY = glucose.model.yMax/2;
+  midZ = glucose.model.zMax/2;
+  eyeA = .15;
+  eyeY = midY + 20;
+  eyeX = midX + eyeR*sin(eyeA);
+  eyeZ = midZ + eyeR*cos(eyeA);
+  
   println("Total setup: " + (millis() - startMillis) + "ms");
   println("Hit the 'p' key to toggle Panda Board output");
 }
@@ -128,12 +141,43 @@ void logTime(String evt) {
 }
 
 void draw() {
-  // The glucose engine deals with the core simulation here, we don't need
-  // to do anything specific. This method just needs to exist.
+  // Draws the simulation and the 2D UI overlay
+  background(40);
+  color[] colors = glucose.getColors();
+  camera(
+    eyeX, eyeY, eyeZ,
+    midX, midY, midZ,
+    0, -1, 0
+  );
+  stroke(#333333);
+  fill(#292929);
+  float yFloor = -3;
+  beginShape();
+  vertex(0, yFloor, 0);
+  vertex(glucose.model.xMax, yFloor, 0);
+  vertex(glucose.model.xMax, yFloor, glucose.model.zMax);
+  vertex(0, yFloor, glucose.model.zMax);  
+  endShape(CLOSE);
+  
+  noFill();
+  strokeWeight(2);
+  beginShape(POINTS);
+  for (Point p : glucose.model.points) {
+    stroke(colors[p.index]);
+    vertex(p.fx, p.fy, p.fz);
+  }
+  endShape();
+  
+  // 2D Overlay
+  camera();
+  javax.media.opengl.GL gl= ((PGraphicsOpenGL)g).beginGL();
+  gl.glClear(javax.media.opengl.GL.GL_DEPTH_BUFFER_BIT);
+  ((PGraphicsOpenGL)g).endGL();
+  strokeWeight(1);
+  drawUI();
   
   // TODO(mcslee): move into GLucose engine
   if (pandaBoardsEnabled) {
-    color[] colors = glucose.getColors();
     pandaFront.send(colors);
     pandaRear.send(colors);
   }
@@ -195,4 +239,35 @@ void keyPressed() {
   }
 }
 
+int mx, my;
+
+void mousePressed() {
+  if (mouseX > ui.leftPos) {
+    ui.mousePressed();
+  } else {
+    mx = mouseX;
+    my = mouseY;
+  }
+}
+
+void mouseDragged() {
+  if (mouseX > ui.leftPos) {
+    ui.mouseDragged();
+  } else {
+    int dx = mouseX - mx;
+    int dy = mouseY - my;
+    mx = mouseX;
+    my = mouseY;
+    eyeA += dx*.003;
+    eyeX = midX + eyeR*sin(eyeA);
+    eyeZ = midZ + eyeR*cos(eyeA);
+    eyeY += dy;
+  }
+}
+
+void mouseReleased() {
+  if (mouseX > ui.leftPos) {
+    ui.mouseReleased();
+  }
+}
 
index 827223a5e83f89ef70c8be045290c94ea10a1eea..5ee02a4a3349a1567b7237ad4ac4374fddbed03d 100644 (file)
@@ -612,25 +612,5 @@ class MappingUI extends OverlayUI {
     }
     
   }
-
-
-}
-
-void mousePressed() {
-  if (mouseX > ui.leftPos) {
-    ui.mousePressed();
-  }
-}
-
-void mouseReleased() {
-  if (mouseX > ui.leftPos) {
-    ui.mouseReleased();
-  }
-}
-
-void mouseDragged() {
-  if (mouseX > ui.leftPos) {
-    ui.mouseDragged();
-  }
 }
 
index fe2ba46acbc8c9023cc3456713fe752a021ebc5a..bffecfd5f58bf6d8f8a3ce5fc5996cd21278d41e 100644 (file)
Binary files a/code/GLucose.jar and b/code/GLucose.jar differ