I am trying to create a class called InputManager to handle mouse events. This requires that mousePressed be contained within the InputManager class.

like so

class InputManager{
    void mousePressed(){
       print(hit);
    }
}

problem is, that doesn't work. mousePressed() only seems to work when it's outside the class.

How can I get these functions nicely contained in a class?

link|improve this question
feedback

1 Answer

Most certainly, but you are responsible for ensuring it gets called:

interface P5EventClass {
  void mousePressed();
  void mouseMoved();
  // ...
}

class InputManager implements P5EventClass {
  // we MUST implement mousePressed, and any other interface method
  void mousePressed() {
    // do things here
  }
}

// we're going to hand off all events to things in this list
ArrayList<P5EventClass> eventlisteners = new ArrayList<P5EventClass>();

void setup() {
  // bind at least one input manager, but maybe more later on.
  eventlisteners.add(new InputManager());
}

void draw() {
  // ...
}

void mousePressed() {
  // instead of handling input globally, we let
  // the event handling obejct(s) take care of it
  for(P5EventClass p5ec: eventlisteners) {
   p5ec.mousePressed();
  }
}

I would personally make it a bit tighter by also passing the event variables explicitly, so "void mousePressed(int x, int y);" in the interface and then calling "p5ec.mousePressed(mouseX, mouseY);" in the sketch body, simply because relying on globals rather than local variables makes your code prone to concurrency bugs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.