Skip to content

Instantly share code, notes, and snippets.

@willishq
Created December 3, 2012 20:34
Show Gist options
  • Select an option

  • Save willishq/dac8f9c17686a937e240 to your computer and use it in GitHub Desktop.

Select an option

Save willishq/dac8f9c17686a937e240 to your computer and use it in GitHub Desktop.
WillisBot
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot){
this.offset = 1;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.turn(1);
};
Robot.prototype.onScannedRobot = function(ev) {
var fd = 5, robot = ev.robot, scannedRobot = ev.scannedRobot;
if (robot.id == scannedRobot.parentId || robot.parentId == scannedRobot.id) {
return;
}
robot.stop();
robot.clone();
for (var i=0; i<10; i++) {
robot.fire();
robot.ahead(i);
}
};
Robot.prototype.onWallCollision = function(ev) {
ev.robot.stop();
ev.robot.turn(20);
};
Robot.prototype.onRobotCollided = function(ev) {
ev.robot.stop();
this.offset = -1 * this.offset;
ev.robot.turn(10 * this.offset);
};
Robot.prototype.onHitByBullet = function(ev) {
ev.robot.stop;
robot = ev.robot;
robot.turn(20);
robot.ahead(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment