-
Notifications
You must be signed in to change notification settings - Fork 0
/
snake.js
61 lines (53 loc) · 1.28 KB
/
snake.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
//Packages
const keypress = require('keypress');
const clear = require('clear-it');
//Modules
const start = require('./start.js');
const move = require('./move.js');
const food = require('./food.js');
var direction = 'right'
var table;
var fd;
setup();
async function setup() {
async function setTable() {
table = await start.run();
}
async function setFoot() {
fd = await food.spawn(table, fd);
}
await setTable();
await setFoot();
}
var moveInterval = setInterval(async function() {
clear();
fd = await food.getPos()
move.run(direction, table, moveInterval, fd);
}, 300);
keypress(process.stdin);
process.stdin.on('keypress', function (ch, key) {
switch (key.name) {
case 'up':
if (direction != 'down') {
direction = 'up';
}
break;
case 'down':
if (direction != 'up') {
direction = 'down';
}
break;
case 'left':
if (direction != 'right') {
direction = 'left';
}
break;
case 'right':
if (direction != 'left') {
direction = 'right';
}
break;
}
});
process.stdin.setRawMode(true);
process.stdin.resume();