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.
0
votes
0answers
20 views
Robocode (java): how can I make my robot change color depending on the result of getEnergy()?
So I've been working on this robot in Robocode, and I want it to change its color based on the result of the command getEnergy()
However, I can't seem to get it to work. The java code I have created ...
-3
votes
1answer
27 views
Getting enemy's life in robocode [closed]
I am a novice programmer. How can I measure the enemy's energy level in robocode. Probably the following link has my answer but I am not getting it well enough.
...
1
vote
0answers
34 views
Java: How can I assemble/create a single instance for classification using a Weka generated model?
I've been searching for an answer to this for a while to no avail.
First a bit of background: I'm trying to create an AI for robocode using Weka.
I'm first logging the required data from a manual ...
0
votes
0answers
49 views
Robocode with Swi-Prolog
I have to write a robot using First Order Logic. So i found the better way to do this would be using prolog.
So i trying to use JPL from swi-prolog. Does any one has a tutorial how to integrate ...
1
vote
2answers
58 views
explanation of a wave
I just started experimenting with Robocode and read about waves: http://robowiki.net/wiki/Wave
what I don't understand is, why circles are used here.
i mean, when I shoot a bullet I only shoot it in ...
0
votes
0answers
39 views
Scala and Robocode- ClassCircularityError
this is my code
def main(args: Array[String]): Unit = {
val engine = new RobocodeEngine
def rounds = 1
val battlefield = new BattlefieldSpecification(1000, 500)
//val robots = ...
0
votes
0answers
53 views
Suitable, open source bot for genetic robocode
i need to develop a toy genetic enviroment to estimate the best parameters for a Robocode bot. Therefore i need a bot with hard-coded algorhithms (i don't want to define it through GP). I'm here to ...
0
votes
0answers
62 views
Robocode out of memory error
I am attempting to write a simple robot that uses 2d ArrayLists that I can later manipulate to change the robots actions
The trouble I am having is that at the moment when I run the robot it runs for ...
-2
votes
1answer
79 views
Robocode: How can I programatically compile a robot?
I have created a program which generates Robocode robots, saving them as the usual .java files. The issue I am having is compiling them to be used in battles!
I need to do this automatically in code, ...
0
votes
1answer
56 views
Robocode: Where can I get a JAR file for the Engine?
I wish to automatically run a series of Robocode tanks in matches, and recieve back their scores and other info.
I believe that I require the Robocode Engine, and wondered where I could get a JAR file ...
-2
votes
1answer
65 views
How do static methods work in this example? [closed]
package fnl;
import robocode.Robot;
import robocode.ScannedRobotEvent;
public class FnlBot2 extends Robot{
public void run(){
turnLeft(getHeading() % 90);
turnGunRight(90);
...
0
votes
1answer
68 views
Robocode instadd issue in windows 7 for .Net platform
I want developing the robocode base on .Net platform, but I meet a issue to starting it.
I had installed Java and .Net 4.0 on my machine. After download and installed the robocode-1.7.4.4-setup.jar, ...
0
votes
1answer
145 views
How does robocode work?
For my University course we have been given the code for the programming game robocode and we need to add features to the game to change how it is played.
To do this I need to know more about how ...
2
votes
1answer
242 views
Is there a Robocode like game for C++ [closed]
I have studied Java for a year. Now I'm starting to learn C++, and I next plan to start developing games. Where can I find game frameworks like Robocode or tutorials for learning C++ with a focus on ...
11
votes
2answers
762 views
Is threre a RoboCode like Game or Challenge for Python? [closed]
Im looking for a game or challenge which is similar to RoboCode or Scalatron. I am not interested in challenges like Project Euler where i get points for solving a specific problem. I am looking for ...
0
votes
2answers
3k views
Need Help To Make A Good Robocode Robot
I came to ask about Robocode robots. I have a code for my robots and against 26 of my friends it came 11th. However, I want to try to make it better. I have looked over websites and adjusted my code ...
0
votes
4answers
104 views
Java Create Configuration-like File
I am using Robocode to develop GA tanks that evolve to give better performance (achieving highest fitness levels) and in order to do that I need to store information about each tank in one file.
The ...
1
vote
0answers
308 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 ...
4
votes
2answers
1k views
Is there are alternative to robot programming game robocode? [closed]
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
1
vote
1answer
409 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 ...
2
votes
1answer
765 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 ...
0
votes
2answers
615 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
919 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 {
...
2
votes
2answers
140 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
565 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 ...
12
votes
2answers
1k 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 ...
1
vote
1answer
598 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
117 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 ...
9
votes
1answer
3k 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?
11
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 ...
