Loading...
Logo
Processing Forum
I'm creating something that uses Peasy to rotate the camera. The screen has some text that spins around and I need to make each text spot clickable. I have spent a few hours trying to figure this out, but I have no success. Does anyone have any ideas and can help me with this problem?

I know how to make a non-moving rect() clickable using an if-statement with mouseX and mouseY. But I don't know what to do if the rect() is rotating. Any suggestions are welcome. Using other libraries like controlP5 is okay with me too; I really need help getting this to work!

I've uploaded a .zip of the sketch if you want to download it on dropbox, or you can view the code below:
Copy code
  1. import peasy.*;

  2. PeasyCam cam;
  3. PFont font;

  4. PImage pim;
  5. float rot=0;

  6. ArrayList<String> aList = new ArrayList<String>();

  7. void setup(){
  8.   size(800, 600, P3D);
  9.   //smooth();
  10.   hint(DISABLE_DEPTH_TEST); // avoids z-fighting
  11.   
  12.   font = loadFont("Helvetica-50.vlw"); 
  13.   textFont(font);
  14.   
  15.   cam = new PeasyCam(this, 400, 400, 0, 1500);  // default settings on double click
  16.   cam.setMinimumDistance(.001);
  17.   cam.setMaximumDistance(20000);
  18.   
  19.   aList.add("Testing1");
  20.   aList.add("Testing2");
  21.   aList.add("Testing3");
  22.   aList.add("Testing4");
  23.   aList.add("Testing5");
  24.   aList.add("Testing6");
  25.   aList.add("Testing7");
  26.   aList.add("Testing8");
  27.   aList.add("Testing9");
  28.   aList.add("Testing10");
  29.   aList.add("Testing11");
  30.   aList.add("Testing12");
  31. }

  32. void draw(){
  33.   background(0);
  34.   
  35.   translate(width/2, height/2);
  36.   
  37.   rot-=.001;
  38.   showText();
  39.   cam.setRotations(0, 0, rot);
  40. }

  41. void showText() {
  42.   for (int i=0; i<aList.size(); i++) {
  43.     String label = aList.get(i);
  44.     float labelWidth = textWidth(label);
  45.     float textHeight = 50;
  46.     float[] rotations = cam.getRotations();
  47.     
  48.     pushMatrix();
  49.       translate(40*(i+4)*cos(i),
  50.                 100+40*(i+4)*sin(i),
  51.                 textHeight);
  52.                 
  53.       pushMatrix();
  54.         // Make text always face camera
  55.         rotateX(rotations[0]);
  56.         rotateY(rotations[1]);
  57.         rotateZ(rotations[2]);
  58.         
  59.         translate(0,0,1);
  60.         fill(100);
  61.         rect(- labelWidth/2 - 2, -textHeight -1.5 ,labelWidth+4, textHeight+textHeight/2);
  62.         
  63.         fill(255);
  64.         textSize(textHeight); textAlign(CENTER);
  65.         text(label, 0, 0, 0);
  66.       popMatrix();
  67.     popMatrix();
  68.   }
  69. }

Replies(3)

Strange, when I move the mouse inside the window I get an error (Processing 2.0b7).
Even if I uncomment most of your code.
Copy code
  1. PeasyCam v105
  2. Exception in thread "Animation Thread" java.lang.IllegalArgumentException: argument type mismatch
  3. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  4. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  5. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  6. at java.lang.reflect.Method.invoke(Method.java:597)
  7. at processing.core.PApplet$RegisteredMethods.handle(PApplet.java:1084)
  8. at processing.core.PApplet.handleMouseEvent(PApplet.java:2532)
  9. at processing.core.PApplet.dequeueEvents(PApplet.java:2463)
  10. at processing.core.PApplet.handleDraw(PApplet.java:2153)
  11. at processing.opengl.PGL$PGLListener.display(PGL.java:2472)
  12. at jogamp.opengl.GLDrawableHelper.displayImpl(GLDrawableHelper.java:548)
  13. at jogamp.opengl.GLDrawableHelper.display(GLDrawableHelper.java:533)
  14. at jogamp.opengl.GLAutoDrawableBase$2.run(GLAutoDrawableBase.java:280)
  15. at jogamp.opengl.GLDrawableHelper.invokeGLImpl(GLDrawableHelper.java:904)
  16. at jogamp.opengl.GLDrawableHelper.invokeGL(GLDrawableHelper.java:822)
  17. at com.jogamp.newt.opengl.GLWindow.display(GLWindow.java:543)
  18. at processing.opengl.PGL.requestDraw(PGL.java:814)
  19. at processing.opengl.PGraphicsOpenGL.requestDraw(PGraphicsOpenGL.java:1566)
  20. at processing.core.PApplet.run(PApplet.java:2020)
  21. at java.lang.Thread.run(Thread.java:662)
Very strange. I use 2.0b6, but I just downloaded  Processing 2.0b7 to try it out and it works for me. I'm on Mac OS X 10.8.2 if that matters...

PeasyCam worked for me too on 2.0b6, now it's broken. But okay that's another topic... will look into it.
I'm on Win8 64.