sample.SittingDuck Maven / Gradle / Ivy
/*
* Copyright (c) 2001-2023 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
* https://robocode.sourceforge.io/license/epl-v10.html
*/
package sample;
import robocode.AdvancedRobot;
import robocode.RobocodeFileOutputStream;
import java.awt.*;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintStream;
/**
* SittingDuck - a sample robot by Mathew Nelson.
*
* Along with sitting still doing nothing, this robot demonstrates persistency.
*
* @author Mathew A. Nelson (original)
* @author Flemming N. Larsen (contributor)
* @author Andrew Magargle (contributor)
*/
public class SittingDuck extends AdvancedRobot {
static boolean incrementedBattles = false;
public void run() {
setBodyColor(Color.yellow);
setGunColor(Color.yellow);
int roundCount, battleCount;
try {
BufferedReader reader = null;
try {
// Read file "count.dat" which contains 2 lines, a round count, and a battle count
reader = new BufferedReader(new FileReader(getDataFile("count.dat")));
// Try to get the counts
roundCount = Integer.parseInt(reader.readLine());
battleCount = Integer.parseInt(reader.readLine());
} finally {
if (reader != null) {
reader.close();
}
}
} catch (IOException e) {
// Something went wrong reading the file, reset to 0.
roundCount = 0;
battleCount = 0;
} catch (NumberFormatException e) {
// Something went wrong converting to ints, reset to 0
roundCount = 0;
battleCount = 0;
}
// Increment the # of rounds
roundCount++;
// If we haven't incremented # of battles already,
// Note: Because robots are only instantiated once per battle, member variables remain valid throughout it.
if (!incrementedBattles) {
// Increment # of battles
battleCount++;
incrementedBattles = true;
}
PrintStream w = null;
try {
w = new PrintStream(new RobocodeFileOutputStream(getDataFile("count.dat")));
w.println(roundCount);
w.println(battleCount);
// PrintStreams don't throw IOExceptions during prints, they simply set a flag.... so check it here.
if (w.checkError()) {
out.println("I could not write the count!");
}
} catch (IOException e) {
out.println("IOException trying to write: ");
e.printStackTrace(out);
} finally {
if (w != null) {
w.close();
}
}
out.println("I have been a sitting duck for " + roundCount + " rounds, in " + battleCount + " battles.");
}
}