|
|
|
Contents: Overview of events, Vision and text message events, Timer events
A Behavior can receive events by adding itself to the list of
listeners for the desired event stream. This list is maintained by
the event router, erouter
. Once the Behavior is
registered as a listener, its doEvent() method will be called each
time an event arrives, and the member variable event
will
be set to a pointer to the event. Behaviors are automatically removed
from the list of listeners when their doStop() method (inherited from
BehaviorBase) is called, but you can also remove a listener for a
specific event type by using removeListener().
All events are subclasses of EventBase.
Exercise: Setting Up An Event Listener
The list of listeners and subscription requests is managed by the
EventRouter, which is accessed via the global variable
Recompile Tekkotsu and start it up again. Be sure to unpause the robot using the Stop/Go button in the ControllerGUI window, or your behavior will not receive any events. On some robots, you can also pause or unpause by pressing a button on the robot's body. For the Chiara, press the red button; for the AIBO, double clikc on its back button. With DstBehavior active and the robot unstopped, you can press a button on the robot and see the events as they are reported on the console.
|
Explore more:
Text message events are strings sent by the user. The ControllerGUI contains a little text box in which you can type commands, which must begin with an exclamation point. The command "!msg sequence-of-characters" causes the Controller to post a text message event containing the specified string. (You can also give this command, without the exclamation point, in the Tekkotsu command line.) TextMsgEvent is a subclass of Event, and provides an additional member function getText() that returns the message text as a string.
Multiple event types can be handled within a single Behavior by
subscribing to several streams and using a switch
statement keyed on the generator ID to process each event acording to
its type.
Exercise: Detecing Pink Balls and Text Messages
In order to access the additional members that VisionObjectEvent and
TextMsgEvent provide to extend EventBase, we must cast the event
argument to the correct type. This is done using the
Recompile, run Tekkotsu again, and activate DstBehavior. Using the ControllerGUI, call up the SegCam window so you can see what the robot sees. Make sure the camera isn't pointed at anything red or pink. Now wave the pink ball in front of the robot and see what happens.
In the ControllerGUI window, type
|
Explore more:
The event router provides a built-in timer facility, allowing any Behavior to set up timers and receive event notifications whenever a timer expires. Timers are specific to the Behavior that created them; so there is no danger of accidental crosstalk. A single Behavior may have several timers active at once; they are distinguished by unique integer IDs specified in the call to addTimer() that sets up the timer. A Behavior can have only one timer with a given ID, so if addTimer() is called again using the same ID, the existing timer with that ID is reset. Timers can be cancelled with removeTimer(). It is not necessary to subscribe explicitly to the timerEGID event stream, as a call to addTimer() automatically establishes the behavior as a listener for timer events.
Exercise: Setting Up and Removing a Timer The example below starts a timer with id 1234 whenever the robot's green button is pressed. The timer runs for 5 seconds (5000 milliseconds). If the green button is pressed, the timer is removed. If the button is not pressed and the timer expires, it posts a timer status event, and the Behavior prints a "Timer expired!" message.
|
Explore more:
false
?
~/project/templates/behavior.h
. Have a look at it.
|
|
|