Skip to content

Instantly share code, notes, and snippets.

@kjaku
Created December 4, 2012 16:22
Show Gist options
  • Save kjaku/4205769 to your computer and use it in GitHub Desktop.
Save kjaku/4205769 to your computer and use it in GitHub Desktop.
xxx
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.clone();
robot.rotateCannon(360);
robot.ahead(80);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot;
var scanned =ev.scannedRobot;
if(scanned.id !== robot.parentId && scanned.parentId !== robot.id) {
robot.fire(1);
robot.ahead(10);
robot.rotateCannon(-30);
}else{
robot.ahead(30);
}
};
Robot.prototype.onWallCollision = function(ev) {
var robot = ev.robot;
robot.back(90);
robot.turn(90);
};
Robot.prototype.onRobotCollision = function(ev) {
var robot = ev.robot;
robot.turn(90);
robot.ahead(100); // trying to run away
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment