Difference between revisions of "RoboRumble/Contributing to RoboRumble"
Jump to navigation
Jump to search
(fix grammar and clarify) |
(Looks like Java 11 is now the norm according to the Participants page?) |
||
(44 intermediate revisions by 13 users not shown) | |||
Line 1: | Line 1: | ||
− | + | '''ATTENTION: This article is not about entering a new robot into RoboRumble. Enter [[RoboRumble/Enter The Competition|here]].''' | |
− | + | You should consider contributing to RoboRumble and the Robocode community, by donating spare computer time to execute battles between bots (similar to the [http://folding.stanford.edu/ Folding@home] and [https://setiathome.berkeley.edu/ SETI@Home] projects). The process is fully automated, so there is no pain in doing it. | |
− | + | Run it as much as you can! The more you run it, the faster everybody's bots will be ranked. Report problems [[{{TALKPAGENAME}}|here]]. | |
− | # Make a | + | == Setting up == |
− | + | # Make sure you are using Java 11. Older versions of Java may not work with certain bots. | |
− | + | # Make a new, clean installation of the version of Robocode ([http://sourceforge.net/projects/robocode/files/robocode/ download]) that matches what [http://literumble.appspot.com/RumbleStats LiteRumble] indicates is allowed. | |
− | # Extract | + | # Edit '''<code>roborumble/[roborumble/meleerumble/teamrumble/twinduel].txt</code>''' and change the <code>Put_Your_Name_Here</code> to your preferred username. |
− | # | + | # Extract the [http://robocode-archive.strangeautomata.com/participants-latest.zip latest bot archive] (42.1 MB zip file) into the "robots" directory. |
− | + | # (Optional) On newer CPUs on which you are planning to run RoboRumble exclusively, disable [[Dynamic Overclocking]]. | |
− | |||
− | |||
− | + | There you go! | |
− | |||
− | == | + | == Running battles == |
− | + | * Run [[1v1]] battles with '''<code>roborumble.bat</code>''' (Windows), '''<code>roborumble.sh</code>''' (Linux), or '''<code>roborumble.command</code>''' (MacOS). | |
− | * | + | * Run [[melee]] battles with '''<code>meleerumble[.bat/.sh/.command]</code>'''. |
− | + | * Run [[Teams|team]] battles with '''<code>teamrumble[.bat/.sh/.command]</code>'''. | |
− | + | * Run [[Twin Duel|twin duel]] battles with '''<code>twinduel[.bat/.sh/.command]</code>'''. | |
− | |||
− | * | ||
− | |||
− | * | ||
− | * | ||
− | |||
− | |||
− | ==== | + | == RoboRumble bot JARs == |
− | * | + | Downloads: |
− | * http:// | + | * [http://robocode-archive.strangeautomata.com/participants-latest.zip The latest bot archive] (42.1 MB). It contains the JARs of all robots in the rumble, automatically updated on an hourly basis. Unzip them into your <code>robots/</code> folder. |
+ | * [http://robocode-archive.strangeautomata.com/ Earlier bot archives] | ||
+ | * [http://robocode-archive.strangeautomata.com/robots/ All JARs that have ever been submitted into the RoboRumble] ([https://github.com/aleksey-zhidkov/rc-repo-mirror GitHub mirror] here, but hasn't been updated since 2013) | ||
− | + | Credits to [[Rednaxela]] for the archive server, and [[Jdev]] for the GitHub mirror. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Useful options in roborumble.txt == | == Useful options in roborumble.txt == | ||
− | * | + | * '''USER''' ‒ Your name/handle, used for identification of your roborumble client. |
− | * | + | * '''BATTLESPERBOT''' ‒ The minimum number of battles a bot needs before it stops getting priority. |
− | * | + | * '''NUMBATTLES''' ‒ The number of battles fought on each run of roborumble |
− | * | + | * '''ITERATE''' ‒ Whether to run battles indefinitely. |
− | + | * '''UPLOAD''' ‒ Can be used to disable uploading. Disable uploading when testing a version of Robocode NOT allowed by the server. Not really necessary, as the current server will reject results from incorrect versions anyway. | |
− | == | + | == Troubleshooting == |
− | + | Remove the following files or directories: | |
+ | * <code>config/</code> | ||
+ | * <code>roborumble/files/</code> | ||
+ | * <code>roborumble/temp/</code> | ||
+ | * <code>robots/robot.database</code> | ||
− | + | And try again. | |
− | === | + | == Screenshots == |
− | + | [[Image:RoboRumbleClient.png]] | |
− | |||
− | |||
− | |||
− | |||
− | : | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == | + | == See Also == |
− | + | {{:RoboRumble/Navigation}} | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 07:33, 13 June 2021
ATTENTION: This article is not about entering a new robot into RoboRumble. Enter here.
You should consider contributing to RoboRumble and the Robocode community, by donating spare computer time to execute battles between bots (similar to the Folding@home and SETI@Home projects). The process is fully automated, so there is no pain in doing it.
Run it as much as you can! The more you run it, the faster everybody's bots will be ranked. Report problems here.
Contents
Setting up
- Make sure you are using Java 11. Older versions of Java may not work with certain bots.
- Make a new, clean installation of the version of Robocode (download) that matches what LiteRumble indicates is allowed.
- Edit
roborumble/[roborumble/meleerumble/teamrumble/twinduel].txt
and change thePut_Your_Name_Here
to your preferred username. - Extract the latest bot archive (42.1 MB zip file) into the "robots" directory.
- (Optional) On newer CPUs on which you are planning to run RoboRumble exclusively, disable Dynamic Overclocking.
There you go!
Running battles
- Run 1v1 battles with
roborumble.bat
(Windows),roborumble.sh
(Linux), orroborumble.command
(MacOS). - Run melee battles with
meleerumble[.bat/.sh/.command]
. - Run team battles with
teamrumble[.bat/.sh/.command]
. - Run twin duel battles with
twinduel[.bat/.sh/.command]
.
RoboRumble bot JARs
Downloads:
- The latest bot archive (42.1 MB). It contains the JARs of all robots in the rumble, automatically updated on an hourly basis. Unzip them into your
robots/
folder. - Earlier bot archives
- All JARs that have ever been submitted into the RoboRumble (GitHub mirror here, but hasn't been updated since 2013)
Credits to Rednaxela for the archive server, and Jdev for the GitHub mirror.
Useful options in roborumble.txt
- USER ‒ Your name/handle, used for identification of your roborumble client.
- BATTLESPERBOT ‒ The minimum number of battles a bot needs before it stops getting priority.
- NUMBATTLES ‒ The number of battles fought on each run of roborumble
- ITERATE ‒ Whether to run battles indefinitely.
- UPLOAD ‒ Can be used to disable uploading. Disable uploading when testing a version of Robocode NOT allowed by the server. Not really necessary, as the current server will reject results from incorrect versions anyway.
Troubleshooting
Remove the following files or directories:
config/
roborumble/files/
roborumble/temp/
robots/robot.database
And try again.
Screenshots
See Also
|