MIT Video Game Programming Competition in Java
A reader writes:"252 MIT students are spending the month of January writing Java
programs to control virtual robots in a videogame environment called
Robocraft. These virtual robots will battle each other for cash
prizes in a tournament to see who can write the best Robocraft
player. The
competition is being sponsored
by top tech companies including Bank of America, Electronic Arts, BBN,
Schlumberger, Google, Microsoft, Apple, and Oracle. Only MIT students
are eligible to compete, but anyone can read the specs,
download the software,
and program their own virtual robot using the Robocraft
API."
sounds like that programming game.
And MIT prize funds of $13,000, i think i want to be sick.
How much does tuition cost you over there in the UK?
My college also did a tournament type thing using alpha beta AI with 3D (4x4) tic-tac-toe. the prize for the winner was an A+ on the final. screw money.
this sounds like Robocode from IBM, http://www.robocode.net has a large following. We used this in my 1st year as a programming project. My friend's was powerful... it would learn you and never loose.
it's not hard to do. There is a set API, and everything is there. It's like lego,... which makes it fun too.
while(1) { fork(); };
One particular feature of the game rules is that time is measured by counting executed bytecodes. So we can expect that contestants will aim to produce very efficient code.
Do you know any Java compiler benchmark that compares generated bytecode?