X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=new2%2Frogue_chat_nocanvas_monochrome.html;h=d06eb30e6d44a90a929f22f6b8ea21c9f446059c;hb=bdc3960561f676f33a627ff77cc15275b7bf1953;hp=37930ce44ceeee0b03f7b7afa0829f24e21f6253;hpb=81554cf96856befe1392d86efcebb25e997e3497;p=plomrogue2-experiments diff --git a/new2/rogue_chat_nocanvas_monochrome.html b/new2/rogue_chat_nocanvas_monochrome.html index 37930ce..d06eb30 100644 --- a/new2/rogue_chat_nocanvas_monochrome.html +++ b/new2/rogue_chat_nocanvas_monochrome.html @@ -350,7 +350,7 @@ let tui = { }, log_msg: function(msg) { this.log.push(msg); - while (this.log.length > terminal.rows * 4) { + while (this.log.length > 100) { this.log.shift(); }; this.full_refresh(); @@ -436,7 +436,7 @@ let tui = { }, draw_input: function() { if (this.mode.has_input_prompt) { - for (let y = terminal.rows - this.height_input, i = 0; y < terminal.rows && i < this.input_lines.length; y++, i++) { + for (let y = terminal.rows - this.height_input, i = 0; i < this.input_lines.length; y++, i++) { terminal.write(y, this.window_width, this.input_lines[i]); } } @@ -528,12 +528,14 @@ let explorer = { }, get_info: function() { let info = ""; + let position_i = this.position[0] * game.map_size[1] + this.position[1]; + info += "TERRAIN: " + game.map[position_i] + "\n"; for (let t_id in game.things) { let t = game.things[t_id]; if (t.position[0] == this.position[0] && t.position[1] == this.position[1]) { - info += "PLAYER"; + info += "PLAYER @"; if (t.name_) { - info += " " + t.name_; + info += ": " + t.name_; } info += "\n"; } @@ -564,7 +566,7 @@ let explorer = { tui.inputEl.addEventListener('input', (event) => { if (tui.mode.has_input_prompt) { - let max_length = tui.window_width * terminal.rows - tui.input_prompt.length; + let max_length = tui.window_width * terminal.rows - tui.input_prompt.length; if (tui.inputEl.value.length > max_length) { tui.inputEl.value = tui.inputEl.value.slice(0, max_length); };