Skip to content

Instantly share code, notes, and snippets.

@douglas
Forked from heynemann/robot.js
Created December 1, 2012 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save douglas/4182456 to your computer and use it in GitHub Desktop.
Save douglas/4182456 to your computer and use it in GitHub Desktop.
Merry Go round
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot){
robot.clone();
robot.turn(45);
this.offset = 1;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.turn(1);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot, scannedRobot = ev.scannedRobot;
if (robot.id == scannedRobot.parentId || robot.parentId == scannedRobot.id) {
return;
}
robot.stop();
for (var i=0; i<10; i++) {
robot.fire();
robot.ahead(10);
}
};
Robot.prototype.onWallCollision = function(ev) {
ev.robot.stop();
ev.robot.turn(10);
};
Robot.prototype.onRobotCollided = function(ev) {
ev.robot.stop();
this.offset = -1 * this.offset;
ev.robot.turn(10 * this.offset);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment