X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=new2%2Frogue_chat_nocanvas_monochrome.html;h=14668eaa6c015e1b3e5c483c16600f007d53c63d;hb=8a8eb0967bcffcb934a37ecc5846f007268a0dc8;hp=b49aac424e83234740820416992600fd497be863;hpb=9209d0e0f1bbc79f872ce3b2bd353f1307a7c84d;p=plomrogue2-experiments diff --git a/new2/rogue_chat_nocanvas_monochrome.html b/new2/rogue_chat_nocanvas_monochrome.html index b49aac4..14668ea 100644 --- a/new2/rogue_chat_nocanvas_monochrome.html +++ b/new2/rogue_chat_nocanvas_monochrome.html @@ -44,21 +44,22 @@ let terminal = { drawBox: function(start_y, start_x, height, width) { let end_y = start_y + height; let end_x = start_x + width; - for (let y = start_y, x = start_x;; x++) { - if (x == end_x) { - x = start_x; - y += 1; - if (y == end_y) { - break; - } - }; - this.content[y][x] = ' '; + for (let y = start_y, x = start_x; y < this.rows; x++) { + if (x == end_x) { + x = start_x; + y += 1; + if (y == end_y) { + break; + } + }; + this.content[y][x] = ' '; } }, } let parser = { tokenize: function(str) { + let token_ends = []; let tokens = []; let token = '' let quoted = false; @@ -72,7 +73,7 @@ let parser = { } else if (c == '\\') { escaped = true; } else if (c == '"') { - quoted = false + quoted = false } else { token += c; } @@ -80,6 +81,7 @@ let parser = { quoted = true } else if (c === ' ') { if (token.length > 0) { + token_ends.push(i); tokens.push(token); token = ''; } @@ -90,9 +92,13 @@ let parser = { if (token.length > 0) { tokens.push(token); } - return tokens; + let token_starts = []; + for (let i = 0; i < token_ends.length; i++) { + token_starts.push(token_ends[i] - tokens[i].length); + }; + return [tokens, token_starts]; }, - parse_yx(position_string) { + parse_yx: function(position_string) { let coordinate_strings = position_string.split(',') let position = [0, 0]; position[0] = parseInt(coordinate_strings[0].slice(2)); @@ -101,30 +107,77 @@ let parser = { }, } -function quote(str) { - let quoted = ['"']; - for (let i = 0; i < str.length; i++) { - let c = str[i]; - if (c in ['"', '\\']) { - quoted.push('\\'); +let server = { + init: function(url) { + this.websocket = new WebSocket(url); + this.websocket.onopen = function(event) { + window.setInterval(function() { server.send(['PING']) }, 30000); + server.send(['GET_GAMESTATE']); }; - quoted.push(c); + }, + send: function(tokens) { + this.websocket.send(unparser.untokenize(tokens)); + } +} + +let unparser = { + quote: function(str) { + let quoted = ['"']; + for (let i = 0; i < str.length; i++) { + let c = str[i]; + if (c in ['"', '\\']) { + quoted.push('\\'); + }; + quoted.push(c); + } + quoted.push('"'); + return quoted.join(''); + }, + to_yx: function(yx_coordinate) { + return "Y:" + yx_coordinate[0] + ",X:" + yx_coordinate[1]; + }, + untokenize: function(tokens) { + let quoted_tokens = []; + for (let token of tokens) { + quoted_tokens.push(this.quote(token)); + } + return quoted_tokens.join(" "); } - quoted.push('"'); - return quoted.join(''); } let tui = { + mode: 'chat', + log: [], + input: '', + input_lines: [], + window_width: terminal.cols / 2, + height_turn_line: 1, + height_input: 1, + init: function() { + this.recalc_input_lines(); + }, + switch_mode: function(mode_name, keep_pos=false) { + if (mode_name == 'study' && !keep_pos) { + explorer.position = game.things[game.player_id]; + } + this.mode = mode_name; + this.full_refresh(); + }, draw_history: function() { - terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2); - let i = 0; - for (let line of chat.history) { - terminal.write(terminal.rows - 2 - i, terminal.cols / 2, line); - i += 1; + if (terminal.rows <= this.height_turn_line + this.height_input) { + return; } + terminal.drawBox(this.height_turn_line, this.window_width, terminal.rows - this.height_turn_line - this.height_input, this.window_width); + console.log(this.log); + for (let y = terminal.rows - this.height_input - this.height_turn_line, + i = this.log.length - 1; + y >= this.height_turn_line && i >= 0; + y--, i--) { + terminal.write(y, this.window_width, this.log[i]); + } }, draw_map: function() { - terminal.drawBox(0, 0, terminal.rows, terminal.cols / 2); + terminal.drawBox(0, 0, terminal.rows, this.window_width); let map_lines = []; let line = []; for (let i = 0, j = 0; i < game.map.length; i++, j++) { @@ -137,67 +190,130 @@ let tui = { }; map_lines.push(line); let player_position = [0,0]; + let center_pos = [Math.floor(game.map_size[0] / 2), + Math.floor(game.map_size[1] / 2)]; for (const thing_id in game.things) { let t = game.things[thing_id]; map_lines[t[0]][t[1]] = '@'; if (game.player_id == thing_id) { - player_position = t; + center_pos = t; } + }; + if (tui.mode == 'study' || tui.mode == 'annotate') { + map_lines[explorer.position[0]][explorer.position[1]] = '?'; + center_pos = explorer.position; } - let offset = [(terminal.rows / 2) - player_position[0], - terminal.cols / 4 - player_position[1]]; + let offset = [(terminal.rows / 2) - center_pos[0], + this.window_width / 2 - center_pos[1]]; for (let term_y = offset[0], map_y = 0; term_y < terminal.rows && map_y < game.map_size[0]; term_y++, map_y++) { if (term_y >= 0) { - let to_draw = map_lines[map_y].join('').slice(0, terminal.cols / 2 - offset[1]); + let to_draw = map_lines[map_y].join('').slice(0, this.window_width - offset[1]); terminal.write(term_y, offset[1], to_draw); } } }, draw_turn_line: function(n) { - terminal.drawBox(0, terminal.cols / 2, 1, terminal.cols / 2); - terminal.write(0, terminal.cols / 2, 'turn: ' + game.turn); + terminal.drawBox(0, this.window_width, 1, this.window_width); + terminal.write(0, this.window_width, 'turn: ' + game.turn); + }, + empty_input: function(str) { + this.input = ""; + this.recalc_input_lines(); + }, + add_to_input: function(str) { + if (this.input.length + str.length > this.window_width * terminal.rows) { + return; + } + this.input += str; + this.recalc_input_lines(); + }, + recalc_input_lines: function() { + this.input_lines = this.msg_into_lines_of_width("> " + this.input, this.window_width); + this.height_input = this.input_lines.length; + }, + shorten_input: function() { + if (this.input.length > 2) { + this.input = tui.input.slice(0, -1); + this.recalc_input_lines(); + } }, - draw_input_line: function() { - terminal.drawBox(terminal.rows - 1, terminal.cols / 2, 1, terminal.cols / 2); - terminal.write(terminal.rows - 1, terminal.cols / 2, chat.input_line); + draw_input: function() { + terminal.drawBox(terminal.rows - this.height_input, this.window_width, this.height_input, this.window_width); + if (this.mode == 'chat' || this.mode == 'annotate') { + for (let y = terminal.rows - this.height_input, i = 0; y < terminal.rows && i < this.input_lines.length; y++, i++) { + terminal.write(y, this.window_width, this.input_lines[i]); + } + } }, - log_msg: function(msg, indent=0) { - let line_length = (terminal.cols / 2) - indent; + msg_into_lines_of_width: function(msg, width) { let chunk = ""; + let lines = []; for (let i = 0, x = 0; i < msg.length; i++, x++) { - if (x >= line_length) { - chat.history.unshift(' '.repeat(indent) + chunk); - chunk = ""; + if (x >= width) { + lines.push(chunk); + chunk = ""; x = 0; }; chunk += msg[i]; } - chat.history.unshift(' '.repeat(indent) + chunk); - while (chat.history.length > terminal.rows - 2) { - chat.history.pop(); - }; - this.draw_history(); + lines.push(chunk); + return lines; + }, + log_msg: function(msg) { + let lines = this.msg_into_lines_of_width(msg, this.window_width); + this.log = this.log.concat(lines); + while (this.log.length > terminal.rows - 2) { + this.log.shift(); + }; + this.draw_history(); }, refresh: function() { terminal.refresh(); }, log_help: function() { tui.log_msg(""); - tui.log_msg("HELP", 1); - tui.log_msg("chat mode commands:", 1); + tui.log_msg("HELP"); + tui.log_msg(""); + tui.log_msg("chat mode commands:"); + tui.log_msg(":login USER - register as USER"); + tui.log_msg(":msg USER TEXT - send TEXT to USER"); + tui.log_msg(":help - show this help"); + tui.log_msg(":play or :p - switch to play mode"); + tui.log_msg(":study or :s - switch to study mode"); tui.log_msg(""); - tui.log_msg("/login USER - register as USER", 3); - tui.log_msg("/msg USER TEXT - send TEXT to USER", 3); - tui.log_msg("/game - switch to game mode", 3); + tui.log_msg("play mode commands:"); + tui.log_msg("w, a, s, d - move avatar"); + tui.log_msg("f - flatten surroundings"); + tui.log_msg("e - write following ASCII character"); + tui.log_msg("c - switch to chat mode"); + tui.log_msg("? - switch to study mode"); tui.log_msg(""); - tui.log_msg("map mode commands:", 1); - tui.log_msg("w, a, s, d - move avatar", 3); - tui.log_msg("f - flatten surroundings", 3); - tui.log_msg("e - write following ASCII character", 3); - tui.log_msg("c - switch to chat mode", 3); + tui.log_msg("study mode commands:"); + tui.log_msg("w, a, s, d - move question mark"); + tui.log_msg("A - annotate terrain"); + tui.log_msg("c - switch to chat mode"); + tui.log_msg("p - switch to play mode"); tui.log_msg(""); + }, + draw_info: function() { + terminal.drawBox(this.height_turn_line, this.window_width, terminal.rows - this.height_turn_line - this.height_input, this.window_width); + let lines = this.msg_into_lines_of_width(explorer.get_info(), this.window_width); + for (let y = this.height_turn_line, i = 0; y < terminal.rows && i < lines.length; y++, i++) { + terminal.write(y, this.window_width, lines[i]); + } + }, + full_refresh: function() { + this.draw_map(); + this.draw_turn_line(); + if (this.mode == 'study' || this.mode == 'annotate') { + this.draw_info(); + } else { + this.draw_history(); + } + this.draw_input(); + this.refresh(); } } @@ -209,22 +325,14 @@ let game = { player_id: 0 } -let chat = { - input_line: "", - history: [], -} - terminal.initialize(); +tui.init(); tui.log_help(); -tui.draw_map(); -tui.draw_turn_line(); -tui.draw_history(); -tui.draw_input_line(); -tui.refresh(); +tui.full_refresh(); -let websocket = new WebSocket(websocket_location); -websocket.onmessage = function (event) { - let tokens = parser.tokenize(event.data); +server.init(websocket_location); +server.websocket.onmessage = function (event) { + let tokens = parser.tokenize(event.data)[0]; if (tokens[0] === 'TURN') { game.things = {} game.turn = parseInt(tokens[1]); @@ -234,105 +342,199 @@ websocket.onmessage = function (event) { game.map_size = parser.parse_yx(tokens[1]); game.map = tokens[2] } else if (tokens[0] === 'GAME_STATE_COMPLETE') { + explorer.empty_info_db(); + if (tui.mode == 'study') { + explorer.query_info(); + } tui.draw_turn_line(); tui.draw_map(); tui.refresh(); - } else if (tokens[0] === 'LOG') { - tui.log_msg(tokens[1], 1); + } else if (tokens[0] === 'CHAT') { + tui.log_msg('# ' + tokens[1], 1); tui.refresh(); } else if (tokens[0] === 'PLAYER_ID') { game.player_id = parseInt(tokens[1]); } else if (tokens[0] === 'META') { - tui.log_msg(tokens[1]); + tui.log_msg('@ ' + tokens[1]); tui.refresh(); + } else if (tokens[0] === 'ANNOTATION') { + let position = parser.parse_yx(tokens[1]); + explorer.update_info_db(position, tokens[2]); } else if (tokens[0] === 'UNHANDLED_INPUT') { - tui.log_msg('unknown command'); + tui.log_msg('? unknown command'); tui.refresh(); } else if (tokens[0] === 'ARGUMENT_ERROR') { - tui.log_msg('syntax error: ' + tokens[1]); + tui.log_msg('? syntax error: ' + tokens[1]); tui.refresh(); } else if (tokens[0] === 'GAME_ERROR') { - tui.log_msg('game error: ' + tokens[1]); + tui.log_msg('? game error: ' + tokens[1]); tui.refresh(); } else if (tokens[0] === 'PONG') { console.log('PONG'); } else { - tui.log_msg('unhandled input: ' + event.data); + tui.log_msg('? unhandled input: ' + event.data); tui.refresh(); } } -let mode = 'chat'; +let explorer = { + position: [0,0], + info_db: {}, + move: function(direction) { + let try_pos = [0,0]; + try_pos[0] = this.position[0]; + try_pos[1] = this.position[1]; + if (direction == 'left') { + try_pos[1] -= 1; + } else if (direction == 'right') { + try_pos[1] += 1; + } else if (direction == 'up') { + try_pos[0] -= 1; + } else if (direction == 'down') { + try_pos[0] += 1; + }; + if (!(try_pos[0] < 0) && + !(try_pos[1] < 0) && + !(try_pos[0] >= game.map_size[0]) + && !(try_pos[1] >= game.map_size[1])) { + this.position = try_pos; + this.query_info(); + tui.draw_map(); + tui.draw_info(); + tui.refresh(); + } + }, + update_info_db: function(yx, str) { + this.info_db[yx] = str; + if (tui.mode == 'study') { + tui.draw_info(); + tui.refresh(); + } + }, + empty_info_db: function() { + this.info_db = {}; + if (tui.mode == 'study') { + tui.draw_info(); + tui.refresh(); + } + }, + query_info: function() { + server.send(["GET_ANNOTATION", unparser.to_yx(explorer.position)]); + }, + get_info: function() { + if (this.position in this.info_db) { + return this.info_db[this.position]; + } else { + return 'waiting …'; + } + }, + annotate: function(msg) { + if (msg.length == 0) { + msg = " "; // triggers annotation deletion + } + server.send(["ANNOTATE", unparser.to_yx(explorer.position), msg]); + } +} + document.addEventListener('keydown', (event) => { - if (mode == 'chat') { + if (tui.mode == 'chat') { if (event.key.length === 1) { - chat.input_line += event.key; - tui.draw_input_line(); - tui.refresh(); + tui.add_to_input(event.key); + tui.full_refresh(); } else if (event.key == 'Backspace') { - chat.input_line = chat.input_line.slice(0, -1); - tui.draw_input_line(); - tui.refresh(); + tui.shorten_input(); + tui.full_refresh(); } else if (event.key == 'Enter') { - let tokens = parser.tokenize(chat.input_line); - console.log(tokens); + let [tokens, token_starts] = parser.tokenize(tui.input); if (tokens.length > 0 && tokens[0].length > 0) { - if (tokens[0][0] == '/') { - if (tokens[0] == '/game') { - mode = 'game'; - } else if (tokens[0] == '/?') { + if (tokens[0][0] == ':') { + if (tokens[0] == ':play' || tokens[0] == ':p') { + tui.switch_mode('play'); + } else if (tokens[0] == ':study' || tokens[0] == ':s') { + tui.switch_mode('study'); + } else if (tokens[0] == ':help') { tui.log_help(); tui.refresh(); - } else if (tokens[0] == '/login') { + } else if (tokens[0] == ':login') { if (tokens.length > 1) { - websocket.send('LOGIN ' + quote(tokens[1])); + server.send(['LOGIN', tokens[1]]); } else { - tui.log_msg('need login name'); + tui.log_msg('? need login name'); } - } else if (tokens[0] == '/msg') { + } else if (tokens[0] == ':msg') { if (tokens.length > 2) { - websocket.send('QUERY ' + quote(tokens[1]) + ' ' + quote(tokens[2])); + let msg = tui.input.slice(token_starts[2]); + server.send(['QUERY', tokens[1], msg]); } else { - tui.log_msg('need message target and message'); + tui.log_msg('? need message target and message'); } } else { - tui.log_msg('unknown command'); + tui.log_msg('? unknown command'); } } else { - websocket.send('ALL ' + quote(chat.input_line)); + server.send(['ALL', tui.input]); } } - chat.input_line = ''; - tui.draw_input_line(); - tui.refresh(); + tui.empty_input(); + tui.full_refresh(); } - } else if (mode == 'game') { + } else if (tui.mode == 'play') { if (event.key === 'c') { - mode = 'chat'; + tui.switch_mode('chat'); } else if (event.key === 'e') { - mode = 'edit'; + tui.switch_mode('edit'); } else if (event.key === '?') { + tui.switch_mode('study'); + } else if (event.key === 'F1') { tui.log_help(); tui.refresh(); } else if (event.key === 'f') { - websocket.send("TASK:FLATTEN_SURROUNDINGS"); + server.send(["TASK:FLATTEN_SURROUNDINGS"]); } else if (event.key === 'a') { - websocket.send('TASK:MOVE LEFT'); + server.send(['TASK:MOVE', 'LEFT']); } else if (event.key === 'd') { - websocket.send('TASK:MOVE RIGHT'); + server.send(['TASK:MOVE', 'RIGHT']); } else if (event.key === 'w') { - websocket.send('TASK:MOVE UP'); + server.send(['TASK:MOVE', 'UP']); } else if (event.key === 's') { - websocket.send('TASK:MOVE DOWN'); + server.send(['TASK:MOVE', 'DOWN']); }; - } else if (mode == 'edit') { + } else if (tui.mode == 'edit') { + if (event.key != "Shift" && event.key.length == 1) { + server.send(["TASK:WRITE", event.key]); + tui.switch_mode('play'); + } + } else if (tui.mode == 'study') { + if (event.key === 'c') { + tui.switch_mode('chat'); + } else if (event.key == 'p') { + tui.switch_mode('play'); + } else if (event.key === 'a') { + explorer.move('left'); + } else if (event.key === 'd') { + explorer.move('right'); + } else if (event.key === 'w') { + explorer.move('up'); + } else if (event.key === 's') { + explorer.move('down'); + } else if (event.key === 'A') { + tui.switch_mode('annotate'); + tui.draw_info(); + tui.refresh(); + }; + } else if (tui.mode == 'annotate') { if (event.key.length === 1) { - websocket.send("TASK:WRITE " + quote(event.key)); + tui.add_to_input(event.key); + tui.full_refresh(); + } else if (event.key == 'Backspace') { + tui.shorten_input(); + tui.full_refresh(); + } else if (event.key == 'Enter') { + explorer.annotate(tui.input); + tui.empty_input(); + tui.switch_mode('study', true); } - mode = 'game'; } }, false); - -window.setInterval(function() { websocket.send('PING') }, 30000);