-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
43 lines (32 loc) · 847 Bytes
/
index.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
import init, { cli, ask } from './kingslayer_wasm.js';
async function run() {
await init();
let game = cli();
let terminal = document.getElementById("terminal");
let term_input = document.getElementById("term_input");
term_input.focus();
function show_res(command) {
let res = ask(game, command)
game = res[0];
terminal.append(res[1] + "\n\n");
terminal.scrollTop = terminal.scrollHeight;
term_input.value = "";
}
show_res("l");
term_input.addEventListener(
"keydown",
function (event) {
if (event.keyCode == 13) {
show_res(term_input.value);
}
},
false
);
document.addEventListener(
"click",
function () {
term_input.focus()
}
);
}
run();