Robocode/Console Usage

From Robowiki
< Robocode
Revision as of 04:21, 13 August 2010 by Nat (talk | contribs) (→‎Console Usage: correct the -Dxxx path, Java properties MUST be placed before the class name. (thanks Chase))
Jump to navigation Jump to search

This page describes how to run and use Robocode from a console.

Starting Robocode

Robocode is normally started by a batch file depending on the OS:

  • robocode.bat on Windows
  • robocode.sh on Unix/Linux
  • robocode.command on Mac OS X

The batch files is used for setting required parameters for the Java VM in order to start and run Robocode properly.

Robocode is started from a console by writing:

 java -Xmx512M -Dsun.io.useCanonCaches=false -cp libs/robocode.jar robocode.Robocode

Here you must stand in the 'robocode' directory where Robocode has been pre-installed.

  • java is the command used for running the Java VM, which is required for starting and running Robocode.
  • -Xmx512M sets the maximum heap size for the Java VM to 512 MB of heap memory, meaning that Robocode cannot use more than 512 MB of memory.
  • -Dsun.io.useCanonCaches=false is used to disable canonical cashing of file names, which wourld otherwise cause problems under Windows. With future versions of Robocode, this option is not necessary anymore, and will hence be obsolete at that time.
  • -cp libs/robocode.jar tells the Java VM which library (jar file), which is used for starting up Robocode.
  • robocode.Robocode specifies the main entry class of the Robocode game, which is required for starting Robocode.

With all of the above, Robocode will startup with a graphical user interface (GUI) waiting for user inputs. But it is possible to change the way Robocode is started and how it must run. That is, you can specify additional parameters to the command line above. These parameters are described in the following with the console usage.

Console Usage

 Usage: robocode [-?] [-help] [-cwd path] [-battle filename [-results filename]
                 [-record filename] [-recordXML filename] [-replay filename]
                 [-tps tps] [-minimize] [-nodisplay] [-nosound]
 
 where options include:
   -? or -help                Prints out the command line usage of Robocode
   -cwd <path>                Change the current working directory
   -battle <battle file>      Run the battle specified in a battle file
   -results <results file>    Save results to the specified text file
   -record <bin record file>  Record the battle into the specified file as binary
 
   -recordXML <xml rec file>  Record the battle into the specified file as XML
   -replay <record file>      Replay the specified battle record
   -tps <tps>                 Set the TPS > 0 (Turns Per Second)
   -minimize                  Run minimized when Robocode starts
   -nodisplay                 Run with the display / GUI disabled
   -nosound                   Run with sound disabled
 
 Java Properties include:
   -DWORKINGDIRECTORY=<path>  Set the working directory
   -DROBOTPATH=<path>         Set the robots directory (default is 'robots')
   -DBATTLEPATH=<path>        Set the battles directory (default is 'battles')
   -DNOSECURITY=true|false    Enable/disable Robocode's security manager
   -Ddebug=true|false         Enable/disable debugging used for preventing
                              robot timeouts and skipped turns, and allows an
                              an unlimited painting buffer when debugging robots
   -DEXPERIMENTAL=true|false  Enable/disable access to peer in robot interfaces
   -DPARALLEL=true|false      Enable/disable parallel processing of robots turns
   -DRANDOMSEED=<long number> Set seed for deterministic behavior of random
                              numbers

Example 1 - Running a battle

In this first example, Robocode is running the 'sample.battle' from the 'battles' directory without the display (GUI), and where the results are written out to the file named 'results.txt':

 java -Xmx512M -Dsun.io.useCanonCaches=false -cp libs/robocode.jar robocode.Robocode
   -battle battles\sample.battle -nodisplay -results results.txt

Example 2 - Disabling security

With this example the Robocode security manager is disabled, which allows a developer to let robots access files and classes from outside Robocode:

 java -Xmx512M -DNOSECURITY=true -Dsun.io.useCanonCaches=false
    -cp libs/robocode.jar robocode.Robocode

This allows a robot developer to let a robot access 3rd party libraries with suport for e.g. neural networks and similar. Notice that disabling security with this option does not disable all security. The normal Java security mechanishms still apply. But most of the security mechanishms added by Robocode are disabled.

Example 3 - Running in Debug Mode

When trying to debug a robot by single stepping in an external IDE like e.g. Eclipse og NetBeans, it is important that the debug mode is enabled. Otherwise the robot will retrieve skipped turns and by stopped by the game very fast.

 java -Xmx512M -Ddebug=true -Dsun.io.useCanonCaches=false
    -cp libs/robocode.jar robocode.Robocode

See also

Robot API

Tutorials

News and Releases

Home pages