Skip to content

Instantly share code, notes, and snippets.

@randompast
Created December 4, 2012 03:46
Show Gist options
  • Select an option

  • Save randompast/4200329 to your computer and use it in GitHub Desktop.

Select an option

Save randompast/4200329 to your computer and use it in GitHub Desktop.
QR-bot-004
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
robot.clone();
};
//////
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.turn(4);
robot.rotateCannon(8);
robot.ahead(3);
};
Robot.prototype.onWallCollision = function(ev) {
var robot = ev.robot;
for(var i=1; i<50; i++){
robot.turn(2);
robot.rotateCannon(-2);
robot.back(2);
}
};
Robot.prototype.onRobotCollision = function(ev) {
var robot = ev.robot;
for(var i=1; i<50; i++){
robot.turn(2);
robot.rotateCannon(-2);
robot.back(2);
}
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot, scannedRobot = ev.scannedRobot;
if (robot.id == scannedRobot.parentId || robot.parentId == scannedRobot.id) {
return;
}
robot.fire();
// robot.log(ev.scannedRobot.position.x);
// robot.log(robot.arenaWidth);
robot.rotateCannon(-20);
};
Robot.prototype.onHitByBullet = function(ev) {
var robot;
robot = ev.robot;
for(var i=1; i<50; i++){
robot.turn(Math.floor((90-ev.bulletBearing)/50));
robot.back(4);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment