Loading...
Logo
Processing Forum
I am running into problems using both OpenGL and selectFolder() in my sketch.  I am using the PeasyCam, controlP5, and OpenGL libraries, so as a sanity check, I used the following sample code:


I then added an extra line to select a folder and my program just hangs up without doing anything.  BUT, if I change OpenGL to P3D, it works fine.  Anyone know how to solve this problem?  I need OpenGL for my application so...

Copy code
  1. /**
  2.  * ControlP5 with PeasyCam support. tested with peasy 0.8.2
  3.  *
  4.  * by jeffg 2009
  5.  * http://processing.org/discourse/yabb2/YaBB.pl?num=1234988194/30#30
  6.  */
  7.  
  8. import peasy.*;
  9. import controlP5.*;
  10. import processing.opengl.*;

  11. PeasyCam cam;
  12. ControlP5 controlP5;
  13. PMatrix3D currCameraMatrix;
  14. PGraphics3D g3; 

  15. int buttonValue = 1;

  16. int myColor = color(255,0,0);

  17. void setup() {
  18.   size(400,400,OPENGL);
  19.   String directory = selectInput();
  20.   g3 = (PGraphics3D)g;
  21.   cam = new PeasyCam(this, 100);
  22.   controlP5 = new ControlP5(this);
  23.   controlP5.addButton("button",10,100,60,80,20).setId(1);
  24.   controlP5.addButton("buttonValue",4,100,90,80,20).setId(2);
  25.   controlP5.setAutoDraw(false);
  26.   
  27. }
  28. void draw() {
  29.   
  30.   background(0);
  31.   hint(ENABLE_DEPTH_TEST);
  32.   fill(myColor);
  33.   box(30);
  34.   pushMatrix();
  35.   translate(0,0,20);
  36.   fill(0,0,255);
  37.   box(5);
  38.   popMatrix();
  39.   // makes the gui stay on top of elements
  40.   // drawn before.
  41.   hint(DISABLE_DEPTH_TEST);
  42.   gui();
  43.   
  44. }

  45. void gui() {
  46.    currCameraMatrix = new PMatrix3D(g3.camera);
  47.    camera();
  48.    controlP5.draw();
  49.    g3.camera = currCameraMatrix;
  50. }

  51. void controlEvent(ControlEvent theEvent) {
  52.   println(theEvent.controller().id());
  53. }

  54. void button(float theValue) {
  55.   myColor = color(random(255),random(255),random(255));
  56.   println("a button event. "+theValue);
  57. }
  58.  

Replies(5)

You can call selectInput() and call a method to do something with the selected input from inside a separate thread so it doesn't interrupt the main program. I moved selectInput(() so it is called by clicking the top button.
Copy code
  1. void button(float theValue) {
  2.  
  3.   new Thread(
  4.     new Runnable() {
  5.       public void run() {
  6.         doSomethingWithSelected(selectInput());
  7.       }
  8.     }
  9.   ).start();
  10.  
  11.   myColor = color(random(255),random(255),random(255));
  12.   println("a button event. "+theValue);
  13. }
  14. void doSomethingWithSelected(String sel) {
  15.   println(sel);
  16. }
I'm not sure if that is the proper way to do it, but it works. By the way, doesn't Processing 2.0 have an easier, wrapped up way to create a thread?
This is the only thing that I could get to work using Processing 1.5.1 on OSX Snow Leopard with GLGraphics and ControlP5. Thanks for the tip!
Thanks for your response.  I tried out your code, and it didn't seem to work.  The program still hangs up without displaying anything.  

This is my code:
Copy code

  1. /**
  2.  * ControlP5 with PeasyCam support. tested with peasy 0.8.2
  3.  *
  4.  * by jeffg 2009
  5.  * http://processing.org/discourse/yabb2/YaBB.pl?num=1234988194/30#30
  6.  */
  7.  
  8. import peasy.*;
  9. import controlP5.*;
  10. import processing.opengl.*;

  11. PeasyCam cam;
  12. ControlP5 controlP5;
  13. PMatrix3D currCameraMatrix;
  14. PGraphics3D g3; 

  15. int buttonValue = 1;

  16. int myColor = color(255,0,0);

  17. void setup() {
  18.   size(400,400,OPENGL);
  19.   String directory = selectInput();
  20.   g3 = (PGraphics3D)g;
  21.   cam = new PeasyCam(this, 100);
  22.   controlP5 = new ControlP5(this);
  23.   controlP5.addButton("button",10,100,60,80,20).setId(1);
  24.   controlP5.addButton("buttonValue",4,100,90,80,20).setId(2);
  25.   controlP5.setAutoDraw(false);
  26.   
  27. }
  28. void draw() {
  29.   
  30.   background(0);
  31.   hint(ENABLE_DEPTH_TEST);
  32.   fill(myColor);
  33.   box(30);
  34.   pushMatrix();
  35.   translate(0,0,20);
  36.   fill(0,0,255);
  37.   box(5);
  38.   popMatrix();
  39.   // makes the gui stay on top of elements
  40.   // drawn before.
  41.   hint(DISABLE_DEPTH_TEST);
  42.   gui();
  43.   
  44. }

  45. void gui() {
  46.    currCameraMatrix = new PMatrix3D(g3.camera);
  47.    camera();
  48.    controlP5.draw();
  49.    g3.camera = currCameraMatrix;
  50. }

  51. void controlEvent(ControlEvent theEvent) {
  52.   println(theEvent.controller().id());
  53. }

  54. void button(float theValue) {
  55.   myColor = color(random(255),random(255),random(255));
  56.   println("a button event. "+theValue);
  57.   
  58.   myColor = color(random(255),random(255),random(255));
  59.   println("a button event. "+theValue);
  60.   
  61.   new Thread(
  62.     new Runnable() {
  63.       public void run() {
  64.         doSomethingWithSelected(selectInput());
  65.       }
  66.     }
  67.   ).start();
  68. }

  69. void doSomethingWithSelected(String sel) {
  70.   println(sel);
  71. }
Oh, right. I should have mentioned before, you have to remove the original call to selectInput(). Remove line 25 and it should work.
cool, thanks!