robocode.robotinterfaces
Interface IInteractiveRobot
- IBasicRobot
- AdvancedRobot, Robot, TeamRobot, _AdvancedRadiansRobot, _AdvancedRobot
public interface IInteractiveRobot
A robot interface for creating an interactive type of robot like
Robot
and
AdvancedRobot
that is able to
receive interactive events from the keyboard or mouse.
If a robot is directly inherited from this class it will behave as similar to
a
IBasicRobot
. If you need it to behave similar to a
IAdvancedRobot
or
ITeamRobot
, you should inherit from these
interfaces instead, as these are inherited from this interface.
- Pavel Savara (original)
- Flemming N. Larsen (javadoc)
getInteractiveEventListener
public IInteractiveEvents getInteractiveEventListener()
This method is called by the game to notify this robot about interactive
events, i.e. keyboard and mouse events. Hence, this method must be
implemented so it returns your
IInteractiveEvents
listener.
- listener to interactive events or
null
if this robot
should not receive the notifications.