Loading...
Logo
Processing Forum
This is directly related to a recent post of mine, which was answered in part, but one problem remains.

I have a class called Surface which extends java.awt.Polygon. These surfaces can be added to the scene through an ArrayList, which draw() then iterates through each render loop. The problem lies in that when the mouse is over a surface, a pulsating outline is displayed. So far so good, apart from that the outline is displayed over the wrong surface! Instead, if the mouse is over the first surface added, the outline appears over the second one. A strange behavior, considering the correct name is printed if I click the surface.

Any help would be greatly appreciated! Code follows:
Copy code
  1. // Surface.pde

  2. public class Surface extends java.awt.Polygon {

  3.   PFont label;
  4.   PImage img;
  5.   int selectionAlpha;
  6.   int stepAlpha;
  7.   boolean mPressed;
  8.   boolean mDragged;

  9.   // final int VRADIUS = 4;

  10.   Surface() {
  11.     label = createFont("Monaco", 12);
  12.     img = loadImage("images/landscape/0.png");

  13.     selectionAlpha = 0;
  14.     stepAlpha = 15;

  15.     addPoint((width / 2) - 50, (height / 2) - 50);
  16.     addPoint((width / 2) + 50, (height / 2) - 50);
  17.     addPoint((width / 2) + 50, (height / 2) + 50);
  18.     addPoint((width / 2) - 50, (height / 2) + 50);

  19.     registerMouseEvent(this);
  20.   }

  21.   /*************************************************************
  22.    * NAME: draw()
  23.    * INFO: The render loop.
  24.    *************************************************************/
  25.   void draw() {
  26.     beginShape();
  27.     textureMode(IMAGE);
  28.     texture(img);
  29.     vertex(xpoints[0], ypoints[0], 0, 0);
  30.     vertex(xpoints[1], ypoints[1], img.width, 0);
  31.     vertex(xpoints[2], ypoints[2], img.width, img.height);
  32.     vertex(xpoints[3], ypoints[3], 0, img.height);
  33.     endShape(CLOSE);

  34.     // go fancypants when the mouse is over the surface
  35.     if (contains(mouseX, mouseY)) {
  36.       strokeWeight(5);
  37.       int r = (selectedSurface == this) ? 0 : 255;
  38.       stroke(r, 255, 0, selectionAlpha);
  39.       selectionAlpha += stepAlpha;
  40.       if (selectionAlpha > 255 || selectionAlpha < 0) stepAlpha *= -1;
  41.     }
  42.     else {
  43.       noStroke(); 
  44.     }

  45.     // reposition the surface when it's being dragged
  46.     if (mDragged && selectedSurface == this) {
  47.       translate((mouseX - pmouseX), (mouseY - pmouseY)); 
  48.     }

  49.     // surface description
  50.     if (showLabels) {
  51.       fill(255, 150);
  52.       textFont(label);
  53.       textAlign(CENTER);
  54.       text(this.toString(), sqrt(xpoints[3] * xpoints[2]), ypoints[2]);
  55.     }
  56.   }

  57.   /*************************************************************
  58.    * NAME: mouseEvent()
  59.    * INFO: Handles mouse events.
  60.    *************************************************************/
  61.   void mouseEvent(MouseEvent event) {
  62.     if (contains(mouseX, mouseY)) {
  63.       switch(event.getID()) {
  64.       case MouseEvent.MOUSE_PRESSED:
  65.         selectedSurface = this;
  66.         mPressed = true;
  67.         println(toString());
  68.         break;

  69.       case MouseEvent.MOUSE_RELEASED:
  70.         mPressed = false;
  71.         mDragged = false;
  72.         break;

  73.       case MouseEvent.MOUSE_CLICKED:
  74.         break;

  75.       case MouseEvent.MOUSE_DRAGGED:
  76.         mDragged = mPressed;
  77.         break;

  78.       case MouseEvent.MOUSE_MOVED:
  79.         break;
  80.       }
  81.     }
  82.   }

  83.   /*************************************************************
  84.    * NAME: toString()
  85.    * INFO: Override toString to show something meaningful (?)
  86.    *************************************************************/
  87.   public String toString() {
  88.     return Integer.toHexString(hashCode());
  89.   }
  90. }
The surfaces are drawn through a simple for-loop in the main sketch file:
Copy code
  1.   for (int i = 0; i < allSurfaces.size(); i++) {
  2.     Surface s = (Surface) allSurfaces.get(i);
  3.     s.draw();  
  4.   }

Replies(1)

It seems I was just drawing things in the wrong order!