Skip to content

Instantly share code, notes, and snippets.

@vanceingalls
Created December 5, 2012 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanceingalls/4220526 to your computer and use it in GitHub Desktop.
Save vanceingalls/4220526 to your computer and use it in GitHub Desktop.
Jeffrey
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
var clone = robot.clone();
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(100);
robot.turn(30);
robot.rotateCannon(-40);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot,
other = ev.scannedRobot,
shoot = robot.parentId !== other.id;
robot.stop();
robot.ignore('onIdle');
if( shoot ){
robot.fire();
}else{
robot.turn(180);
}
};
Robot.prototype.onWallCollision = function(ev) {
var robot = ev.robot; // trying to run away
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment