This repository was archived by the owner on Jan 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.js
179 lines (172 loc) · 5.45 KB
/
controller.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
'use strict'; /*jslint node:true*/
const cluster = require('cluster');
const events = require('events');
const game = require('./game.js');
const loader = require('./loader.js');
function char2dir(c){
switch (c){
case 'u': return game.UP;
case 'd': return game.DOWN;
case 'r': return game.RIGHT;
case 'l': return game.LEFT;
}
}
class Controller extends events.EventEmitter {
init(){}
onupdate(screen){}
destroy(){}
}
class Keyboard extends Controller {
constructor(){
super();
process.stdin.setRawMode(true);
this._ondata = this.ondata.bind(this);
process.stdin.addListener('data', this._ondata);
}
init(){ this.emit('ready'); }
ondata(data){
let input = data.toString();
let re = /(\x03$|\x1b\[[ABCD]|\x1b$|[pPqQ ])/g;
let m;
while (m = re.exec(input))
{
switch (m[1])
{
case '\x1b[A': this.emit('control', game.UP); break;
case '\x1b[B': this.emit('control', game.DOWN); break;
case '\x1b[C': this.emit('control', game.RIGHT); break;
case '\x1b[D': this.emit('control', game.LEFT); break;
case ' ': this.emit('control', undefined); break;
case 'p': case 'P': this.emit('pause', undefined); break;
case '\x1b': // Esc
case '\x03': // Ctrl-C
case 'q': case 'Q':
this.emit('quit'); break;
}
}
}
destroy(){
process.stdin.removeListener('data', this._ondata);
process.stdin.setRawMode(false);
super.destroy();
}
}
class AI extends Controller {
constructor(script, unsafe){
super();
this.worker = cluster.fork({script, unsafe: +unsafe});
this._onmessage = this.onmessage.bind(this);
this._ononline = this.ononline.bind(this);
this._onerror = this.onerror.bind(this);
this._ondisconnect = this.ondisconnect.bind(this);
this._onexit = this.onexit.bind(this);
this.worker.addListener('message', this._onmessage);
this.worker.addListener('online', this._ononline);
this.worker.addListener('error', this._onerror);
this.worker.addListener('disconnect', this._ondisconnect);
this.worker.addListener('exit', this._onexit);
this.report = {};
this.dropped = 0;
this.busy = false;
}
init(){}
onupdate(screen){
if (this.busy)
this.dropped++;
else
{
this.busy = true;
this.worker.send(screen);
}
}
onmessage(msg){
this.busy = false;
if (msg.report)
this.report = Object.assign(msg.report, {dropped: this.dropped});
if (msg.error)
this.emit('error', String(msg.error));
else if (msg.res.done || msg.res.value=='q')
this.emit('quit');
else
this.emit('control', char2dir(msg.res.value));
}
ononline(){ this.emit('ready'); }
onerror(err){ this.emit('error', err); }
ondisconnect(){ this.emit('error', 'disconnect'); }
onexit(code, signal){
this.emit('error', signal || `exited with code ${code}`);
}
destroy(){
this.worker.removeListener('message', this._onmessage);
this.worker.removeListener('online', this._ononline);
this.worker.removeListener('error', this._onerror);
this.worker.removeListener('disconnect', this._ondisconnect);
this.worker.removeListener('exit', this._onexit);
if (this.worker.process)
this.worker.process.kill();
this.worker = undefined;
}
static worker_run(){
let ai, res;
let load = +process.env.unsafe ? loader.load_unsafe : loader.load;
let started = Date.now();
try { ai = load(process.env.script);
} catch(e){ return process.send({error: String(e.stack)}); }
let report = {processed: 0, init_ms: Date.now()-started,
total_ms: 0, max_ms: 0};
process.on('message', screen=>{
started = Date.now();
try { res = ai(screen);
} catch(e){ return process.send({error: String(e.stack)}); }
let ms = Date.now()-started;
report.processed++;
report.total_ms += ms;
if (report.max_ms<ms)
report.max_ms = ms;
process.send({res, report});
});
}
}
class InProcessAI extends Controller {
constructor(script){
super();
this.script = script;
this.wrapper = undefined;
}
init(){
try {
this.wrapper = loader.load_unsafe(this.script);
} catch (e){
return this.emit('error', String(e.stack));
}
this.emit('ready');
}
onupdate(screen){
let res;
try {
res = this.wrapper(screen);
} catch(e){
return this.emit('error', String(e.stack));
}
if (res.done || res.value=='q')
this.emit('quit');
else
this.emit('control', char2dir(res.value));
}
}
class Replay extends Controller {
constructor(commands){
super();
this.commands = commands;
this.pos = 0;
}
init(){ this.emit('ready'); }
onupdate(screen){
let c = this.commands[this.pos++];
if (c=='q')
this.emit('quit');
else
this.emit('control', char2dir(c));
}
}
module.exports = {Keyboard, AI, InProcessAI, Replay};