Tagged Questions

9
votes
1answer
2k views

Where can I find a good Robocode tutorial?

I have really enjoyed playing Robocode with my first robot. Now I want to make something a little more exciting. What's the best tutorial on making advanced robots?
2
votes
2answers
344 views

Is there are alternative to robot programming game robocode?

I dont mind if it will be turn based or real time. It just must be popular and allow to write your strategy with java language
2
votes
2answers
114 views

Refresh Java argument

I am writing a program for a programming game called robocode. The problem is here: void wallScan(boolean While){ stop(); getStraight(); turnGunRight(90); if(startabsolute){ ...
2
votes
2answers
253 views

Java file input and output

I have the below method which is meant to append information to a file but I get the error below. In the method I use parts of robocode API which inherits from java.io.InputStream All the permissions ...
1
vote
1answer
175 views

Robocode Robot with Drools Expert

i have a class assignment to create a Robot using Drools as an inference machine. however, most of my rules act strange since they don't fire for the class but fire for it's superclass. Something like ...
1
vote
2answers
428 views

robocode engine: how to design (write) the runtime engine — the robot world

IBM has (had) a free learn-Java program called RoboCode, in which custom robots could be written that would then do battle in a 2D space. I would like to write the environment that supports such ...
1
vote
2answers
106 views

Version control to manage club project?

At my school, we're starting a coding competition for our CS club to help out our freshmen learn the practices of fast turn around times, due dates, code comparison, and API documentation using ...
0
votes
2answers
248 views

File writing in Robocode (Java)

basically, I am trying to generate a log file in Robocode, but I am having issues as you cannot use try/catch in Robocode (as far as I am aware). I have done the following:- public void ...
0
votes
1answer
222 views

Class Self-Reference

I have the following code. The angle function needs some information from the class it was called from. What's the best way to do this? class MyScannedRobotEvent extends robocode.ScannedRobotEvent { ...