home · contact · privacy
Start new players in middle of map instead of topleft corner.
[plomrogue2-experiments] / new2 / rogue_chat_nocanvas_monochrome.html
index 863de8c5b09cbaa9c93774cfa80c43941dccd862..eaa180d03157dfae3b997c6a0862a74aba0d34aa 100644 (file)
@@ -186,18 +186,24 @@ let tui = {
       terminal.write(terminal.rows - 1, terminal.cols / 2, '> ' + this.input_line);
     }
   },
-  log_msg: function(msg) {
-    let line_length = (terminal.cols / 2);
+  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) {
-        this.log.unshift(chunk);
+      if (x >= width) {
+        lines.unshift(chunk);
         chunk = "";
         x = 0;
       };
       chunk += msg[i];
     }
-    this.log.unshift(chunk);
+    lines.unshift(chunk);
+    return lines;
+  },
+  log_msg: function(msg) {
+    let line_length = (terminal.cols / 2);
+    let chunk = "";
+    this.log = this.msg_into_lines_of_width(msg, terminal.cols / 2).concat(this.log);
     while (this.log.length > terminal.rows - 2) {
       this.log.pop();
     };
@@ -209,21 +215,22 @@ let tui = {
   log_help: function() {
     tui.log_msg("");
     tui.log_msg("HELP");
-    tui.log_msg("chat mode commands:");
     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 - switch to play mode");
+    tui.log_msg("/study - switch to study mode");
     tui.log_msg("");
     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 investigation mode");
+    tui.log_msg("? - switch to study mode");
     tui.log_msg("");
-    tui.log_msg("investigation mode commands:");
+    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");
@@ -232,7 +239,8 @@ let tui = {
   },
   draw_info: function() {
     terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
-    let lines = explorer.get_info();
+    let lines = this.msg_into_lines_of_width(explorer.get_info(), terminal.cols / 2);
+    lines.reverse();
     for (let y = 1, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
       terminal.write(y, terminal.cols / 2, lines[i]);
     }
@@ -355,9 +363,9 @@ let explorer = {
     },
     get_info: function() {
         if (this.position in this.info_db) {
-            return [this.info_db[this.position]];
+            return this.info_db[this.position];
         } else {
-            return ['waiting …'];
+            return 'waiting …';
         }
     },
     annotate: function(msg) {