X-Git-Url: https://plomlompom.com/repos/condition_descriptions?a=blobdiff_plain;f=new2%2Frogue_chat.html;h=bc90c07e72d09ac8b6dc5a51f0c7b26911bbce59;hb=a0afb82a75abf2907e57ba5e6d2244fb02613a7c;hp=f1146cb7c9cd70646656c85c80ef67a4882a4973;hpb=428ba19a1984f385f5fc55201734a150f59dafcb;p=plomrogue2-experiments diff --git a/new2/rogue_chat.html b/new2/rogue_chat.html index f1146cb..bc90c07 100644 --- a/new2/rogue_chat.html +++ b/new2/rogue_chat.html @@ -125,9 +125,20 @@ let tui = { terminal.drawBox(terminal.rows - 1, terminal.cols / 2, 1, terminal.cols / 2, 'black'); terminal.write(terminal.rows - 1, terminal.cols / 2, chat.input_line); }, - log_msg: function(msg) { - chat.history.unshift(msg); + log_msg: function(msg, indent=0) { + let line_length = (terminal.cols / 2) - indent; + let chunk = ""; + for (let i = 0, x = 0; i < msg.length; i++, x++) { + if (x >= line_length) { + chat.history.unshift(' '.repeat(indent) + chunk); + chunk = ""; + x = 0; + }; + chunk += msg[i]; + } + chat.history.unshift(' '.repeat(indent) + chunk); if (chat.history.length > terminal.rows - 2) { + chat.history.pop(); }; this.draw_history(); @@ -143,13 +154,15 @@ let game = { let chat = { input_line:"", - history: ["contain whitespace, escape them with \\.", - "Use double quotes for strings that", - "Use arrow keys to move your avatar.", - " QUERY USER TEXT - send TEXT to USER", - " ALL TEXT - send TEXT to all users", - " LOGIN USER - register as USER", - "commands:"] + history: [" visible ASCII char in the input prompt.", + " To write on the map, enter on a single", + " contain whitespace, escape them with \\.", + " Use double quotes for strings that", + " Use arrow keys to move your avatar.", + " QUERY USER TEXT - send TEXT to USER", + " ALL TEXT - send TEXT to all users", + " LOGIN USER - register as USER", + " commands:"] } terminal.initialize() @@ -169,8 +182,12 @@ document.addEventListener('keydown', (event) => { chat.input_line = chat.input_line.slice(0, -1); tui.draw_input_line(); } else if (event.key === 'Enter') { - websocket.send(chat.input_line); - chat.input_line = '' + if (chat.input_line.length === 1) { + websocket.send("TASK:WRITE " + chat.input_line); + } else { + websocket.send(chat.input_line); + } + chat.input_line = ''; tui.draw_input_line(); } else if (event.key === 'ArrowLeft') { websocket.send('TASK:MOVE LEFT'); @@ -181,7 +198,6 @@ document.addEventListener('keydown', (event) => { } else if (event.key === 'ArrowDown') { websocket.send('TASK:MOVE DOWN'); }; - console.log(event.key); }, false); let websocket = new WebSocket(websocket_location); @@ -200,7 +216,9 @@ websocket.onmessage = function (event) { tui.draw_map(); tui.draw_map(); } else if (tokens[0] === 'LOG') { - tui.log_msg(' ' + tokens[1]); + tui.log_msg(tokens[1], 1); + } else if (tokens[0] === 'META') { + tui.log_msg(tokens[1]); } else if (tokens[0] === 'UNHANDLED_INPUT') { tui.log_msg('unknown command'); } else if (tokens[0] === 'GAME_ERROR') {