home · contact · privacy
512b8358a34e29f7254712f18182b58d3af4b627
[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   msg_into_lines_of_width: function(msg, width) {
190     let chunk = "";
191     let lines = [];
192     for (let i = 0, x = 0; i < msg.length; i++, x++) {
193       if (x >= width) {
194         lines.unshift(chunk);
195         chunk = "";
196         x = 0;
197       };
198       chunk += msg[i];
199     }
200     lines.unshift(chunk);
201     return lines;
202   },
203   log_msg: function(msg) {
204     let line_length = (terminal.cols / 2);
205     let chunk = "";
206     this.log = this.msg_into_lines_of_width(msg, terminal.cols / 2).concat(this.log);
207     while (this.log.length > terminal.rows - 2) {
208       this.log.pop();
209     };
210     this.draw_history();
211   },
212   refresh: function() {
213     terminal.refresh();
214   },
215   log_help: function() {
216     tui.log_msg("");
217     tui.log_msg("HELP");
218     tui.log_msg("chat mode commands:");
219     tui.log_msg("");
220     tui.log_msg("/login USER - register as USER");
221     tui.log_msg("/msg USER TEXT - send TEXT to USER");
222     tui.log_msg("/help - show this help");
223     tui.log_msg("/play - switch to play mode");
224     tui.log_msg("");
225     tui.log_msg("play mode commands:");
226     tui.log_msg("w, a, s, d - move avatar");
227     tui.log_msg("f - flatten surroundings");
228     tui.log_msg("e - write following ASCII character");
229     tui.log_msg("c - switch to chat mode");
230     tui.log_msg("? - switch to investigation mode");
231     tui.log_msg("");
232     tui.log_msg("investigation mode commands:");
233     tui.log_msg("w, a, s, d - move question mark");
234     tui.log_msg("A - annotate terrain");
235     tui.log_msg("c - switch to chat mode");
236     tui.log_msg("p - switch to play mode");
237     tui.log_msg("");
238   },
239   draw_info: function() {
240     terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
241     let lines = this.msg_into_lines_of_width(explorer.get_info(), terminal.cols / 2);
242     lines.reverse();
243     for (let y = 1, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
244       terminal.write(y, terminal.cols / 2, lines[i]);
245     }
246   },
247   full_refresh: function() {
248     this.draw_map();
249     this.draw_turn_line();
250     if (this.mode == 'study' || this.mode == 'annotate') {
251       this.draw_info();
252     } else {
253       this.draw_history();
254     }
255     this.draw_input_line();
256     this.refresh();
257   }
258 }
259
260 let game = {
261   things: {},
262   turn: 0,
263   map: "",
264   map_size: [0,0],
265   player_id: 0
266 }
267
268 terminal.initialize();
269 tui.log_help();
270 tui.full_refresh();
271
272 let websocket = new WebSocket(websocket_location);
273 websocket.onmessage = function (event) {
274   let tokens = parser.tokenize(event.data)[0];
275   if (tokens[0] === 'TURN') {
276     game.things = {}
277     game.turn = parseInt(tokens[1]);
278   } else if (tokens[0] === 'THING_POS') {
279     game.things[tokens[1]] = parser.parse_yx(tokens[2]);
280   } else if (tokens[0] === 'MAP') {
281     game.map_size = parser.parse_yx(tokens[1]);
282     game.map = tokens[2]
283   } else if (tokens[0] === 'GAME_STATE_COMPLETE') {
284     explorer.empty_info_db();
285     if (tui.mode == 'study') {
286       explorer.query_info();
287     }
288     tui.draw_turn_line();
289     tui.draw_map();
290     tui.refresh();
291   } else if (tokens[0] === 'CHAT') {
292      tui.log_msg('# ' + tokens[1], 1);
293      tui.refresh();
294   } else if (tokens[0] === 'PLAYER_ID') {
295       game.player_id = parseInt(tokens[1]);
296   } else if (tokens[0] === 'META') {
297      tui.log_msg('@ ' + tokens[1]);
298      tui.refresh();
299   } else if (tokens[0] === 'ANNOTATION') {
300      let position = parser.parse_yx(tokens[1]);
301      explorer.update_info_db(position, tokens[2]);
302   } else if (tokens[0] === 'UNHANDLED_INPUT') {
303      tui.log_msg('? unknown command');
304      tui.refresh();
305   } else if (tokens[0] === 'ARGUMENT_ERROR') {
306      tui.log_msg('? syntax error: ' + tokens[1]);
307      tui.refresh();
308   } else if (tokens[0] === 'GAME_ERROR') {
309      tui.log_msg('? game error: ' + tokens[1]);
310      tui.refresh();
311   } else if (tokens[0] === 'PONG') {
312     console.log('PONG');
313   } else {
314      tui.log_msg('? unhandled input: ' + event.data);
315      tui.refresh();
316   }
317 }
318
319 let explorer = {
320     position: [0,0],
321     info_db: {},
322     move: function(direction) {
323         let try_pos = [0,0];
324         try_pos[0] = this.position[0];
325         try_pos[1] = this.position[1];
326         if (direction == 'left') {
327             try_pos[1] -= 1;
328         } else if (direction == 'right') {
329             try_pos[1] += 1;
330         } else if (direction == 'up') {
331             try_pos[0] -= 1;
332         } else if (direction == 'down') {
333             try_pos[0] += 1;
334         };
335         if (!(try_pos[0] < 0) &&
336             !(try_pos[1] < 0) &&
337             !(try_pos[0] >= game.map_size[0])
338             && !(try_pos[1] >= game.map_size[1])) {
339             this.position = try_pos;
340             this.query_info();
341             tui.draw_map();
342             tui.draw_info();
343             tui.refresh();
344         }
345     },
346     update_info_db: function(yx, str) {
347         this.info_db[yx] = str;
348         if (tui.mode == 'study') {
349             tui.draw_info();
350             tui.refresh();
351         }
352     },
353     empty_info_db: function() {
354         this.info_db = {};
355         if (tui.mode == 'study') {
356             tui.draw_info();
357             tui.refresh();
358         }
359     },
360     query_info: function() {
361         websocket.send("GET_ANNOTATION Y:" + explorer.position[0] + ",X:" + explorer.position[1]);
362     },
363     get_info: function() {
364         if (this.position in this.info_db) {
365             return this.info_db[this.position];
366         } else {
367             return 'waiting …';
368         }
369     },
370     annotate: function(msg) {
371         if (msg.length == 0) {
372             msg = " ";  // triggers annotation deletion
373         }
374         websocket.send("ANNOTATE Y:" + explorer.position[0] + ",X:" + explorer.position[1] + " " + quote(msg));
375     }
376 }
377
378 document.addEventListener('keydown', (event) => {
379     if (tui.mode == 'chat') {
380         if (event.key.length === 1) {
381             tui.input_line += event.key;
382             tui.draw_input_line();
383             tui.refresh();
384         } else if (event.key == 'Backspace') {
385             tui.input_line = tui.input_line.slice(0, -1);
386             tui.draw_input_line();
387             tui.refresh();
388         } else if (event.key == 'Enter') {
389             let [tokens, token_starts] = parser.tokenize(tui.input_line);
390             if (tokens.length > 0 && tokens[0].length > 0) {
391                 if (tokens[0][0] == '/') {
392                     if (tokens[0] == '/play') {
393                         tui.switch_mode('play');
394                     } else if (tokens[0] == '/study') {
395                         tui.switch_mode('study');
396                     } else if (tokens[0] == '/help') {
397                         tui.log_help();
398                         tui.refresh();
399                     } else if (tokens[0] == '/login') {
400                         if (tokens.length > 1) {
401                             websocket.send('LOGIN ' + quote(tokens[1]));
402                         } else {
403                             tui.log_msg('? need login name');
404                         }
405                     } else if (tokens[0] == '/msg') {
406                         if (tokens.length > 2) {
407                             let msg = tui.input_line.slice(token_starts[2]);
408                             websocket.send('QUERY ' + quote(tokens[1]) + ' ' + quote(msg));
409                         } else {
410                             tui.log_msg('? need message target and message');
411                         }
412                     } else {
413                         tui.log_msg('? unknown command');
414                     }
415                 } else {
416                     websocket.send('ALL ' + quote(tui.input_line));
417                 }
418             }
419             tui.input_line = '';
420             tui.draw_input_line();
421             tui.refresh();
422         }
423       } else if (tui.mode == 'play') {
424           if (event.key === 'c') {
425               tui.switch_mode('chat');
426           } else if (event.key === 'e') {
427               tui.switch_mode('edit');
428           } else if (event.key === '?') {
429               tui.switch_mode('study');
430           } else if (event.key === 'F1') {
431               tui.log_help();
432               tui.refresh();
433           } else if (event.key === 'f') {
434               websocket.send("TASK:FLATTEN_SURROUNDINGS");
435           } else if (event.key === 'a') {
436               websocket.send('TASK:MOVE LEFT');
437           } else if (event.key === 'd') {
438               websocket.send('TASK:MOVE RIGHT');
439           } else if (event.key === 'w') {
440               websocket.send('TASK:MOVE UP');
441           } else if (event.key === 's') {
442               websocket.send('TASK:MOVE DOWN');
443           };
444     } else if (tui.mode == 'edit') {
445         if (event.key.length === 1) {
446             websocket.send("TASK:WRITE " + quote(event.key));
447         }
448         tui.switch_mode('play');
449     } else if (tui.mode == 'study') {
450         if (event.key === 'c') {
451             tui.switch_mode('chat');
452         } else if (event.key == 'p') {
453             tui.switch_mode('play');
454         } else if (event.key === 'a') {
455               explorer.move('left');
456         } else if (event.key === 'd') {
457               explorer.move('right');
458         } else if (event.key === 'w') {
459               explorer.move('up');
460         } else if (event.key === 's') {
461               explorer.move('down');
462         } else if (event.key === 'A') {
463           tui.switch_mode('annotate');
464           tui.draw_info();
465           tui.refresh();
466         };
467     } else if (tui.mode == 'annotate') {
468         if (event.key.length === 1) {
469             tui.input_line += event.key;
470             tui.draw_input_line();
471             tui.refresh();
472         } else if (event.key == 'Backspace') {
473             tui.input_line = tui.input_line.slice(0, -1);
474             tui.draw_input_line();
475             tui.refresh();
476         } else if (event.key == 'Enter') {
477             explorer.annotate(tui.input_line);
478             tui.input_line = '';
479             tui.switch_mode('study', true);
480         }
481     }
482 }, false);
483
484 window.setInterval(function() { websocket.send('PING') }, 30000);
485 </script>
486 </body></html>