summaryrefslogtreecommitdiff
path: root/web/static/dartboat.js
blob: 7ffe78d56aca0683edaa20a5cce7e5a6469dcb7b (plain) (blame)
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
let prompt_num_darts = false;
let match_state, user_rem, boat_rem;
let oi_timeout;
let delay_ms = 1000;
let prompt_mode;

const POINT_CLASSES = [180, 140, 100, 60, 40, 20, 1, 0];

function stcall(f, ret_type, arg_types, args) {
	return Module.ccall(f, ret_type,
		arg_types ? ['number'].concat(arg_types) : ['number'],
		args ? [match_state].concat(args) : [match_state]);
}

function clearMatchLog() {
	document.getElementById('match').textContent = '';
}

function initMatch() {
	if (match_state)
		stcall('free_match');
	updateDelay(delay_ms);
	match_state = stcall('start_match', 'number');
	setUserActive();
	clearMatchLog();
	promptSuggStr('');
	stcall('draw_match');
}

function oi() {
	document.getElementById('oi').style.visibility = 'visible';

	oi_timeout = setTimeout(function() { oi_timeout = null; clearOi() }, 3000);
}

function clearOi() {
	document.getElementById('oi').style.visibility = 'hidden';

	if (oi_timeout) {
		clearTimeout(oi_timeout);
		oi_timeout = null;
	}
}

function updateUserRem(rem) {
	user_rem = rem;
	updateUserStateRem(rem);
}

function updateBoatRem(rem) {
	boat_rem = rem;
	updateBoatStateRem(rem);
}

function promptMsg(p) {
	document.getElementById('prompt-msg').textContent = UTF8ToString(p);
}

function promptMsgStr(str) {
	document.getElementById('prompt-msg').textContent = str;
}

function userSugg(p) {
	document.getElementById('user-sugg').textContent = UTF8ToString(p);
}

function boatSugg(p) {
	document.getElementById('boat-sugg').textContent = UTF8ToString(p);
}

function promptSuggStr(str) {
	document.getElementById('prompt-sugg').textContent = str;
}

function updateUserStateRem(rem) {
	let elem = document.getElementById('user-rem');
	elem.textContent = rem < 0 || rem == 1 ? 'BUST' : rem;
	Module.ccall('get_suggested', null, ['number', 'number'], [rem, 1]);
}

function updateBoatStateRem(rem) {
	let elem = document.getElementById('boat-rem');
	elem.textContent = rem < 0 || rem == 1 ? 'BUST' : rem;
	Module.ccall('get_suggested', null, ['number', 'number'], [rem, 2]);
}

function updateUserAvg(avg) {
	document.getElementById('user-avg').textContent = avg.toFixed(2);
}

function updateBoatAvg(avg) {
	document.getElementById('boat-avg').textContent = avg.toFixed(2);
}

function promptUpdateRem() {
	let elem = document.getElementById('user-rem');
	let pts = document.getElementById('prompt').textContent;

	updateUserStateRem(pts ? user_rem - pts : user_rem);
}

function promptAppend(val) {
	if (!prompt_mode || prompt_mode == 'init_match') return;
	clearOi();

	let elem = document.getElementById('prompt');
	if (elem.textContent.length < 3) {
		elem.textContent += val;
		if (!prompt_num_darts)
			promptUpdateRem();
	}
}

function promptClear() {
	if (!prompt_mode || prompt_mode == 'init_match') return;
	clearOi();

	document.getElementById('prompt').textContent = '';
	promptUpdateRem();
}

function promptBackspace() {
	if (!prompt_mode || prompt_mode == 'init_match') return;
	clearOi();

	let elem = document.getElementById('prompt');
	elem.textContent = elem.textContent.slice(0, -1);
	promptUpdateRem();
}

function promptNumDarts() {
	promptMsgStr('Darts needed?');
	prompt_num_darts = true;
}

function setBoatActive() {
	document.getElementById('user-state').classList.remove('active');
	document.getElementById('boat-state').classList.add('active');
	prompt_mode = null;
}

function setUserActive() {
	document.getElementById('boat-state').classList.remove('active');
	document.getElementById('user-state').classList.add('active');
	prompt_mode = 'user_active';
}

function promptSubmit(remaining) {
	clearOi();
	if (!prompt_mode) return;
	if (prompt_mode == 'init_match') {
		initMatch();
		return;
	}

	let elem = document.getElementById('prompt');
	let p_user = elem.textContent;
	if (!p_user) return;
	promptClear();

	if (prompt_num_darts) {
		if (!stcall('resp_numdarts', null, ['number'], [p_user])) {
			oi();
			return;
		}
		prompt_num_darts = false;
		return;
	}

	if (remaining)
		p_user = user_rem - p_user;

	if (!stcall('user_visit', 'number', ['number'], [p_user])) {
		oi();
		return;
	}

	clearMatchLog();
	stcall('draw_match');

	if (!stcall('is_match_over', 'number')) {
		setBoatActive();
		stcall('boat_visit', 'number', ['number'], [delay_ms]);
	}
}

function drawBoatThrowing(pts, str) {
	updateBoatStateRem(boat_rem - pts);
	document.getElementById('prompt').textContent = pts;
	promptSuggStr(str);
}

function scheduleBoatThrowing(pts, ptr, delay_ms) {
	// ptr to c string must be copied before returning
	let str = UTF8ToString(ptr);
	setTimeout(function() { drawBoatThrowing(pts, str); }, delay_ms);
}

function endBoatThrowing(rem, avg) {
	updateBoatRem(rem);
	updateBoatAvg(avg);
	document.getElementById('prompt').textContent = '';
	clearMatchLog();
	promptSuggStr('');
	stcall('draw_match');
	if (!stcall('is_match_over', 'number'))
		setUserActive();
}

function scheduleEndBoatThrowing(rem, avg, delay_ms) {
	setTimeout(function() { endBoatThrowing(rem, avg); }, delay_ms);
}

function matchOver() {
	prompt_mode = 'init_match';
	promptSuggStr('Press OK to play again.');
	document.getElementById('user-state').className = '';
}

function drawVisit(visit_no, u_pts, u_rem, b_pts, b_rem, b_darts) {
	let elem = document.getElementById('match');

	for (let [i, v] of [u_pts, u_rem, visit_no, b_rem, b_pts, b_darts].entries()) {
		let div = document.createElement('div');
		let vv = div.textContent = UTF8ToString(v);
		if (i == 0 || i == 4) {
			div.className = `p${POINT_CLASSES.find(x => x <= vv)}`;
		} else if (i == 5) {
			if (vv) div.textContent = `… ${vv}`;
		}
		div.className += ` visit-col${i+1}`;
		elem.append(div);
	}

	elem.scrollTop = elem.scrollHeight;
}

function stdevChanged(val) {
	Module.ccall('change_stdev', null, ['number', 'number'], [val, val]);
}

function updateStdev(val) {
	document.getElementById('stdev').value = val;
}

function updateDelay(val) {
	document.getElementById('delay').value = val;
}

function delayChanged(val) {
	delay_ms = val;
}

function processKey(data) {
	if (data.altKey || data.ctrlKey || data.metaKey || data.target.type == 'text')
		return;
	let key = data.key;

	if (isFinite(key))
		promptAppend(key);
	else if (key == 'Enter')
		promptSubmit();
	else if (key == 'Backspace')
		promptBackspace();
	else if (key == 'r')
		promptSubmit(true);
}

function modal(id) {
	document.getElementById(id).style.display = 'block';
}

window.onclick = function(e) {
	if (e.target.classList.contains('modal')) e.target.style.display = 'none';
}

document.addEventListener('keydown', processKey);