home · contact · privacy
Allow annotations.
[plomrogue2-experiments] / new2 / rogue_chat_nocanvas_monochrome.html
1 <!DOCTYPE html>
2 <html><head>
3 <style>
4 </style>
5 </head><body>
6 <pre id="terminal" style="display: inline-block; color: white; background-color: black;"></pre>
7 <script>
8 "use strict";
9 let websocket_location = "ws://localhost:8000";
10
11 let terminal = {
12   rows: 24,
13   cols: 80,
14   initialize: function() {
15     this.pre_el = document.getElementById("terminal");
16     this.content = [];
17       let line = []
18     for (let y = 0, x = 0; y <= this.rows; x++) {
19         if (x == this.cols) {
20             x = 0;
21             y += 1;
22             this.content.push(line);
23             line = [];
24             if (y == this.rows) {
25                 break;
26             }
27         }
28         line.push(' ');
29     }
30   },
31   refresh: function() {
32       let pre_string = '';
33       for (let y = 0; y < this.rows; y++) {
34           let line = this.content[y].join('');
35           pre_string += line + '\n';
36       }
37       this.pre_el.textContent = pre_string;
38   },
39   write: function(start_y, start_x, msg) {
40       for (let x = start_x, i = 0; x < this.cols && i < msg.length; x++, i++) {
41           this.content[start_y][x] = msg[i];
42       }
43   },
44   drawBox: function(start_y, start_x, height, width) {
45     let end_y = start_y + height;
46     let end_x = start_x + width;
47       for (let y = start_y, x = start_x;; x++) {
48         if (x == end_x) {
49           x = start_x;
50           y += 1;
51           if (y == end_y) {
52               break;
53           }
54         };
55         this.content[y][x] = ' ';
56     }
57   },
58 }
59
60 let parser = {
61   tokenize: function(str) {
62     let token_ends = [];
63     let tokens = [];
64     let token = ''
65     let quoted = false;
66     let escaped = false;
67     for (let i = 0; i < str.length; i++) {
68       let c = str[i];
69       if (quoted) {
70         if (escaped) {
71           token += c;
72           escaped = false;
73         } else if (c == '\\') {
74           escaped = true;
75         } else if (c == '"') {
76           quoted = false
77         } else {
78           token += c;
79         }
80       } else if (c == '"') {
81         quoted = true
82       } else if (c === ' ') {
83         if (token.length > 0) {
84           token_ends.push(i);
85           tokens.push(token);
86           token = '';
87         }
88       } else {
89         token += c;
90       }
91     }
92     if (token.length > 0) {
93       tokens.push(token);
94     }
95     let token_starts = [];
96     for (let i = 0; i < token_ends.length; i++) {
97       token_starts.push(token_ends[i] - tokens[i].length);
98     };
99     return [tokens, token_starts];
100   },
101   parse_yx(position_string) {
102     let coordinate_strings = position_string.split(',')
103     let position = [0, 0];
104     position[0] = parseInt(coordinate_strings[0].slice(2));
105     position[1] = parseInt(coordinate_strings[1].slice(2));
106     return position;
107   },
108 }
109
110 function quote(str) {
111     let quoted = ['"'];
112     for (let i = 0; i < str.length; i++) {
113         let c = str[i];
114         if (c in ['"', '\\']) {
115             quoted.push('\\');
116         };
117         quoted.push(c);
118     }
119     quoted.push('"');
120     return quoted.join('');
121 }
122
123 let tui = {
124   mode: 'chat',
125   log: [],
126   input_line: '',
127   switch_mode: function(mode_name, keep_pos=false) {
128     if (mode_name == 'study' && !keep_pos) {
129       explorer.position = game.things[game.player_id];
130     }
131     this.mode = mode_name;
132     this.full_refresh();
133   },
134   draw_history: function() {
135     terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
136     let i = 0;
137     for (let line of this.log) {
138       terminal.write(terminal.rows - 2 - i, terminal.cols / 2, line);
139       i += 1;
140     }
141   },
142   draw_map: function() {
143     terminal.drawBox(0, 0, terminal.rows, terminal.cols / 2);
144     let map_lines = [];
145     let line = [];
146     for (let i = 0, j = 0; i < game.map.length; i++, j++) {
147         if (j == game.map_size[1]) {
148             map_lines.push(line);
149             line = [];
150             j = 0;
151         };
152         line.push(game.map[i]);
153     };
154     map_lines.push(line);
155     let player_position = [0,0];
156     for (const thing_id in game.things) {
157         let t = game.things[thing_id];
158         map_lines[t[0]][t[1]] = '@';
159         if (game.player_id == thing_id) {
160             player_position = t;
161         }
162     };
163     let center_pos = player_position;
164     if (tui.mode == 'study' || tui.mode == 'annotate') {
165         map_lines[explorer.position[0]][explorer.position[1]] = '?';
166         center_pos = explorer.position;
167     }
168     let offset = [(terminal.rows / 2) - center_pos[0],
169                   terminal.cols / 4 - center_pos[1]];
170       for (let term_y = offset[0], map_y = 0;
171            term_y < terminal.rows && map_y < game.map_size[0];
172            term_y++, map_y++) {
173         if (term_y >= 0) {
174             let to_draw = map_lines[map_y].join('').slice(0, terminal.cols / 2 - offset[1]);
175             terminal.write(term_y, offset[1], to_draw);
176         }
177     }
178   },
179   draw_turn_line: function(n) {
180     terminal.drawBox(0, terminal.cols / 2, 1, terminal.cols / 2);
181     terminal.write(0, terminal.cols / 2, 'turn: ' + game.turn);
182   },
183   draw_input_line: function() {
184     terminal.drawBox(terminal.rows - 1, terminal.cols / 2, 1, terminal.cols / 2);
185     if (this.mode == 'chat' || this.mode == 'annotate') {
186       terminal.write(terminal.rows - 1, terminal.cols / 2, '> ' + this.input_line);
187     }
188   },
189   log_msg: function(msg) {
190     let line_length = (terminal.cols / 2);
191     let chunk = "";
192     for (let i = 0, x = 0; i < msg.length; i++, x++) {
193       if (x >= line_length) {
194         this.log.unshift(chunk);
195         chunk = "";
196         x = 0;
197       };
198       chunk += msg[i];
199     }
200     this.log.unshift(chunk);
201     while (this.log.length > terminal.rows - 2) {
202       this.log.pop();
203     };
204     this.draw_history();
205   },
206   refresh: function() {
207     terminal.refresh();
208   },
209   log_help: function() {
210     tui.log_msg("");
211     tui.log_msg("HELP");
212     tui.log_msg("chat mode commands:");
213     tui.log_msg("");
214     tui.log_msg("/login USER - register as USER");
215     tui.log_msg("/msg USER TEXT - send TEXT to USER");
216     tui.log_msg("/help - show this help");
217     tui.log_msg("/play - switch to play mode");
218     tui.log_msg("");
219     tui.log_msg("play mode commands:");
220     tui.log_msg("w, a, s, d - move avatar");
221     tui.log_msg("f - flatten surroundings");
222     tui.log_msg("e - write following ASCII character");
223     tui.log_msg("c - switch to chat mode");
224     tui.log_msg("? - switch to investigation mode");
225     tui.log_msg("");
226     tui.log_msg("investigation mode commands:");
227     tui.log_msg("w, a, s, d - move question mark");
228     tui.log_msg("A - annotate terrain");
229     tui.log_msg("c - switch to chat mode");
230     tui.log_msg("p - switch to play mode");
231     tui.log_msg("");
232   },
233   draw_info: function() {
234     terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
235     let lines = explorer.get_info();
236     for (let y = 1, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
237       terminal.write(y, terminal.cols / 2, lines[i]);
238     }
239   },
240   full_refresh: function() {
241     this.draw_map();
242     this.draw_turn_line();
243     if (this.mode == 'study' || this.mode == 'annotate') {
244       this.draw_info();
245     } else {
246       this.draw_history();
247     }
248     this.draw_input_line();
249     this.refresh();
250   }
251 }
252
253 let game = {
254   things: {},
255   turn: 0,
256   map: "",
257   map_size: [0,0],
258   player_id: 0
259 }
260
261 terminal.initialize();
262 tui.log_help();
263 tui.full_refresh();
264
265 let websocket = new WebSocket(websocket_location);
266 websocket.onmessage = function (event) {
267   let tokens = parser.tokenize(event.data)[0];
268   if (tokens[0] === 'TURN') {
269     game.things = {}
270     game.turn = parseInt(tokens[1]);
271   } else if (tokens[0] === 'THING_POS') {
272     game.things[tokens[1]] = parser.parse_yx(tokens[2]);
273   } else if (tokens[0] === 'MAP') {
274     game.map_size = parser.parse_yx(tokens[1]);
275     game.map = tokens[2]
276   } else if (tokens[0] === 'GAME_STATE_COMPLETE') {
277     explorer.empty_info_db();
278     if (tui.mode == 'study') {
279       explorer.query_info();
280     }
281     tui.draw_turn_line();
282     tui.draw_map();
283     tui.refresh();
284   } else if (tokens[0] === 'CHAT') {
285      tui.log_msg('# ' + tokens[1], 1);
286      tui.refresh();
287   } else if (tokens[0] === 'PLAYER_ID') {
288       game.player_id = parseInt(tokens[1]);
289   } else if (tokens[0] === 'META') {
290      tui.log_msg('@ ' + tokens[1]);
291      tui.refresh();
292   } else if (tokens[0] === 'ANNOTATION') {
293      let position = parser.parse_yx(tokens[1]);
294      explorer.update_info_db(position, tokens[2]);
295   } else if (tokens[0] === 'UNHANDLED_INPUT') {
296      tui.log_msg('? unknown command');
297      tui.refresh();
298   } else if (tokens[0] === 'ARGUMENT_ERROR') {
299      tui.log_msg('? syntax error: ' + tokens[1]);
300      tui.refresh();
301   } else if (tokens[0] === 'GAME_ERROR') {
302      tui.log_msg('? game error: ' + tokens[1]);
303      tui.refresh();
304   } else if (tokens[0] === 'PONG') {
305     console.log('PONG');
306   } else {
307      tui.log_msg('? unhandled input: ' + event.data);
308      tui.refresh();
309   }
310 }
311
312 let explorer = {
313     position: [0,0],
314     info_db: {},
315     move: function(direction) {
316         let try_pos = [0,0];
317         try_pos[0] = this.position[0];
318         try_pos[1] = this.position[1];
319         if (direction == 'left') {
320             try_pos[1] -= 1;
321         } else if (direction == 'right') {
322             try_pos[1] += 1;
323         } else if (direction == 'up') {
324             try_pos[0] -= 1;
325         } else if (direction == 'down') {
326             try_pos[0] += 1;
327         };
328         if (!(try_pos[0] < 0) &&
329             !(try_pos[1] < 0) &&
330             !(try_pos[0] >= game.map_size[0])
331             && !(try_pos[1] >= game.map_size[1])) {
332             this.position = try_pos;
333             this.query_info();
334             tui.draw_map();
335             tui.draw_info();
336             tui.refresh();
337         }
338     },
339     update_info_db: function(yx, str) {
340         this.info_db[yx] = str;
341         if (tui.mode == 'study') {
342             tui.draw_info();
343             tui.refresh();
344         }
345     },
346     empty_info_db: function() {
347         this.info_db = {};
348         if (tui.mode == 'study') {
349             tui.draw_info();
350             tui.refresh();
351         }
352     },
353     query_info: function() {
354         websocket.send("GET_ANNOTATION Y:" + explorer.position[0] + ",X:" + explorer.position[1]);
355     },
356     get_info: function() {
357         if (this.position in this.info_db) {
358             return [this.info_db[this.position]];
359         } else {
360             return ['waiting …'];
361         }
362     },
363     annotate: function(msg) {
364         if (msg.length == 0) {
365             msg = " ";  // triggers annotation deletion
366         }
367         websocket.send("ANNOTATE Y:" + explorer.position[0] + ",X:" + explorer.position[1] + " " + quote(msg));
368     }
369 }
370
371 document.addEventListener('keydown', (event) => {
372     if (tui.mode == 'chat') {
373         if (event.key.length === 1) {
374             tui.input_line += event.key;
375             tui.draw_input_line();
376             tui.refresh();
377         } else if (event.key == 'Backspace') {
378             tui.input_line = tui.input_line.slice(0, -1);
379             tui.draw_input_line();
380             tui.refresh();
381         } else if (event.key == 'Enter') {
382             let [tokens, token_starts] = parser.tokenize(tui.input_line);
383             if (tokens.length > 0 && tokens[0].length > 0) {
384                 if (tokens[0][0] == '/') {
385                     if (tokens[0] == '/play') {
386                         tui.switch_mode('play');
387                     } else if (tokens[0] == '/study') {
388                         tui.switch_mode('study');
389                     } else if (tokens[0] == '/help') {
390                         tui.log_help();
391                         tui.refresh();
392                     } else if (tokens[0] == '/login') {
393                         if (tokens.length > 1) {
394                             websocket.send('LOGIN ' + quote(tokens[1]));
395                         } else {
396                             tui.log_msg('? need login name');
397                         }
398                     } else if (tokens[0] == '/msg') {
399                         if (tokens.length > 2) {
400                             let msg = tui.input_line.slice(token_starts[2]);
401                             websocket.send('QUERY ' + quote(tokens[1]) + ' ' + quote(msg));
402                         } else {
403                             tui.log_msg('? need message target and message');
404                         }
405                     } else {
406                         tui.log_msg('? unknown command');
407                     }
408                 } else {
409                     websocket.send('ALL ' + quote(tui.input_line));
410                 }
411             }
412             tui.input_line = '';
413             tui.draw_input_line();
414             tui.refresh();
415         }
416       } else if (tui.mode == 'play') {
417           if (event.key === 'c') {
418               tui.switch_mode('chat');
419           } else if (event.key === 'e') {
420               tui.switch_mode('edit');
421           } else if (event.key === '?') {
422               tui.switch_mode('study');
423           } else if (event.key === 'F1') {
424               tui.log_help();
425               tui.refresh();
426           } else if (event.key === 'f') {
427               websocket.send("TASK:FLATTEN_SURROUNDINGS");
428           } else if (event.key === 'a') {
429               websocket.send('TASK:MOVE LEFT');
430           } else if (event.key === 'd') {
431               websocket.send('TASK:MOVE RIGHT');
432           } else if (event.key === 'w') {
433               websocket.send('TASK:MOVE UP');
434           } else if (event.key === 's') {
435               websocket.send('TASK:MOVE DOWN');
436           };
437     } else if (tui.mode == 'edit') {
438         if (event.key.length === 1) {
439             websocket.send("TASK:WRITE " + quote(event.key));
440         }
441         tui.switch_mode('play');
442     } else if (tui.mode == 'study') {
443         if (event.key === 'c') {
444             tui.switch_mode('chat');
445         } else if (event.key == 'p') {
446             tui.switch_mode('play');
447         } else if (event.key === 'a') {
448               explorer.move('left');
449         } else if (event.key === 'd') {
450               explorer.move('right');
451         } else if (event.key === 'w') {
452               explorer.move('up');
453         } else if (event.key === 's') {
454               explorer.move('down');
455         } else if (event.key === 'A') {
456           tui.switch_mode('annotate');
457           tui.draw_info();
458           tui.refresh();
459         };
460     } else if (tui.mode == 'annotate') {
461         if (event.key.length === 1) {
462             tui.input_line += event.key;
463             tui.draw_input_line();
464             tui.refresh();
465         } else if (event.key == 'Backspace') {
466             tui.input_line = tui.input_line.slice(0, -1);
467             tui.draw_input_line();
468             tui.refresh();
469         } else if (event.key == 'Enter') {
470             explorer.annotate(tui.input_line);
471             tui.input_line = '';
472             tui.switch_mode('study', true);
473         }
474     }
475 }, false);
476
477 window.setInterval(function() { websocket.send('PING') }, 30000);
478 </script>
479 </body></html>