Skip to content

Instantly share code, notes, and snippets.

@stevencorona
Created December 3, 2012 17:22
Show Gist options
  • Save stevencorona/4196499 to your computer and use it in GitHub Desktop.
Save stevencorona/4196499 to your computer and use it in GitHub Desktop.
Steve
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
var shouldTurn = true;
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
//robot.ahead(100);
//robot.rotateCannon(360);
//robot.back(100);
if (shouldTurn == true) {
robot.rotateCannon(10);
}
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot;
robot.fire(2);
robot.fire(2);
shouldTurn = false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment