-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuntrusted-lvl20-solution.js
144 lines (128 loc) · 4.18 KB
/
untrusted-lvl20-solution.js
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*****************
* bossFight.js *
*****************
*
* NO FARTHER, DR. EVAL!!!!
* YOU WILL NOT GET OUT OF HERE ALIVE!!!!
* IT'S TIME YOU SEE MY TRUE FORM!!!!
* FACE MY ROBOT WRATH!!!!!
*/
function startLevel(map) {
map.defineObject('boss', {
'type': 'dynamic',
'symbol': '⊙',
'color': 'red',
'interval': 200,
'onCollision': function (player) {
player.killedBy('the boss');
},
'behavior': function (me) {
if (!me.direction) {
me.direction = 'right';
}
if (me.canMove(me.direction)) {
me.move(me.direction);
} else {
me.direction = (me.direction == 'right') ? 'left' : 'right';
}
if (Math.random() < 0.3) {
map.placeObject(me.getX(), me.getY() + 2, 'bullet');
}
},
'onDestroy': function (me) {
if (map.countObjects('boss') == 0) {
map.placeObject(me.getX(), me.getY(), 'theAlgorithm');
}
}
});
map.defineObject('bullet', {
'type': 'dynamic',
'symbol': '.',
'color': 'red',
'interval': 100,
'projectile': true,
'behavior': function (me) {
me.move('down');
}
});
map.placePlayer(0, map.getHeight() - 3);
map.placeObject(map.getWidth() - 1, map.getHeight() - 1, 'exit');
// Not so tough now, huh?
map.getPlayer().removeItem('phone');
map.placeObject(map.getWidth() - 1, map.getHeight() - 3, 'phone');
map.placeObject(0, map.getHeight() - 4, 'block');
map.placeObject(1, map.getHeight() - 4, 'block');
map.placeObject(2, map.getHeight() - 4, 'block');
map.placeObject(2, map.getHeight() - 3, 'block');
map.placeObject(map.getWidth() - 1, map.getHeight() - 4, 'block');
map.placeObject(map.getWidth() - 2, map.getHeight() - 4, 'block');
map.placeObject(map.getWidth() - 3, map.getHeight() - 4, 'block');
map.placeObject(map.getWidth() - 3, map.getHeight() - 3, 'block');
for (var x = 0; x < map.getWidth(); x++) {
map.placeObject(x, 4, 'block');
}
map.placeObject(9, 5, 'boss');
map.placeObject(11, 5, 'boss');
map.placeObject(13, 5, 'boss');
map.placeObject(15, 5, 'boss');
map.placeObject(17, 5, 'boss');
map.placeObject(19, 5, 'boss');
map.placeObject(21, 5, 'boss');
map.placeObject(23, 5, 'boss');
map.placeObject(25, 5, 'boss');
map.placeObject(27, 5, 'boss');
map.placeObject(29, 5, 'boss');
map.placeObject(31, 5, 'boss');
map.placeObject(10, 6, 'boss');
map.placeObject(12, 6, 'boss');
map.placeObject(14, 6, 'boss');
map.placeObject(16, 6, 'boss');
map.placeObject(18, 6, 'boss');
map.placeObject(20, 6, 'boss');
map.placeObject(22, 6, 'boss');
map.placeObject(24, 6, 'boss');
map.placeObject(26, 6, 'boss');
map.placeObject(28, 6, 'boss');
map.placeObject(30, 6, 'boss');
map.defineObject('rocket', {
'type': 'dynamic',
'symbol': '.',
'color': 'green',
'interval': 100,
'projectile': true,
'behavior': function (me) {
me.move('up');
}
})
map.getPlayer().setPhoneCallback(
function () {
for (var x = 0; x < map.getWidth(); x++) {
map.placeObject(x, 15, 'rocket');
}
}
)
}
function validateLevel(map) {
// called at start of level and whenever a callback executes
map.validateAtMostXObjects(59, 'block');
map.validateAtMostXObjects(1, 'phone');
if (map.countObjects('theAlgorithm') > 0 && map.countObjects('boss') > 0) {
throw "The Algorithm can only be dropped by the boss!";
}
// only called at start of level
if (map.isStartOfLevel()) {
map.validateAtMostXDynamicObjects(23);
map.validateNoTimers();
}
}
function onExit(map) {
if (!map.getPlayer().hasItem('theAlgorithm')) {
map.writeStatus("You must take back the Algorithm!!");
return false;
} else if (!map.getPlayer().hasItem('phone')) {
map.writeStatus("We need the phone!");
return false;
} else {
return true;
}
}