Tagged Questions
Robocode is a programming game, where the goal is to develop a robot battle tank to battle against other tanks in Java or .NET. The robot battles are running in real-time and on-screen.
11
votes
2answers
677 views
Security of scala runtime
I'm developer of Robocode engine. We would like to make Robocode
multilingual and Scala seems to be good match. We have Scala plugin prototype here.
The problem:
Because users are creative ...
8
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?
6
votes
6answers
2k views
Developing a Robocode type game with .Net, for a School Assignment
I am currently in my final year at school, studying for a Higher National Diploma in Computer Studies, and basically in this final semester, we need to develop a Software Project, that basically ...
2
votes
2answers
290 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
0answers
249 views
maven Embedded error: No such archiver
I am completely new to maven.
I am trying to do a coverage analysis of the test in robocode.
For that I am using clover (trial license) since emma doesn't seem to able to handle multi-module ...
2
votes
2answers
112 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
243 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
160 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
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
0answers
53 views
Robocode + Python
The question is, how do you make a robot for Robocode using Python? There seem to be two options:
Robocode + Jython
Robocode for .NET + Iron Python
There's some info for the first, but it doesn't ...
0
votes
2answers
228 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
200 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 {
...
0
votes
2answers
416 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 ...