home · contact · privacy
906a15483790c7c994ec5a581663145d049abb59
[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 tokens = [];
63     let token = ''
64     let quoted = false;
65     let escaped = false;
66     for (let i = 0; i < str.length; i++) {
67       let c = str[i];
68       if (quoted) {
69         if (escaped) {
70           token += c;
71           escaped = false;
72         } else if (c == '\\') {
73           escaped = true;
74         } else if (c == '"') {
75             quoted = false
76         } else {
77           token += c;
78         }
79       } else if (c == '"') {
80         quoted = true
81       } else if (c === ' ') {
82         if (token.length > 0) {
83           tokens.push(token);
84           token = '';
85         }
86       } else {
87         token += c;
88       }
89     }
90     if (token.length > 0) {
91       tokens.push(token);
92     }
93     return tokens;
94   },
95   parse_yx(position_string) {
96     let coordinate_strings = position_string.split(',')
97     let position = [0, 0];
98     position[0] = parseInt(coordinate_strings[0].slice(2));
99     position[1] = parseInt(coordinate_strings[1].slice(2));
100     return position;
101   },
102 }
103
104 function quote(str) {
105     let quoted = ['"'];
106     for (let i = 0; i < str.length; i++) {
107         let c = str[i];
108         if (c in ['"', '\\']) {
109             quoted.push('\\');
110         };
111         quoted.push(c);
112     }
113     quoted.push('"');
114     return quoted.join('');
115 }
116
117 let tui = {
118   mode: 'chat',
119   switch_mode: function(mode_name) {
120     if (mode_name == 'explore') {
121         explorer.position = game.things[game.player_id];
122     }
123     this.mode = mode_name;
124     this.full_refresh();
125   },
126   draw_history: function() {
127     terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
128     let i = 0;
129     for (let line of chat.history) {
130       terminal.write(terminal.rows - 2 - i, terminal.cols / 2, line);
131       i += 1;
132     }
133   },
134   draw_map: function() {
135     terminal.drawBox(0, 0, terminal.rows, terminal.cols / 2);
136     let map_lines = [];
137     let line = [];
138     for (let i = 0, j = 0; i < game.map.length; i++, j++) {
139         if (j == game.map_size[1]) {
140             map_lines.push(line);
141             line = [];
142             j = 0;
143         };
144         line.push(game.map[i]);
145     };
146     map_lines.push(line);
147     let player_position = [0,0];
148     for (const thing_id in game.things) {
149         let t = game.things[thing_id];
150         map_lines[t[0]][t[1]] = '@';
151         if (game.player_id == thing_id) {
152             player_position = t;
153         }
154     };
155     let center_pos = player_position;
156     if (tui.mode == 'explore') {
157         map_lines[explorer.position[0]][explorer.position[1]] = '?';
158         center_pos = explorer.position;
159     }
160     let offset = [(terminal.rows / 2) - center_pos[0],
161                   terminal.cols / 4 - center_pos[1]];
162       for (let term_y = offset[0], map_y = 0;
163            term_y < terminal.rows && map_y < game.map_size[0];
164            term_y++, map_y++) {
165         if (term_y >= 0) {
166             let to_draw = map_lines[map_y].join('').slice(0, terminal.cols / 2 - offset[1]);
167             terminal.write(term_y, offset[1], to_draw);
168         }
169     }
170   },
171   draw_turn_line: function(n) {
172     terminal.drawBox(0, terminal.cols / 2, 1, terminal.cols / 2);
173     terminal.write(0, terminal.cols / 2, 'turn: ' + game.turn);
174   },
175   draw_input_line: function() {
176     terminal.drawBox(terminal.rows - 1, terminal.cols / 2, 1, terminal.cols / 2);
177     terminal.write(terminal.rows - 1, terminal.cols / 2, chat.input_line);
178   },
179   log_msg: function(msg, indent=0) {
180     let line_length = (terminal.cols / 2) - indent;
181     let chunk = "";
182     for (let i = 0, x = 0; i < msg.length; i++, x++) {
183       if (x >= line_length) {
184         chat.history.unshift(' '.repeat(indent) + chunk);
185         chunk = "";
186         x = 0;
187       };
188       chunk += msg[i];
189     }
190     chat.history.unshift(' '.repeat(indent) + chunk);
191     while (chat.history.length > terminal.rows - 2) {
192       chat.history.pop();
193     };
194     this.draw_history();
195   },
196   refresh: function() {
197     terminal.refresh();
198   },
199   log_help: function() {
200     tui.log_msg("");
201     tui.log_msg("HELP", 1);
202     tui.log_msg("chat mode commands:", 1);
203     tui.log_msg("");
204     tui.log_msg("/login USER - register as USER", 3);
205     tui.log_msg("/msg USER TEXT - send TEXT to USER", 3);
206     tui.log_msg("/help - show this help", 3);
207     tui.log_msg("/play - switch to game mode", 3);
208     tui.log_msg("");
209     tui.log_msg("map mode commands:", 1);
210     tui.log_msg("w, a, s, d - move avatar", 3);
211     tui.log_msg("f - flatten surroundings", 3);
212     tui.log_msg("e - write following ASCII character", 3);
213     tui.log_msg("c - switch to chat mode", 3);
214     tui.log_msg("");
215   },
216   full_refresh: function() {
217     this.draw_map();
218     this.draw_turn_line();
219     this.draw_history();
220     this.draw_input_line();
221     this.refresh();
222   }
223 }
224
225 let game = {
226   things: {},
227   turn: 0,
228   map: "",
229   map_size: [0,0],
230   player_id: 0
231 }
232
233 let chat = {
234   input_line: "",
235   history: [],
236 }
237
238 terminal.initialize();
239 tui.log_help();
240 tui.full_refresh();
241
242 let websocket = new WebSocket(websocket_location);
243 websocket.onmessage = function (event) {
244   let tokens = parser.tokenize(event.data);
245   if (tokens[0] === 'TURN') {
246     game.things = {}
247     game.turn = parseInt(tokens[1]);
248   } else if (tokens[0] === 'THING_POS') {
249     game.things[tokens[1]] = parser.parse_yx(tokens[2]);
250   } else if (tokens[0] === 'MAP') {
251     game.map_size = parser.parse_yx(tokens[1]);
252     game.map = tokens[2]
253   } else if (tokens[0] === 'GAME_STATE_COMPLETE') {
254     tui.draw_turn_line();
255     tui.draw_map();
256     tui.refresh();
257   } else if (tokens[0] === 'LOG') {
258      tui.log_msg(tokens[1], 1);
259      tui.refresh();
260   } else if (tokens[0] === 'PLAYER_ID') {
261       game.player_id = parseInt(tokens[1]);
262   } else if (tokens[0] === 'META') {
263      tui.log_msg(tokens[1]);
264      tui.refresh();
265   } else if (tokens[0] === 'UNHANDLED_INPUT') {
266      tui.log_msg('unknown command');
267      tui.refresh();
268   } else if (tokens[0] === 'ARGUMENT_ERROR') {
269      tui.log_msg('syntax error: ' + tokens[1]);
270      tui.refresh();
271   } else if (tokens[0] === 'GAME_ERROR') {
272      tui.log_msg('game error: ' + tokens[1]);
273      tui.refresh();
274   } else if (tokens[0] === 'PONG') {
275     console.log('PONG');
276   } else {
277      tui.log_msg('unhandled input: ' + event.data);
278      tui.refresh();
279   }
280 }
281
282 let explorer = {
283     position: [0,0],
284     move: function(direction) {
285         let try_pos = [0,0];
286         try_pos[0] = this.position[0];
287         try_pos[1] = this.position[1];
288         if (direction == 'left') {
289             try_pos[1] -= 1;
290         } else if (direction == 'right') {
291             try_pos[1] += 1;
292         } else if (direction == 'up') {
293             try_pos[0] -= 1;
294         } else if (direction == 'down') {
295             try_pos[0] += 1;
296         };
297         if (!(try_pos[0] < 0) &&
298             !(try_pos[1] < 0) &&
299             !(try_pos[0] >= game.map_size[0])
300             && !(try_pos[1] >= game.map_size[1])) {
301             this.position = try_pos;
302             tui.draw_map();
303             tui.refresh();
304         }
305     }
306 }
307
308 document.addEventListener('keydown', (event) => {
309     if (tui.mode == 'chat') {
310         if (event.key.length === 1) {
311             chat.input_line += event.key;
312             tui.draw_input_line();
313             tui.refresh();
314         } else if (event.key == 'Backspace') {
315             chat.input_line = chat.input_line.slice(0, -1);
316             tui.draw_input_line();
317             tui.refresh();
318         } else if (event.key == 'Enter') {
319             let tokens = parser.tokenize(chat.input_line);
320             if (tokens.length > 0 && tokens[0].length > 0) {
321                 if (tokens[0][0] == '/') {
322                     if (tokens[0] == '/play') {
323                         tui.switch_mode('play');
324                     } else if (tokens[0] == '/?') {
325                         tui.log_help();
326                         tui.refresh();
327                     } else if (tokens[0] == '/login') {
328                         if (tokens.length > 1) {
329                             websocket.send('LOGIN ' + quote(tokens[1]));
330                         } else {
331                             tui.log_msg('need login name');
332                         }
333                     } else if (tokens[0] == '/msg') {
334                         if (tokens.length > 2) {
335                             websocket.send('QUERY ' + quote(tokens[1]) + ' ' + quote(tokens[2]));
336                         } else {
337                             tui.log_msg('need message target and message');
338                         }
339                     } else {
340                         tui.log_msg('unknown command');
341                     }
342                 } else {
343                     websocket.send('ALL ' + quote(chat.input_line));
344                 }
345             }
346             chat.input_line = '';
347             tui.draw_input_line();
348             tui.refresh();
349         }
350     } else if (tui.mode == 'play') {
351           if (event.key === 'c') {
352               tui.switch_mode('chat');
353           } else if (event.key === 'e') {
354               tui.switch_mode('edit');
355           } else if (event.key === '?') {
356               tui.switch_mode('explore');
357           } else if (event.key === 'F1') {
358               tui.log_help();
359               tui.refresh();
360           } else if (event.key === 'f') {
361               websocket.send("TASK:FLATTEN_SURROUNDINGS");
362           } else if (event.key === 'a') {
363               websocket.send('TASK:MOVE LEFT');
364           } else if (event.key === 'd') {
365               websocket.send('TASK:MOVE RIGHT');
366           } else if (event.key === 'w') {
367               websocket.send('TASK:MOVE UP');
368           } else if (event.key === 's') {
369               websocket.send('TASK:MOVE DOWN');
370           };
371     } else if (tui.mode == 'edit') {
372         if (event.key.length === 1) {
373             websocket.send("TASK:WRITE " + quote(event.key));
374         }
375         tui.switch_mode('play');
376     } else if (tui.mode == 'explore') {
377         if (event.key === 'c') {
378             tui.switch_mode('chat');
379         } else if (event.key == 'p') {
380             tui.switch_mode('play');
381         } else if (event.key === 'a') {
382               explorer.move('left');
383         } else if (event.key === 'd') {
384               explorer.move('right');
385         } else if (event.key === 'w') {
386               explorer.move('up');
387         } else if (event.key === 's') {
388               explorer.move('down');
389         };
390     }
391 }, false);
392
393 window.setInterval(function() { websocket.send('PING') }, 30000);
394 </script>
395 </body></html>