Created
December 6, 2012 19:05
-
-
Save jon1012/4227240 to your computer and use it in GitHub Desktop.
Just Try :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//FightCode can only understand your robot | |
//if its class is called Robot | |
var Robot = function(robot) { | |
}; | |
var should_rotate = true; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
if (should_rotate) { | |
robot.ahead(1); | |
robot.rotateCannon(1); | |
robot.turn(1); | |
} | |
}; | |
Robot.prototype.onScannedRobot = function(ev) { | |
var robot = ev.robot; | |
var other_robot = ev.scannedRobot; | |
should_rotate = false; | |
robot.rotateCannon(2); | |
robot.fire(1); | |
robot.rotateCannon(2); | |
robot.fire(1); | |
robot.rotateCannon(2); | |
robot.fire(1); | |
robot.rotateCannon(-2); | |
robot.fire(1); | |
robot.rotateCannon(-2); | |
robot.fire(1); | |
robot.rotateCannon(-2); | |
robot.fire(1); | |
setTimeout(function() { | |
should_rotate = true; | |
},100); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment