X-Git-Url: https://plomlompom.com/repos//%22https:/validator.w3.org/check?a=blobdiff_plain;f=rogue_chat.html;h=781fc63b99f7e0618922a7b9088136f540e7353e;hb=b3274c1e3219d50cc67487684608c7b4bd456675;hp=5e663981d13ba7292b0f8b98ca006fde9b8b4a7c;hpb=c4a74406fd9fc0f7d91ad428a9c28b5369e5c51a;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index 5e66398..781fc63 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -778,6 +778,7 @@ let tui = { if (this.mode && this.mode.name == 'control_tile_draw') { tui.log_msg('@ finished tile protection drawing.') } + this.draw_face = false; this.tile_draw = false; if (mode_name == 'command_thing' && (!game.player.carrying || !game.player.carrying.commandable)) { @@ -1137,20 +1138,21 @@ let tui = { this.draw_face = false; return; } + const start_x = tui.window_width - 10; function draw_body_part(body_part, end_y) { - const start_x = tui.window_width - 10; - terminal.write(end_y - 4, start_x, '+--------+'); + terminal.write(end_y - 4, start_x, ' ________ '); terminal.write(end_y - 3, start_x, '| |'); terminal.write(end_y - 2, start_x, '| ' + body_part.slice(0, 6) + ' |'); terminal.write(end_y - 1, start_x, '| ' + body_part.slice(6, 12) + ' |'); terminal.write(end_y, start_x, '| ' + body_part.slice(12, 18) + ' |'); } if (t.face) { - draw_body_part(t.face, terminal.rows - 1); + draw_body_part(t.face, terminal.rows - 2); } if (t.hat) { - draw_body_part(t.hat, terminal.rows - 4); + draw_body_part(t.hat, terminal.rows - 5); } + terminal.write(terminal.rows - 1, start_x, '| |'); }, draw_mode_line: function() { let help = 'hit [' + this.keys.help + '] for help'; @@ -1503,7 +1505,6 @@ document.onclick = function() { }; tui.inputEl.addEventListener('keydown', (event) => { tui.show_help = false; - tui.draw_face = false; if (event.key == 'Enter') { event.preventDefault(); }