-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (36 loc) · 855 Bytes
/
index.js
File metadata and controls
62 lines (36 loc) · 855 Bytes
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
var parseArgs = require('minimist');
var simulate = require('./1dsim.js');
// parse args and default
var argv = parseArgs(process.argv.slice(2), {
default: {
// cells (width)
w: process.stdout.columns,
// time (height)
h: process.stdout.rows,
// rule number
r: 30,
// random seed switch
rand: false
}
});
// handle exit
process.on('SIGINT', function() {
process.exit();
});
// console logging helper
function log (buf) {
var vw = new DataView(buf);
var s = '';
for (var bo = 0; bo < Math.ceil(argv.w / 8); bo++) {
var t = vw.getUint8(bo).toString(2);
while (t.length < 8) t = '0' + t;
s += t;
}
// truncate string
s = s.substr(0, argv.w);
console.log(s);
}
// create new simulation
simulate(argv.w, argv.h, argv.r, argv.rand, function (buf) {
log(buf);
});