This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.js
451 lines (410 loc) · 11.2 KB
/
a.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
var net = require("net");
var EventEmitter = require('events').EventEmitter;
var server = net.createServer();
server.listen(process.env.PORT || 1234);
var crypto = require("crypto");
function genId(bytes) {
return crypto.randomBytes(bytes).toString("hex");
}
function log(t) {
true && console.log(t);
}
String.prototype.repeat = function (c) {
var s = "";
for (var i = 0; i < c; i++) {
s += this;
}
return s;
};
function formatString(s, w, alignright) {
var c = w - s.length;
return alignright ? " ".repeat(c) + s : s + " ".repeat(c);
}
var users = [];
var userEventEmitter = new EventEmitter();
server.on("connection", function (socket) {
var oldwrite = socket.write;
socket.write = function () {
oldwrite.call(socket, arguments[0].replace("\n", "\r\n"));
};
var id = users.push(socket) - 1;
socket.write("Assigning game... \r\n\
While you wait, here's all the commands: \r\n\
> firewall list [String id] \r\n\
> firewall create <int level> \r\n\
> firewall up <String id> \r\n\
> firewall delete <String id> \r\n\
> bot list \r\n\
> bot create <int level> \r\n\
> bot up <String id> \r\n\
> bot delete <String id> \r\n\
> exit\r\n\
");
userEventEmitter.emit("newuser", id);
});
userEventEmitter.on("newuser", function (id) {
if (users.length % 2 == 0 && users.length > 0) {
new Game(users[id - 1], users[id]);
}
});
function Game(s1, s2) {
var parseCommand = function (str) {
return str.split(" ");
};
function Player(soc, cb) {
var buf = "";
soc.on("data", function (d) {
buf += d;
if (buf.indexOf("\n") > -1) {
buf.split("\n").forEach(function (t) {
t && cb(t.replace("\r", ""));
buf = "";
});
}
});
soc.on("end", function () {
cb({ dc: true });
});
this.write = function (txt) {
soc.write(txt);
};
this.end = function () {
soc.end();
};
this.dead = function () {
cb({ lose: true });
};
this.firewalls = [];
this.damage = 0;
this.bots = [];
this.prompt = function () {
soc.write("> ");
};
this.acceptinput = false;
this.attack = function () {
this.damage -= attacks.attackHealth();
log("damage: " + this.damage);
var a = null;
this.firewalls.forEach(function (e) {
a && e.up ? 0 : a = e;
});
if (this.damage <= -attacks.firewallHealth(a.level)) {
log("wall down: " + a.hash);
this.write("Your firewall " + a.hash + " went down. ");
this.firewalls.splice(0, 1);
this.damage = 0;
if (this.firewalls.length == 0) {
this.dead();
}
return true;
}
return false;
}
return this;
}
var GameEvents = new EventEmitter();
var p1 = new Player(s1, function (command) {
if (typeof command == "object" && command.lose ) {
GameEvents.emit("dead", p1, p2);
return;
}
if (typeof command == "object" && command.dc ) {
GameEvents.emit("exit", "", p1, p2);
return;
}
if (p1.acceptinput) {
var commands = parseCommand(command);
GameEvents.emit("command", commands, p1, p2);
}
});
var p2 = new Player(s2, function (command) {
if (typeof command == "object" && command.lose ) {
GameEvents.emit("dead", p2, p1);
return;
}
if (typeof command == "object" && command.dc ) {
GameEvents.emit("exit", "", p1, p2);
return;
}
if (p2.acceptinput) {
var commands = parseCommand(command);
GameEvents.emit("command", commands, p2, p1);
}
});
var isispup = false;
var countdown = "\r\nConnected to opponent! Will start in 3...";
p1.write(countdown);
p2.write(countdown);
setTimeout(function () {
countdown = "2...";
p1.write(countdown);
p2.write(countdown);
}, 1000);
setTimeout(function () {
countdown = "1...";
p1.write(countdown);
p2.write(countdown);
}, 2000);
setTimeout(function () {
var welcome = "GO!\r\nISP will go up in 30 seconds. Prepare for attack now! \r\n";
p1.write(welcome);
p2.write(welcome);
p1.acceptinput = true;
p2.acceptinput = true;
p1.prompt();
p2.prompt();
setTimeout(function () {
isispup = true;
GameEvents.emit("ispup");
var attack = "\r\nISP is up! Attacks will begin to come in! \r\n";
p1.write(attack);
p2.write(attack);
p1.prompt();
p2.prompt();
}, 30 * 1000);
}, 3000);
GameEvents.on("command", function (command, player, opponent) {
player.acceptinput = false;
var cb = function () {
player.acceptinput = true;;
player.prompt();
};
var args = command.concat();
args.shift();
if (GameEvents.listeners(command[0]).length == 0 || command[0] == "command") {
player.write("Command not found \n");
cb();
}
else {
GameEvents.emit(command[0], args, player, opponent, cb);
}
});
GameEvents.on("exit", function (command, player, opponent) {
player.write("You are being disconnected...");
opponent.write("Your opponent disconnected from the game");
player.end();
opponent.end();
users.splice(users.indexOf(s1), 1);
users.splice(users.indexOf(s2), 1);
});
GameEvents.on("dead", function (dead, opponent) {
dead.write("You got hacked. Data comprimised. ");
opponent.write("Data aquired. Mission complete! ");
dead.end();
opponent.end();
users.splice(users.indexOf(s1), 1);
users.splice(users.indexOf(s2), 1);
});
var attacks = {
firewallHealth: function (i) {
return 200 * i;
},
attackHealth: function () {
return 10;
}
};
var delays = {
botCreation: function (i) {
return Math.floor(i * 1000 - 200);
},
botUp: function (i) {
return Math.floor(i * 2000 - 500);
},
botDown: function (i) {
return Math.floor(1);
},
botAttack: function (i) {
return Math.floor(1 / i * 500);
},
firewallCreation: function (i) {
return Math.floor(i * 200 + 100);
},
firewallUp: function (i) {
return Math.floor(i * 1000);
},
firewallDown: function (i) {
return Math.floor(1);
}
};
GameEvents.on("bot", function (args, player, opponent, done) {
if (args[0] == "list") {
player.write("Created Bots: \n");
player.write("+------------+------+-------+\n");
player.write("|" + formatString("ID", 12) + "|" + formatString("Level", 6) + "|" + formatString("Status", 7) + "|\n");
player.write("+------------+------+-------+\n");
player.bots.forEach(function (bot) {
player.write("|" + formatString(bot.hash, 12) + "|" + formatString(bot.level + "", 6) + "|" + formatString((bot.up ? "Up" : "Down"), 7) + "|\n");
});
player.write("+------------+------+-------+\n");
done();
}
else if (args[0] == "create" && args[1] * 1 > 0 && args[1] * 1 < 6) {
args[1] = args[1] * 1;
player.write("Creating bot... \n");
setTimeout(function () {
var bot = {
hash: genId(7),
level: args[1],
up: false
};
player.write("Created bot " + bot.hash + " of level " + bot.level + " \n");
done();
player.bots.push(bot);
}, delays.botCreation(args[1]));
}
else if (args[0] == "up" && args[1]) {
player.write("Starting bot... \n");
var isdone = false;
player.bots.forEach(function (bot, index) {
if (args[1] == bot.hash) {
isdone = true;
setTimeout(function () {
bot.up = true;
player.write("Bot " + bot.hash + " started! \n");
var attackcheck = function () {
var intv = setInterval(function () {
if (opponent.attack()) {
player.bots.splice(player.bots.indexOf(bot), 2);
clearInterval(intv);
}
}, delays.botAttack(bot.level));
};
if (isispup) {
attackcheck();
}
else {
GameEvents.on("ispup", attackcheck);
}
done();
}, delays.botUp(bot.level));
}
});
if (!isdone) {
player.write("Bot not found. \n");
done();
}
}
else if (args[0] == "delete" && args[1]) {
player.write("Removing Bot... \n");
var isdone = false;
player.bots.forEach(function (bot, index) {
if (args[1] == bot.hash) {
isdone = true;
setTimeout(function () {
bot.up = false;
player.write("Bot " + bot.hash + " removed! \n");
player.bots.splice(player.bots.indexOf(bots), 1);
done();
}, delays.botDown(bot.level));
}
if (player.bots.length - 1 == index && !isdone) {
player.write("Bot not found. \n");
done();
}
});
}
else {
player.write("Error running command \n");
done();
}
});
GameEvents.on("firewall", function (args, player, opponent, done) {
if (args[0] == "list") {
player.write("Created Firewalls: \n");
player.write("+----------------+------+-------+\n");
player.write("|" + formatString("ID", 16) + "|" + formatString("Level", 6) + "|" + formatString("Status", 7) + "|\n");
player.write("+----------------+------+-------+\n");
player.firewalls.forEach(function (firewall) {
var id = firewall.hash.length < 13 ? firewall.hash : firewall.hash.substr(1, 12) + "...";
player.write("|" + formatString(id, 16) + "|" + formatString(firewall.level + "", 6) + "|" + formatString((firewall.up ? "Up" : "Down"), 7) + "|\n");
});
player.write("+----------------+------+-------+\n");
done();
}
else if (args[0] == "create" && args[1] * 1 > 0 && args[1] * 1 < 6) {
args[1] = args[1] * 1;
player.write("Creating firewall... \n");
setTimeout(function () {
var firewall = {
hash: genId(Math.floor(Math.pow(args[1], 1.5) + 1)),
level: args[1],
up: false
};
player.write("Created firewall " + firewall.hash + " of level " + firewall.level + " \n");
done();
player.firewalls.push(firewall);
//setTimeout(function () {
// if (player.firewalls.indexOf(firewall) > -1) {
// player.firewalls.splice(player.firewalls.indexOf(firewall), 1);
// }
//}, 100);
}, delays.firewallCreation(args[1]));
}
else if (args[0] == "up" && args[1]) {
player.write("Starting firewall... \n");
var isdone = false;
player.firewalls.forEach(function (firewall, index) {
if (args[1] == firewall.hash) {
isdone = true;
setTimeout(function () {
firewall.up = true;
player.write("Firewall " + firewall.hash + " started! \n");
done();
}, delays.firewallUp(firewall.level));
}
});
if (!isdone) {
player.write("Firewall not found. \n");
done();
}
}
else if (args[0] == "delete" && args[1]) {
player.write("Removing firewall... \n");
var isdone = false;
player.firewalls.forEach(function (firewall, index) {
if (args[1] == firewall.hash) {
isdone = true;
setTimeout(function () {
firewall.up = false;
player.write("Firewall " + firewall.hash + " removed! \n");
player.firewalls.splice(player.firewalls.indexOf(firewall), 1);
done();
}, delays.firewallDown(firewall.level));
}
if (player.firewalls.length - 1 == index && !isdone) {
player.write("Firewall not found. \n");
done();
}
});
}
else if (false && args[0] == "down" && args[1]) {
player.write("Stopping firewall... \n");
var isdone = false;
player.firewalls.forEach(function (firewall, index) {
if (args[1] == firewall.hash) {
isdone = true;
setTimeout(function () {
firewall.up = false;
player.write("Firewall " + firewall.hash + " stopped! \n");
done();
}, delays.firewallDown(firewall.level));
}
if (player.firewalls.length - 1 == index && !isdone) {
player.write("Firewall " + firewall.hash + " not found. \n");
done();
}
});
}
else {
player.write("Error running command \n");
done();
}
});
s'da;'
d;a's;das'd;as
d;as'
d;a'
s;d
a';d'
as
}