Skip to content

Instantly share code, notes, and snippets.

@naab
Forked from satansfate/robot.js
Created December 12, 2012 18:03
Show Gist options
  • Save naab/4270095 to your computer and use it in GitHub Desktop.
Save naab/4270095 to your computer and use it in GitHub Desktop.
Attempted Random
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
var angle = 0;
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(angle);
robot.rotateCannon(360);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot;
angle = ev.robot.cannonAbsoluteAngle + 5;
robot.fire();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment