Awesome
Simple Scala Set Up for Robocode
This is a Scala project in which you can write and compile Robocode robots.
To then be able to run them in Robocode itself, there are two things to do:
-
Add the Scala library as a dependency to the robotcode shell script; and
-
Add your target/classes path to the "Developer Options" in Robocode itself.
Details below.
Once you've done that you can sbt
and compile
away. You can restart a battle in Robocode and it appears to pick up changes.
This repository contains a sample.ScalaMyFirstRobot which is the same as MyFirstRobot but syntactically ported to Scala.
Scala library
In my installation of robocode, I coped robocode.sh and added in the path to Scala std lib:
robocode$ cat scalarobocode.sh
#!/bin/sh
#
# Copyright (c) 2001-2014 Mathew A. Nelson and Robocode contributors
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://robocode.sourceforge.net/license/epl-v10.html
#
export SCALA_LIB=$HOME/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.7.jar
pwd=`pwd`
cd "${0%/*}"
java -Xmx512M -cp libs/robocode.jar:$SCALA_LIB robocode.Robocode $*
cd "${pwd}"
Robocode Developer Options
After launching Robocode, select Options > Preferences, and in Developer Options, hit Add and pick the path to your compiled robots: