-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsrobot.js
More file actions
83 lines (61 loc) · 1.63 KB
/
jsrobot.js
File metadata and controls
83 lines (61 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
function empty(mixed_var) {
return ( mixed_var === '' || mixed_var === 0 || mixed_var === '0' ||
mixed_var === null || mixed_var === false || mixed_var === undefined ||
mixed_var.length === 0 );
}
var Robot = function(robot){
robot.turnLeft(robot.angle % 90);
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
if (robot.parentId) {
robot.ahead(1);
robot.turnGunRight(1);
}
else {
robot.ahead(-1);
robot.turnGunLeft(1);
}
};
Robot.prototype.onWallCollision = function(ev) {
var robot = ev.robot;
if(!robot.parentId) {
robot.turnRight(ev.bearing - 90);
}
else {
robot.turnRight(ev.bearing + 90);
}
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot, scannedRobot = ev.scannedRobot;
if (robot.id == scannedRobot.parentId || robot.parentId == scannedRobot.id) {
return;
}
robot.clone();
robot.fire();
robot.turnGunRight(30);
};
Robot.prototype.onRobotCollision = function(ev) {
var robot = ev.robot, collidedRobot = ev.collidedRobot;
robot.ignore('onRobotCollision')
if (ev.bearing > -90 && ev.bearing < 90) {
robot.back(100);
}
else {
robot.ahead(100);
}
if (robot.id != collidedRobot.parentId && robot.parentId != collidedRobot.id) {
robot.turnGunRight(ev.bearing - robot.cannonRelativeAngle);
robot.turnGunLeft(ev.bearing - robot.cannonRelativeAngle);
}
robot.listen('onRobotCollision')
};
Robot.prototype.onHitByBullet = function(ev) {
var robot;
robot.clone()
robot = ev.robot;
robot.turn(45 - ev.bulletBearing);
robot.ahead(-50);
robot.turn(45 - ev.bulletBearing);
robot.back(90);
};