Difference between revisions of "Robocode/FAQ"

From Robowiki
Jump to navigation Jump to search
m
m (grammar correction)
(26 intermediate revisions by 12 users not shown)
Line 1: Line 1:
 
Frequently asked questions about Robocode.
 
Frequently asked questions about Robocode.
  
== Installing and using ==
+
== [[Robocode/Download|Installing]] and [[Robocode/Getting Started|using]] ==
  
; I can't install Robocode.
+
; '''I can't install Robocode.'''
: First make sure you have Java installed on your computer. To check it, run the command: <code>java -version</code> It should execute and show a version 1.5 or higher. If not, go to Sun site and download the last version. After, make sure you have downloaded the correct file (<code>robocode-setup-X.X.X.jar</code>, where <code>X.X.X</code> is the version number). Execute the file by double-clicking on it, or if you want to do it manually, execute the following command: <code>java -jar robocode-setup-X.X.X.jar</code>. It will launch an installer that will install Robocode. The installer creates the icons to execute Robocode, but you can execute it manually by running the <code>robocode.bat</code> or <code>robocode.sh</code> file in the <code>/robocode</code> directory.
 
  
; I have downloaded a robot from the Web, but I don't know how to use it, because it doesn't appear anywhere.
+
: Please see instructions at [[Robocode_Download_And_Install| download and install]] site.
 +
 
 +
; '''I have downloaded a robot from the Web, but I don't know how to use it, because it doesn't appear anywhere.'''
 
: By default, robots are read from the <code>/robocode/robots</code> directory. You can select "Robot -> Import Downloaded Robot" to copy a robot JAR to this directory from another location. Also, you can configure Robocode to read robots from additional locations using the Properties dialog.
 
: By default, robots are read from the <code>/robocode/robots</code> directory. You can select "Robot -> Import Downloaded Robot" to copy a robot JAR to this directory from another location. Also, you can configure Robocode to read robots from additional locations using the Properties dialog.
  
; What do I have to do to see the source code of a robot?
+
; '''What do I have to do to see the source code of a robot?'''
 
: You can do two things. The first option is to open the Editor Window in Robocode and use the command in the File menu. The second option is to open the robot ".jar" file with a zip utility and find the source code there (assuming, of course, the robot is open source).
 
: You can do two things. The first option is to open the Editor Window in Robocode and use the command in the File menu. The second option is to open the robot ".jar" file with a zip utility and find the source code there (assuming, of course, the robot is open source).
  
; Can I play Robocode online?
+
; '''Can I play Robocode online?'''
: Robocode is not an "online" game, so you can't, for example, share a battle with your friends in real time over the Internet. But you can upload your bots into the [[RobocodeRepository]] and join any of the existing competitions (or organize one with your friends).
+
: Robocode is not an "online" game, so you can't, for example, share a battle with your friends in real time over the Internet. But you can upload your bots to places like [http://sites.google.com/ Google Sites] or [[RobocodeRepository|Robocode Repository]] and join any of the [[:Category:Competitions|existing competitions]] such as [[RoboRumble@Home]], or organize one with your friends.
  
; I have seen that many bots are packaged into ".jar" files. How do I package my bot?
+
; '''I have seen that many bots are packaged into ".jar" files. How do I package my bot?'''
 
: Select, "Robot --> Package robot for upload" from the menu, then enter your robot's details when prompted.
 
: Select, "Robot --> Package robot for upload" from the menu, then enter your robot's details when prompted.
  
; When I test my bots, Robocode is slow. Is there a way to execute the battles faster?
+
;''' When I test my bots, Robocode is slow. Is there a way to execute the battles faster?'''
 
: When you are testing your robot, you want to execute many battles in a short time. Minimize the Robocode main screen to make it execute the battles at full speed.
 
: When you are testing your robot, you want to execute many battles in a short time. Minimize the Robocode main screen to make it execute the battles at full speed.
  
== [[Game physics]] ==
+
; '''I get this error when trying to start Robocode: "'JAVA' is not recognized as an internal or external command, operable or batch file"'''
 +
: This is caused by an unknown path to your Java installation. Please follow [[Robocode/System_Requirements#PATH_must_be_set|this instructions]].
  
; Can I fire bullets with power higher than 3.0 or lower than 1.0?
+
== [[Robocode/Game Physics|Game physics]] ==
:No and yes. You can't fire bullets with power greater than 3.0, but you can fire bullets with power as low as 0.1. If you call a firing function (i.e. <code>setFire()</code>) with a value greater than 3.0, Robocode will adjust it to 3.0, and if you call it with a power lower than 0.1 it will adjust it to 0.1.
 
  
; How fast does a bullet travel?
+
; '''What is the difference between frames and ticks?'''
:A bullet travels at a speed between 11.0 and 19.7 depending on the power. The more powerful the bullet, the slower. The formula to calculate it is <code>velocity = 20 - (3 * power)</code>.
+
: A tick refers to one unit, which is also called a Turn in Robocode. During one turn, you may perform one action as a Robot, or multiple (independent) actions as an AdvancedRobot. A frame is a unit of drawing to the Robocode client interface. If you are processing turns slowly, you will get one frame per tick / turn. However, if you up the turns per second beyond your computer's ability to render the frames, you will miss some frames of animation. This won't affect the robots' behavior, unless you foolishly added code in your <code>onPaint(Graphics2D)</code> method that alters your bots behavior. In that case, your bot will behave differently depending on whether or not the Paint button has been enabled, and if the framerate can keep up with the turnrate.
  
; Does the robot velocity get added to the bullet velocity on firing?
+
; '''Can I fire bullets with power higher than 3.0 or lower than 1.0?'''
 +
:No and yes. You can't fire bullets with power greater than 3.0, but you can fire bullets with power as low as 0.1. If you call a firing function (i.e. <code>setFire()</code>) with a value greater than 3.0, Robocode will adjust it to 3.0, and if you call it with a power lower than 0.1 (except 0.0 which will not fire) it will adjust it to 0.1. Additionally, you can fire bullets with power less than 0.1 under one condition: when your robot has less than 0.1 energy left, in which case a bullet is fired with however much energy your robot had left.
 +
 
 +
; '''How fast does a bullet travel?'''
 +
:A bullet travels at a speed between 11.0 and 19.7 depending on the power. The more powerful the bullet, the slower. The formula to calculate its <code>velocity = 20 - (3 * power)</code>.
 +
 
 +
; '''Does the robot velocity get added to the bullet velocity on firing?'''
 
: No, bullet velocity is not affected by robot velocity. It's kind of like the speed-of-light thing. =)
 
: No, bullet velocity is not affected by robot velocity. It's kind of like the speed-of-light thing. =)
  
; Which is the range of a bullet?
+
; '''Which is the range of a bullet?'''
 
: A bullet has no range. It keeps going until it hits a robot or a wall.
 
: A bullet has no range. It keeps going until it hits a robot or a wall.
  
; I want to fire a bullet every turn, but I can't. Why?
+
; '''I want to fire a bullet every turn, but I can't. Why?'''
: Every time you fire, the gun generates some heat. You must wait till it is cool again to fire. If you give a fire order when your gun is hot, it will do nothing. The heat generated by a shot is <code>1 + (firepower / 5)</code>. The gun cools down at a default rate of 0.1 per turn (note that you can change this parameter when you run the battle, but nobody usually does). It means you can fire a bullet every 16 ticks.
+
: Every time you fire, the gun generates some heat. You must wait till it is cool again to fire. If you give a fire order when your gun is hot, it will do nothing. The heat generated by a shot is <code>1 + (firepower / 5)</code>. The gun cools down at a default rate of 0.1 per turn (note that you can change this parameter when you run the battle, but nobody usually does). It means you can fire a 3.0 power bullet every 16 ticks.
  
; How much damage does a bullet do?
+
; '''How much damage does a bullet do? How do I gain or lose energy?'''
; How do I gain or lose energy?
 
 
: You lose energy every time you hit a wall, you are hit by an enemy bullet, ram an enemy, or you fire your gun. The amount of energy you lose by being hit is <code>4 * bullet power + 2 * max(bullet power - 1 , 0)</code>. So the maximum amount is 16.0. When you fire, you spend a quantity of energy equal to the power of the bullet fired. When one of your bullets hits an enemy, you collect back <code>3 * bullet power</code> energy. When you hit an enemy bot, each bot takes 0.6 damage. If an [[AdvancedRobot]] (but not a [[Robot]] or [[JuniorRobot]]) hits a wall, it will take <code>max(abs(velocity) * 0.5 - 1, 0)</code> damage.
 
: You lose energy every time you hit a wall, you are hit by an enemy bullet, ram an enemy, or you fire your gun. The amount of energy you lose by being hit is <code>4 * bullet power + 2 * max(bullet power - 1 , 0)</code>. So the maximum amount is 16.0. When you fire, you spend a quantity of energy equal to the power of the bullet fired. When one of your bullets hits an enemy, you collect back <code>3 * bullet power</code> energy. When you hit an enemy bot, each bot takes 0.6 damage. If an [[AdvancedRobot]] (but not a [[Robot]] or [[JuniorRobot]]) hits a wall, it will take <code>max(abs(velocity) * 0.5 - 1, 0)</code> damage.
  
; Some times I get disabled. What happens?
+
; '''Some times I get disabled. What happens?'''
 
: You can't kill yourself, so when your energy drops to zero because you hit a wall or you fire, your bot gets disabled. It will not be able to move nor fire. If you are lucky enough and one of your bullets in the air hits an enemy, you will get some energy back and recover from disabled status.
 
: You can't kill yourself, so when your energy drops to zero because you hit a wall or you fire, your bot gets disabled. It will not be able to move nor fire. If you are lucky enough and one of your bullets in the air hits an enemy, you will get some energy back and recover from disabled status.
  
; I get disabled, but I my energy > 0. Why?
+
; '''I get disabled, but I my energy > 0. Why?'''
: You may have called a getXXX() - for example getVelocity() - function too many times a turn. The limit is 10000 getXXX() function calls per turn. To avoid disabling in such situations, store returned values in variables for future use. Another case in which you can get disabled is throwing an exception. Sometimes this will disable your bot, even if you catch the exception.
+
: There are a few possible causes. You may have called a getXXX() function - such as getVelocity() - too many times a turn. The limit is 10000 getXXX() function calls per turn. To avoid disabling in such situations, either store returned values in variables for future use or use a [[RobotStatus]] object obtained from [[StatusEvent]]. Another case in which you can get disabled is throwing an exception, which may disable your bot, even if you catch the exception. Also, if your bot gets stuck in an infinite (or very long) loop and skips many turns, it may also get disabled.
  
; How fast do I move?
+
; '''How fast do I move?'''
: You can move at a maximum speed of 8.0 units/tick. You can modify (down) your maximum velocity by using <code>setMaxVelocity(...)</code>. Note that your bot will always accelerate to reach it's maximum velocity.
+
: You can move at a maximum speed of 8.0 units/tick. You can modify (down) your maximum velocity by using <code>setMaxVelocity(...)</code>. Note that your bot will always accelerate to reach its maximum velocity.
  
; How fast do I accelerate?
+
; '''How fast do I accelerate?'''
 
: You accelerate at 1 unit/tick, and you decelerate at 2 units/tick. For example, if you are moving at an speed of 8.0 and reverse your direction your velocities will be [6.0, 4.0, 2.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0].
 
: You accelerate at 1 unit/tick, and you decelerate at 2 units/tick. For example, if you are moving at an speed of 8.0 and reverse your direction your velocities will be [6.0, 4.0, 2.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0].
  
; How fast do I turn?
+
; '''How fast do I turn?'''
 
: The faster you go, the slower you turn. The formula to calculate it in degrees is <code>10 - 0.75 * abs(velocity)</code>.
 
: The faster you go, the slower you turn. The formula to calculate it in degrees is <code>10 - 0.75 * abs(velocity)</code>.
  
; What is the size of a bot?
+
; '''What is the size of a bot?'''
: The size of a bot is 36x36. It is modeled as a non rotating square, so it's always the same regardless of its heading.
+
: The size of a bot is 36x36. Note, this is slightly smaller than the image of the bot. It is modeled as a non rotating square, so it's always the same regardless of its heading.
  
; It seems that Robocode doesn't follow standard physics. If my velocity is 0 and I accelerate (acceleration = 1) my final velocity is 1, but it should be 0.5. What happened?
+
; '''It seems that Robocode doesn't follow standard physics. If my velocity is 0 and I accelerate (acceleration = 1) my final velocity is 1, but it should be 0.5. What happened?'''
 
: Time in Robocode, rather than being continuous, is in discrete "ticks". First acceleration is calculated, then velocity, and then position. So if you are stopped at a position 0 and you accelerate 1, your velocity next turn will be 1 and your position also 1.
 
: Time in Robocode, rather than being continuous, is in discrete "ticks". First acceleration is calculated, then velocity, and then position. So if you are stopped at a position 0 and you accelerate 1, your velocity next turn will be 1 and your position also 1.
  
; How can I detect when an enemy has fired?
+
; '''How can I detect when an enemy has fired?'''
 
: There is no direct way to detect when an enemy fired, but you can deduce it by monitoring the enemy energy drop. A drop between 0.1 and 3 usually means that it fired a bullet (there can be other reasons, such as a low energy bullet hit or a wall hit). Wall hits are (more or less) detectable as well. A deceleration > 2 means the bot hit a wall (or another bot). A deceleration <= 2 may be simple a bot hitting the brakes, or hitting a wall at velocity = 2, but since hitting a wall at that speed won't cause any damage, you can ignore that. AdvancedRobots take <code>abs(velocity) / 2 - 1 (Never < 0)</code> damage when hitting a wall, so by detecting (significant) wall-hits and adjusting the enemy drop accordingly, wall hits can be filtered out most of the time. This method fails when the enemy hits another robot.
 
: There is no direct way to detect when an enemy fired, but you can deduce it by monitoring the enemy energy drop. A drop between 0.1 and 3 usually means that it fired a bullet (there can be other reasons, such as a low energy bullet hit or a wall hit). Wall hits are (more or less) detectable as well. A deceleration > 2 means the bot hit a wall (or another bot). A deceleration <= 2 may be simple a bot hitting the brakes, or hitting a wall at velocity = 2, but since hitting a wall at that speed won't cause any damage, you can ignore that. AdvancedRobots take <code>abs(velocity) / 2 - 1 (Never < 0)</code> damage when hitting a wall, so by detecting (significant) wall-hits and adjusting the enemy drop accordingly, wall hits can be filtered out most of the time. This method fails when the enemy hits another robot.
  
; How can I detect the position and heading of an enemy bullet?
+
; '''How can I detect the position and heading of an enemy bullet?'''
 
: You can't. There is no way to know it, directly or indirectly. But of course, you can always [[GuessFactor|guess]]...
 
: You can't. There is no way to know it, directly or indirectly. But of course, you can always [[GuessFactor|guess]]...
  
; How fast can I turn my gun?
+
; '''How fast can I turn my gun?'''
 
: The gun turns at 20 degrees per tick.
 
: The gun turns at 20 degrees per tick.
  
; How fast can I turn my radar?
+
; '''How fast can I turn my radar?'''
 
: It turns 45 degrees per tick.
 
: It turns 45 degrees per tick.
  
; Can I know the heading of the enemy gun/radar?
+
; '''Can I know the heading of the enemy gun/radar?'''
 
: No.
 
: No.
  
; Can I specify the initial position of my bot?
+
; '''Can I specify the initial position of my bot?'''
 
: No. The bots are randomly placed in the field at the beginning of each round.
 
: No. The bots are randomly placed in the field at the beginning of each round.
 +
 +
== Programming your robot ==
 +
; '''What is the difference between the setXXX() (e.g. <code>setFire()</code>) and the XXX() (e.g. <code>fire()</code>) methods?'''
 +
: Basically, the setXXX() methods just notify Robocode to take some action at the end of the turn. The XXX()-type methods end the turn when you call them, and they block your robot's thread until the command finishes. Unless you have a good reason, you should almost always use the setXXX() version when writing [[AdvancedRobot|AdvancedRobots]].
 +
 +
; '''How can I avoid my gun/radar turning when my bot turns?'''
 +
: You can use <code>setAdjustGunForRobotTurn()</code>, <code> setAdjustRadarForGunTurn()</code>, and <code>setAdjustRadarForRobotTurn()</code> methods to control this. If you call <code>setAdjustGunForRobotTurn()</code> and <code> setAdjustRadarForGunTurn()</code>, you don't need to call <code>setAdjustRadarForRobotTurn()</code>.
 +
 +
; '''Why are there two functions for <code>getBearing()</code> for example - one in radians and one in degrees? Is there any performance gain if I use radians instead of degrees?'''
 +
: There is no real advantage to using one or the other. Just use the one you prefer. Often, people start using degrees (just because they feel more comfortable with them) and later they switch to radians (because calculations are easier since you can use the built-in Java trigonometric functions). Just remember to use always radians or always degrees; mixing them up is not a good idea.
 +
 +
; '''I need to trace my bots actions and variables. I saw that everybody uses <code>out.println("...")</code>, but where is that printed?'''
 +
: It prints to the [[Robocode/Robot Console|robot console]]. When you execute the battle, just click on the button on the right of the screen that shows the name of your robot to open its [[Robocode/Robot Console|console]].
 +
 +
; '''How do you get your radar to stay focused on a robot that you have defined as your target?'''
 +
: You just turn the radar the other way around when you scan the bot. You lock your radar by not turning it 45 degrees, but only the arc needed to stay focused. See the [[Radar]] page for some example code.
 +
 +
; '''How can I know how many enemies are in the battle field?'''
 +
: You can use the <code>getOthers()</code> method to know how many live enemies are in the battlefield.
 +
 +
; '''I'm trying to recognize an enemy/teammate from its name (using <code>e.getName()</code>) but the condition always fails. What's happening?'''
 +
: Because of Java's funky way of interpreting references to Strings (not to mention a lack of operator overloading), you can't use an expression like <code>if (e.getName() == testname)</code> to check for equality. You have to use the <code>String.equals()</code> method, as in <code>if (e.getName().equals(testname))</code>.
 +
 +
; '''How do I keep data from round to round and battle to battle?'''
 +
: The easiest way is to save data between rounds of a battle is to make the variables in the bot class static. Because Robocode uses a separate classloader for every robot, the variables will not conflict even when you have more than one copy of a robot in a battle. Note that this will save data between ''rounds'', not between ''battles''. To save between battles you will have to save to a file. The maximum allowed disk space for files is 200k. Look at the [[:Category:Robocode API|Robocode API]] for more details.
 +
 +
; '''I get the following message when I run my bot, and I don't know how to solve it.'''
 +
<pre>
 +
SYSTEM: You have made 10000 calls to getXX methods without calling execute()
 +
SYSTEM: Robot disabled: Too many calls to getXX methods.
 +
</pre>
 +
: Robocode prevents you from calling functions like <code>getX()</code> or <code>getVelocity()</code> too many times during a single tick. So if you are using them in a long loop, it will raise this error. Actually, 95% of the time, this error is a symptom of an infinite loop in your bot. If you know you have a long-but-finite loop and you get this error, either just assign the values you want to use to a variable or use a [[RobotStatus]] object obtained from [[StatusEvent]].
 +
 +
; '''I'm using <code>bulletObject = setFireBullet(power)</code> to fire, and then I want to get the bullet coordinates. But when I try to print them using <code>System.out.println(bulletObject.getX() + bulletObject.getY())</code> I get an error. What's wrong?'''
 +
: <code>setFireBullet()</code> creates a Bullet object, but the bullet doesn't actually leave your bots gun until the next tick, so you can't do <code>getX()</code> or <code>getY()</code> on the bullet until then. If you change it to <code>fireBullet()</code> you should be OK, because the function won't return until the bullet is in the air. If <code>fireBullet()</code> won't work for you, you'll have to devise another method of making sure that you don't do <code>getX()</code> and <code>getY()</code> on bullets until the turn after you fire. For example, you could store Bullets in an ArrayList, and print out their coordinates before you fire in your main loop, so that a given bullet will be added to the vector on one turn, but won't be accessed until the next turn when your main loop starts over. Alternatively, your bot can attempt to predict/simulate it's own location on the next tick, to know where the bullet will be created.
 +
 +
; '''I want to reverse my direction when my movement is about to finish. I use something like <code>if (getDistanceRemaining() < minimum)</code>, but the bot behaves in a strange way.'''
 +
: The <code>getDistanceRemaining()</code> method (and in general all methods returning remaining movements of the body, gun, or radar) can return a positive or a negative value, depending on the direction of your movement. Use <code>if (Math.abs(getGetDistanceRemaining()) < minimum)</code> instead.
 +
 +
== See also ==
 +
 +
=== Robot API ===
 +
* [http://robocode.sourceforge.net/docs/robocode/ Robot API]
 +
 +
=== Tutorials ===
 +
* [[Robocode/System Requirements|System Requirements for Robocode]]
 +
* [[Robocode/Download|How to download and install Robocode]]
 +
* [[Robocode/Robot Anatomy|The anatomy of a robot]]
 +
* [[Robocode/Getting Started|Getting started with Robocode]]
 +
* [[Robocode/My First Robot|My First Robot Tutorial]]
 +
* [[Robocode/Game Physics|Robocode Game Physics]]
 +
* [[Robocode/Scoring|Scoring in Robocode]]
 +
* [[Robocode/Robot Console|Using the robot console]]
 +
* [[Robocode/Downloading_Robots|Downloading other robots]]
 +
* [[Robocode/Learning from Robots|Learning from other robots]]
 +
* [[Robocode/Package Robot|Package your robot]]
 +
* [[Robocode/Articles|Articles about Robocode]]
 +
* [[Robocode/Console Usage|Starting Robocode from the command line]]
 +
* [[Robocode/Graphical_Debugging|Graphical debugging]]
 +
* [[Robocode/Eclipse|Using Eclipse as IDE]]
 +
* [[Robocode/Eclipse/Create_a_Project|Creating a project for your robots]]
 +
* [[Robocode/Eclipse/Create_a_Robot|Creating a robot in Eclipse]]
 +
* [[Robocode/Running from Eclipse|Running your robot from Eclipse]]
 +
* [[Robocode/Eclipse/Debugging Robot|Debugging your robot with Eclipse]]
 +
 +
=== News and Releases ===
 +
* [http://sourceforge.net/export/rss2_project.php?group_id=37202 RSS Feeds for the Robocode project]
 +
* [http://sourceforge.net/project/showfiles.php?group_id=37202&package_id=29609 Robocode file releases]
 +
 +
=== Home pages ===
 +
* [http://robocode.sourceforge.net/ Classic homepage]
 +
* [http://sourceforge.net/projects/robocode Robocode project at SourceForge]
 +
* [http://robocoderepository.com/ Robocode Repository]
 +
* [[wikipedia:Robocode|Wikipedia entry for Robocode]]
 +
 +
[[Category:Robocode Documentation]]

Revision as of 17:50, 6 December 2016

Frequently asked questions about Robocode.

Installing and using

I can't install Robocode.
Please see instructions at download and install site.
I have downloaded a robot from the Web, but I don't know how to use it, because it doesn't appear anywhere.
By default, robots are read from the /robocode/robots directory. You can select "Robot -> Import Downloaded Robot" to copy a robot JAR to this directory from another location. Also, you can configure Robocode to read robots from additional locations using the Properties dialog.
What do I have to do to see the source code of a robot?
You can do two things. The first option is to open the Editor Window in Robocode and use the command in the File menu. The second option is to open the robot ".jar" file with a zip utility and find the source code there (assuming, of course, the robot is open source).
Can I play Robocode online?
Robocode is not an "online" game, so you can't, for example, share a battle with your friends in real time over the Internet. But you can upload your bots to places like Google Sites or Robocode Repository and join any of the existing competitions such as RoboRumble@Home, or organize one with your friends.
I have seen that many bots are packaged into ".jar" files. How do I package my bot?
Select, "Robot --> Package robot for upload" from the menu, then enter your robot's details when prompted.
When I test my bots, Robocode is slow. Is there a way to execute the battles faster?
When you are testing your robot, you want to execute many battles in a short time. Minimize the Robocode main screen to make it execute the battles at full speed.
I get this error when trying to start Robocode: "'JAVA' is not recognized as an internal or external command, operable or batch file"
This is caused by an unknown path to your Java installation. Please follow this instructions.

Game physics

What is the difference between frames and ticks?
A tick refers to one unit, which is also called a Turn in Robocode. During one turn, you may perform one action as a Robot, or multiple (independent) actions as an AdvancedRobot. A frame is a unit of drawing to the Robocode client interface. If you are processing turns slowly, you will get one frame per tick / turn. However, if you up the turns per second beyond your computer's ability to render the frames, you will miss some frames of animation. This won't affect the robots' behavior, unless you foolishly added code in your onPaint(Graphics2D) method that alters your bots behavior. In that case, your bot will behave differently depending on whether or not the Paint button has been enabled, and if the framerate can keep up with the turnrate.
Can I fire bullets with power higher than 3.0 or lower than 1.0?
No and yes. You can't fire bullets with power greater than 3.0, but you can fire bullets with power as low as 0.1. If you call a firing function (i.e. setFire()) with a value greater than 3.0, Robocode will adjust it to 3.0, and if you call it with a power lower than 0.1 (except 0.0 which will not fire) it will adjust it to 0.1. Additionally, you can fire bullets with power less than 0.1 under one condition: when your robot has less than 0.1 energy left, in which case a bullet is fired with however much energy your robot had left.
How fast does a bullet travel?
A bullet travels at a speed between 11.0 and 19.7 depending on the power. The more powerful the bullet, the slower. The formula to calculate its velocity = 20 - (3 * power).
Does the robot velocity get added to the bullet velocity on firing?
No, bullet velocity is not affected by robot velocity. It's kind of like the speed-of-light thing. =)
Which is the range of a bullet?
A bullet has no range. It keeps going until it hits a robot or a wall.
I want to fire a bullet every turn, but I can't. Why?
Every time you fire, the gun generates some heat. You must wait till it is cool again to fire. If you give a fire order when your gun is hot, it will do nothing. The heat generated by a shot is 1 + (firepower / 5). The gun cools down at a default rate of 0.1 per turn (note that you can change this parameter when you run the battle, but nobody usually does). It means you can fire a 3.0 power bullet every 16 ticks.
How much damage does a bullet do? How do I gain or lose energy?
You lose energy every time you hit a wall, you are hit by an enemy bullet, ram an enemy, or you fire your gun. The amount of energy you lose by being hit is 4 * bullet power + 2 * max(bullet power - 1 , 0). So the maximum amount is 16.0. When you fire, you spend a quantity of energy equal to the power of the bullet fired. When one of your bullets hits an enemy, you collect back 3 * bullet power energy. When you hit an enemy bot, each bot takes 0.6 damage. If an AdvancedRobot (but not a Robot or JuniorRobot) hits a wall, it will take max(abs(velocity) * 0.5 - 1, 0) damage.
Some times I get disabled. What happens?
You can't kill yourself, so when your energy drops to zero because you hit a wall or you fire, your bot gets disabled. It will not be able to move nor fire. If you are lucky enough and one of your bullets in the air hits an enemy, you will get some energy back and recover from disabled status.
I get disabled, but I my energy > 0. Why?
There are a few possible causes. You may have called a getXXX() function - such as getVelocity() - too many times a turn. The limit is 10000 getXXX() function calls per turn. To avoid disabling in such situations, either store returned values in variables for future use or use a RobotStatus object obtained from StatusEvent. Another case in which you can get disabled is throwing an exception, which may disable your bot, even if you catch the exception. Also, if your bot gets stuck in an infinite (or very long) loop and skips many turns, it may also get disabled.
How fast do I move?
You can move at a maximum speed of 8.0 units/tick. You can modify (down) your maximum velocity by using setMaxVelocity(...). Note that your bot will always accelerate to reach its maximum velocity.
How fast do I accelerate?
You accelerate at 1 unit/tick, and you decelerate at 2 units/tick. For example, if you are moving at an speed of 8.0 and reverse your direction your velocities will be [6.0, 4.0, 2.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0].
How fast do I turn?
The faster you go, the slower you turn. The formula to calculate it in degrees is 10 - 0.75 * abs(velocity).
What is the size of a bot?
The size of a bot is 36x36. Note, this is slightly smaller than the image of the bot. It is modeled as a non rotating square, so it's always the same regardless of its heading.
It seems that Robocode doesn't follow standard physics. If my velocity is 0 and I accelerate (acceleration = 1) my final velocity is 1, but it should be 0.5. What happened?
Time in Robocode, rather than being continuous, is in discrete "ticks". First acceleration is calculated, then velocity, and then position. So if you are stopped at a position 0 and you accelerate 1, your velocity next turn will be 1 and your position also 1.
How can I detect when an enemy has fired?
There is no direct way to detect when an enemy fired, but you can deduce it by monitoring the enemy energy drop. A drop between 0.1 and 3 usually means that it fired a bullet (there can be other reasons, such as a low energy bullet hit or a wall hit). Wall hits are (more or less) detectable as well. A deceleration > 2 means the bot hit a wall (or another bot). A deceleration <= 2 may be simple a bot hitting the brakes, or hitting a wall at velocity = 2, but since hitting a wall at that speed won't cause any damage, you can ignore that. AdvancedRobots take abs(velocity) / 2 - 1 (Never < 0) damage when hitting a wall, so by detecting (significant) wall-hits and adjusting the enemy drop accordingly, wall hits can be filtered out most of the time. This method fails when the enemy hits another robot.
How can I detect the position and heading of an enemy bullet?
You can't. There is no way to know it, directly or indirectly. But of course, you can always guess...
How fast can I turn my gun?
The gun turns at 20 degrees per tick.
How fast can I turn my radar?
It turns 45 degrees per tick.
Can I know the heading of the enemy gun/radar?
No.
Can I specify the initial position of my bot?
No. The bots are randomly placed in the field at the beginning of each round.

Programming your robot

What is the difference between the setXXX() (e.g. setFire()) and the XXX() (e.g. fire()) methods?
Basically, the setXXX() methods just notify Robocode to take some action at the end of the turn. The XXX()-type methods end the turn when you call them, and they block your robot's thread until the command finishes. Unless you have a good reason, you should almost always use the setXXX() version when writing AdvancedRobots.
How can I avoid my gun/radar turning when my bot turns?
You can use setAdjustGunForRobotTurn(), setAdjustRadarForGunTurn(), and setAdjustRadarForRobotTurn() methods to control this. If you call setAdjustGunForRobotTurn() and setAdjustRadarForGunTurn(), you don't need to call setAdjustRadarForRobotTurn().
Why are there two functions for getBearing() for example - one in radians and one in degrees? Is there any performance gain if I use radians instead of degrees?
There is no real advantage to using one or the other. Just use the one you prefer. Often, people start using degrees (just because they feel more comfortable with them) and later they switch to radians (because calculations are easier since you can use the built-in Java trigonometric functions). Just remember to use always radians or always degrees; mixing them up is not a good idea.
I need to trace my bots actions and variables. I saw that everybody uses out.println("..."), but where is that printed?
It prints to the robot console. When you execute the battle, just click on the button on the right of the screen that shows the name of your robot to open its console.
How do you get your radar to stay focused on a robot that you have defined as your target?
You just turn the radar the other way around when you scan the bot. You lock your radar by not turning it 45 degrees, but only the arc needed to stay focused. See the Radar page for some example code.
How can I know how many enemies are in the battle field?
You can use the getOthers() method to know how many live enemies are in the battlefield.
I'm trying to recognize an enemy/teammate from its name (using e.getName()) but the condition always fails. What's happening?
Because of Java's funky way of interpreting references to Strings (not to mention a lack of operator overloading), you can't use an expression like if (e.getName() == testname) to check for equality. You have to use the String.equals() method, as in if (e.getName().equals(testname)).
How do I keep data from round to round and battle to battle?
The easiest way is to save data between rounds of a battle is to make the variables in the bot class static. Because Robocode uses a separate classloader for every robot, the variables will not conflict even when you have more than one copy of a robot in a battle. Note that this will save data between rounds, not between battles. To save between battles you will have to save to a file. The maximum allowed disk space for files is 200k. Look at the Robocode API for more details.
I get the following message when I run my bot, and I don't know how to solve it.
SYSTEM: You have made 10000 calls to getXX methods without calling execute()
SYSTEM: Robot disabled: Too many calls to getXX methods.
Robocode prevents you from calling functions like getX() or getVelocity() too many times during a single tick. So if you are using them in a long loop, it will raise this error. Actually, 95% of the time, this error is a symptom of an infinite loop in your bot. If you know you have a long-but-finite loop and you get this error, either just assign the values you want to use to a variable or use a RobotStatus object obtained from StatusEvent.
I'm using bulletObject = setFireBullet(power) to fire, and then I want to get the bullet coordinates. But when I try to print them using System.out.println(bulletObject.getX() + bulletObject.getY()) I get an error. What's wrong?
setFireBullet() creates a Bullet object, but the bullet doesn't actually leave your bots gun until the next tick, so you can't do getX() or getY() on the bullet until then. If you change it to fireBullet() you should be OK, because the function won't return until the bullet is in the air. If fireBullet() won't work for you, you'll have to devise another method of making sure that you don't do getX() and getY() on bullets until the turn after you fire. For example, you could store Bullets in an ArrayList, and print out their coordinates before you fire in your main loop, so that a given bullet will be added to the vector on one turn, but won't be accessed until the next turn when your main loop starts over. Alternatively, your bot can attempt to predict/simulate it's own location on the next tick, to know where the bullet will be created.
I want to reverse my direction when my movement is about to finish. I use something like if (getDistanceRemaining() < minimum), but the bot behaves in a strange way.
The getDistanceRemaining() method (and in general all methods returning remaining movements of the body, gun, or radar) can return a positive or a negative value, depending on the direction of your movement. Use if (Math.abs(getGetDistanceRemaining()) < minimum) instead.

See also

Robot API

Tutorials

News and Releases

Home pages