Acme-RTB
view release on metacpan or search on metacpan
YourColour
GameOption
GameStarts
Radar
Info
RobotInfo
RotationReached
Energy
RobotsLeft
Collision
Warning
Dead
GameFinishes
Unknown
$robot->modify_action( Radar => \&my_radar );
$robot->modify_action( GameStarts => \&my_gamestart);
$robot->modify_action( Collision => \&my_collision);
Here are the parameters that you recieve from the server:
=head3 Initialize [first? (int)]
This is the very first message the robot will get. If the argument is one, it is the first sequence in the tournament and it should send Name and Colour to the server, otherwise it should wait for YourName and YourColour messages (see below).
=head3 YourName [name (string)]
Current name of the robot, don't change it if you don't have very good reasons.
=head3 YourColour [colour (hex)]
Current colour of the robot, change it if you find it ugly.
=head3 GameOption [optionnr (int)] [value (double)]
At the beginning of each game the robots will be sent a number of settings, which can be useful for the robot. For a complete list of these, look in the file Messagetypes.h for the game_option_type enum. In the options chapter you can get more detail...
=head3 GameStarts
This message is sent when the game starts (surprise!)
=head3 Radar [distance (double)] [observed object type (int)] [radar angle (double)]
This message gives information from the radar each turn. Remember that the radar-angle is relative to the robot front; it is given in radians.
=head3 Info [time (double)] [speed (double)] [cannon angle (double)]
The Info message does always follow the Radar message. It gives more general information on the state of the robot. The time is the game-time elapsed since the start of the game. This is not necessarily the same as the real time elapsed, due to time ...
=head3 Coordinates [x (double)] [y (double)] [angle (double)]
Tells you the current robot position. It is only sent if the option Send robot coordinates is 1 or 2. If it is 1 the coordinates are sent relative the starting position, which has the effect that the robot doesn't know where it is starting, but only ...
=head3 RobotInfo [energy level (double)] [teammate? (int)]
If you detect a robot with your radar, this message will follow, giving some information on the robot. The opponents energy level will be given in the same manner as your own energy (see below). The second argument is only interesting in team-mode (w...
=head3 RotationReached [what has reached(int)]
When the robot option SEND_ROTATION_REACHED is set appropriately, this message is sent when a rotation (with RotateTo or RotateAmount) has finished or the direction has changed (when sweeping). The argument corresponds to 'what to rotate' in e.g. Rot...
=head3 Energy [energy level(double)]
The end of each round the robot will get to know its energy level. It will not, however, get the exact energy, instead it is discretized into a number of energy levels.
=head3 RobotsLeft [number of robots (int)]
At the beginning of the game and when a robot is killed the number of remaining robots is broadcasted to all living robots.
=head3 Collision [colliding object type (int)] [angle relative robot (double)]
When a robot hits (or is hit by) something it gets this message. In the file Messagetypes.h you can find a list of the object types. You get the angle from where the collision occurred (the angle relative the robot) and the type of object hitting you...
=head3 Warning [warning type (int)] [message (string)]
A warning message can be sent when robot has to be notified on different problems which have occured. Currently seven different warning messages can be sent, namely
UNKNOWN_MESSAGE: The server received a message it couldn't recognize.
PROCESS_TIME_LOW: The CPU usage has reached the CPU warning percentage. Only in competition-mode.
MESSAGE_SENT_IN_ILLEGAL_STATE: The message received couldn't be handled in this state of the program. For example Rotate is sent before the game has started.
UNKNOWN_OPTION: The robot sent a robot option with either illegal option name or illegal argument to that option.
OBSOLETE_KEYWORD: The keyword sent is obsolete and should not be used any more, see the ChangeLog file for information on what to use instead.
NAME_NOT_GIVEN: The robot has not sent its name before the game begins. This happens if the robot startup time is too short or the robot does not send its name early enough.
COLOUR_NOT_GIVEN: The robot has not sent its colour before the game begins.
=head3 Dead
Robot died. Do not try to send more messages to the server until the end of the game, the server doesn't read them.
=head3 GameFinishes
Current game is finished, get prepared for the next!
=head3 ExitRobot
Exit from the program immediately! Otherwise it will be killed forcefully.
=over 4
=head2 process_lines
=back
This is the method that reads (if it can) from the server and execute
the apropiate method. You can manage yourself, or let the module to
do it itself.
while(1)
{
# Read stdin
$robot->parse_lines;
# do other stuff here
}
=over 4
=head2 Rotate [what to rotate (int)] [angular velocity (double)]
=back
Set the angular velocity for the robot, its cannon and/or its radar. Set 'what to rotate' to 1 for robot, 2 for cannon, 4 for radar or to a sum of these to rotate more objects at the same time. The angular velocity is given in radians per second and ...
=over 4
=head2 RotateTo [what to rotate (int)] [angular velocity (double)] [end angle (double)]
=back
As Rotate, but will rotate to a given angle. Note that radar and cannon angles are relative to the robot angle. You cannot use this command to rotate the robot itself, use RotateAmount instead!
=over 4
=head2 RotateAmount [what to rotate (int)] [angular velocity (double)] [angle (double)]
=back
As Rotate, but will rotate relative to the current angle.
=over 4
=head2 Sweep [what to rotate (int)] [angular velocity (dbl)] [left angle (dbl)] [right angle (dbl)]
=back
As rotate, but sets the radar and/or the cannon (not available for the robot itself) in a sweep mode.
=over 4
=head2 Accelerate [value (double)]
=back
Set the robot acceleration. Value is bounded by Robot max/min acceleration.
=over 4
=head2 Brake [portion (double)]
=back
Set the brake. Full brake (portion = 1.0) means that the friction in the robot direction is equal to Slide friction.
=over 4
=head2 Shoot [shot energy (double)]
=back
Shoot with the given energy. The shot options give more information.
=over 4
=head2 Print [message (string)]
=back
Print message on the message window.
( run in 1.612 second using v1.01-cache-2.11-cpan-5a3173703d6 )