net.nexttext.behaviour.control
Class OnMousePressed

java.lang.Object
  extended by net.nexttext.behaviour.AbstractAction
      extended by net.nexttext.behaviour.control.Condition
          extended by net.nexttext.behaviour.control.OnMouseDepressed
              extended by net.nexttext.behaviour.control.OnMousePressed
All Implemented Interfaces:
Action
Direct Known Subclasses:
OnMousePressedOver

public class OnMousePressed
extends OnMouseDepressed

A Condition which is true when a mouse button is pressed i.e. a single true result is returned if the button was up and got pressed down.


Nested Class Summary
 
Nested classes/interfaces inherited from interface net.nexttext.behaviour.Action
Action.ActionResult
 
Constructor Summary
OnMousePressed(Action trueAction)
          Creates an OnMousePressed which performs the given Action when the mouse button 1 is pressed.
OnMousePressed(int buttonToCheck, Action trueAction)
          Creates an OnMousePressed which performs the given Action when the selected mouse button is pressed.
 
Method Summary
 boolean condition(TextObject to)
          Checks whether or not the selected mouse button is pressed.
 
Methods inherited from class net.nexttext.behaviour.control.Condition
behave, complete, getRequiredProperties
 
Methods inherited from class net.nexttext.behaviour.AbstractAction
behave, behave, getDisplayName, makeBehaviour, properties, setDisplayName
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OnMousePressed

public OnMousePressed(Action trueAction)
Creates an OnMousePressed which performs the given Action when the mouse button 1 is pressed.

Parameters:
trueAction - the Action to perform when the mouse button 1 is pressed

OnMousePressed

public OnMousePressed(int buttonToCheck,
                      Action trueAction)
Creates an OnMousePressed which performs the given Action when the selected mouse button is pressed.

Parameters:
buttonToCheck - the mouse button to consider
trueAction - the Action to perform when the selected mouse button is pressed
Method Detail

condition

public boolean condition(TextObject to)
Checks whether or not the selected mouse button is pressed.

Overrides:
condition in class OnMouseDepressed
Parameters:
to - the TextObject to consider (unused)
Returns:
the outcome of the condition