RealTimeBattle

From Upstream

Jump to: navigation, search

RealTimeBattle is a game where programmed bots fight each other. Bots can be programmed in any language communicating via STDIN/STDOUT. For more info see http://realtimebattle.sourceforge.net/

The idea is to have a rtb tournament at devhouse, so let's program a few bots and let the fight each other.

[edit] realtimebattle.rb

since we didn't manage to compile the original rtb written in c++ a bunch of us started reimplementing it in ruby. so we spent the weekend writing the game instead of bots. here is the source: http://github.com/langalex/realtimebattle_rb

[edit] Bots

list your bots + url to code here

[edit] Install on Linux

When you can use the debian package, use that. When not, try this:

 wget http://sourceforge.net/projects/realtimebattle/files/RealTimeBattle-1.0.x/RealTimeBattle%201.0.8/RealTimeBattle-1.0.8-Ext.tar.bz2/download
 tar xjf RealTimeBattle-1.0.8-Ext.tar.bz2
 cd RealTimeBattle-1.0.8-Ext/
 wget http://ftp.debian.org/debian/pool/main/r/realtimebattle/realtimebattle_1.0.8-9.diff.gz
 gunzip realtimebattle_1.0.8-9.diff.gz
 patch -p 1 < realtimebattle_1.0.8-9.diff
 ./configure
 make && sudo make install
Personal tools