Created
December 5, 2012 06:05
-
-
Save rolisz/4212812 to your computer and use it in GitHub Desktop.
rolisz
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) { | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
robot.ahead(100); | |
robot.rotateCannon(360); | |
robot.turn(Math.random()*360); | |
robot.back(100); | |
robot.rotateCannon(360); | |
}; | |
Robot.prototype.onScannedRobot = function(ev) { | |
var robot = ev.robot; | |
robot.fire(); | |
}; | |
Robot.prototype.onHitByBullet = function(ev) { | |
var robot = ev.robot; | |
robot.ahead(50); | |
robot.turn(ev.bearing+20); // Turn to wherever the bullet was fired | |
// so we can see who shot it | |
}; | |
Robot.prototype.onWallCollision = function(ev) { | |
var robot = ev.robot; | |
robot.turn(ev.bearing); // turn enought to be in a straight | |
// angle with the wall. | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment