Thread history

Fragment of a discussion from Talk:Robocode/Eclipse
Viewing a history listing
Jump to navigation Jump to search
Time User Activity Comment
No results

Hi mate. Not sure if you have figured this out by now, you can set up an "External Tool Configuration" in Eclipse. I wrote a little script (very basic) and saved for every bot a configuration with the name pattern. After that you can start the script after every change you made and eclipse will show you the codesize of your classes. Depending on you scripting skills you can do almost everything you need (like sum up the class sizes and whatnot).

#!/bin/sh

for i in $*
do 
echo $i
java -jar ./codesize.jar <your_development_path>/$i*.class
done
Wompi11:12, 10 February 2013