home · contact · privacy
Fix input line recalculation bugs.
[plomrogue2] / rogue_chat.html
index 02fb9a672aac937e4c006f20d5af7c30e5a2687e..d2136df8a6dd3517eff99e0b7fb210be99bc0c30 100644 (file)
@@ -63,6 +63,7 @@ keyboard input/control: <span id="keyboard_control"></span>
       <button id="flatten">flatten surroundings</button>
       <button id="switch_to_annotate">annotate tile</button>
       <button id="switch_to_portal">edit portal</button>
+      <button id="switch_to_name_thing">name thing</button>
       <button id="switch_to_password">enter map edit password</button>
     </td>
   </tr>
@@ -98,13 +99,14 @@ keyboard input/control: <span id="keyboard_control"></span>
 <li><input id="key_switch_to_study" type="text" value="?" />
 <li><input id="key_switch_to_edit" type="text" value="E" />
 <li><input id="key_switch_to_write" type="text" value="m" />
+<li><input id="key_switch_to_name_thing" type="text" value="N" />
 <li><input id="key_switch_to_password" type="text" value="P" />
 <li><input id="key_switch_to_admin_enter" type="text" value="A" />
 <li><input id="key_switch_to_control_pw_type" type="text" value="C" />
 <li><input id="key_switch_to_control_tile_type" type="text" value="Q" />
 <li><input id="key_switch_to_annotate" type="text" value="M" />
 <li><input id="key_switch_to_portal" type="text" value="T" />
-<li>toggle map view: <input id="key_toggle_map_mode" type="text" value="M" />
+<li>toggle map view: <input id="key_toggle_map_mode" type="text" value="L" />
 <li>toggle protection character drawing: <input id="key_toggle_tile_draw" type="text" value="m" />
 </ul>
 </div>
@@ -122,8 +124,12 @@ let mode_helps = {
         'short': 'study',
         'long': 'This mode allows you to study the map and its tiles in detail.  Move the question mark over a tile, and the right half of the screen will show detailed information on it.  Toggle the map view to show or hide different information layers.'},
     'edit': {
-        'short': 'map edit',
-        'long': 'This mode allows you to change the map in various ways.  Individual map tiles are shown together with their "protection characters".  You can edit a tile if you set the map edit password that matches its protection character.  The character "." marks the absence of protection:  Such tiles can always be edited.'
+        'short': 'world edit',
+        'long': 'This mode allows you to change the game world in various ways.  Individual map tiles can be protected by "protection characters", which you can see by toggling into the protections map view.  You can edit a tile if you set the map edit password that matches its protection character.  The character "." marks the absence of protection:  Such tiles can always be edited.'
+    },
+    'name_thing': {
+        'short': 'name thing',
+        'long': 'Give name to/change name of thing here.'
     },
     'write': {
         'short': 'change terrain',
@@ -253,7 +259,7 @@ let terminal = {
               let start_x = 0;
               for (let span of tui.links[y]) {
                   chunks.push(escapeHTML(line.slice(start_x, span[0])));
-                  chunks.push('<a href="');
+                  chunks.push('<a target="_blank" href="');
                   chunks.push(escapeHTML(span[2]));
                   chunks.push('">');
                   chunks.push(escapeHTML(line.slice(span[0], span[1])));
@@ -437,7 +443,6 @@ let server = {
         } else if (tokens[0] === 'ANNOTATION') {
             let position = parser.parse_yx(tokens[1]);
             explorer.update_info_db(position, tokens[2]);
-            tui.restore_input_values();
             tui.full_refresh();
         } else if (tokens[0] === 'UNHANDLED_INPUT') {
             tui.log_msg('? unknown command');
@@ -551,6 +556,7 @@ let tui = {
   mode_control_pw_type: new Mode('control_pw_type', true),
   mode_portal: new Mode('portal', true, true),
   mode_password: new Mode('password', true),
+  mode_name_thing: new Mode('name_thing', true, true),
   mode_admin_enter: new Mode('admin_enter', true),
   mode_admin: new Mode('admin'),
   mode_control_pw_pw: new Mode('control_pw_pw', true),
@@ -563,7 +569,7 @@ let tui = {
                                          "control_tile_type", "chat",
                                          "study", "play", "edit"]
       this.mode_control_tile_draw.available_modes = ["admin_enter"]
-      this.mode_edit.available_modes = ["write", "annotate", "portal",
+      this.mode_edit.available_modes = ["write", "annotate", "portal", "name_thing",
                                         "password", "chat", "study", "play",
                                         "admin_enter"]
       this.mode = this.mode_waiting_for_server;
@@ -613,20 +619,46 @@ let tui = {
     if (this.mode.name == 'control_tile_draw') {
         tui.log_msg('@ finished tile protection drawing.')
     }
-    this.inputEl.focus();
-    this.map_mode = 'terrain + things';
     this.tile_draw = false;
     if (mode_name == 'admin_enter' && this.is_admin) {
         mode_name = 'admin';
+    } else if (mode_name == 'name_thing') {
+        let player_position = game.things[game.player_id].position;
+        let thing_id = null;
+        for (let t_id in game.things) {
+            if (t_id == game.player_id) {
+                continue;
+            }
+            let t = game.things[t_id];
+            if (player_position[0] == t.position[0] && player_position[1] == t.position[1]) {
+                thing_id = t_id;
+                break;
+            }
+        }
+        if (!thing_id) {
+            terminal.blink_screen();
+            this.log_msg('? not standing over thing');
+            return;
+        } else {
+            this.selected_thing_id = thing_id;
+        }
     };
     this.mode = this['mode_' + mode_name];
+    if (["control_tile_draw", "control_tile_type", "control_pw_type"].includes(this.mode.name)) {
+        this.map_mode = 'protections';
+    } else if (this.mode.name != "edit") {
+        this.map_mode = 'terrain + things';
+    };
+    if (this.mode.has_input_prompt || this.mode.is_single_char_entry) {
+        this.inputEl.focus();
+    }
     if (game.player_id in game.things && (this.mode.shows_info || this.mode.name == 'control_tile_draw')) {
         explorer.position = game.things[game.player_id].position;
         if (this.mode.shows_info) {
             explorer.query_info();
         }
     }
-    this.empty_input();
+    this.inputEl.value = "";
     this.restore_input_values();
     for (let el of document.getElementsByTagName("button")) {
         el.disabled = true;
@@ -676,6 +708,8 @@ let tui = {
         document.getElementById("switch_to_write").disabled = false;
         document.getElementById("switch_to_portal").disabled = false;
         document.getElementById("switch_to_password").disabled = false;
+        document.getElementById("switch_to_name_thing").disabled = false;
+        document.getElementById("toggle_map_mode").disabled = false;
     } else if (this.mode.name == 'admin') {
         document.getElementById("switch_to_control_pw_type").disabled = false;
         document.getElementById("switch_to_control_tile_type").disabled = false;
@@ -714,28 +748,26 @@ let tui = {
           let info = explorer.info_db[explorer.position];
           if (info != "(none)") {
               this.inputEl.value = info;
-              this.recalc_input_lines();
           }
       } else if (this.mode.name == 'portal' && explorer.position in game.portals) {
           let portal = game.portals[explorer.position]
           this.inputEl.value = portal;
-          this.recalc_input_lines();
       } else if (this.mode.name == 'password') {
           this.inputEl.value = this.password;
-          this.recalc_input_lines();
+      } else if (this.mode.name == 'name_thing') {
+          let t = game.get_thing(this.selected_thing_id);
+          if (t && t.name_) {
+              this.inputEl.value = t.name_;
+          }
       }
   },
-  empty_input: function(str) {
-      this.inputEl.value = "";
+  recalc_input_lines: function() {
       if (this.mode.has_input_prompt) {
-          this.recalc_input_lines();
+          let _ = null;
+          [this.input_lines, _] = this.msg_into_lines_of_width(this.input_prompt + this.inputEl.value, this.window_width);
       } else {
-          this.height_input = 0;
+          this.input_lines = [];
       }
-  },
-  recalc_input_lines: function() {
-      let _ = null;
-      [this.input_lines, _] = this.msg_into_lines_of_width(this.input_prompt + this.inputEl.value, this.window_width);
       this.height_input = this.input_lines.length;
   },
   msg_into_lines_of_width: function(msg, width) {
@@ -809,9 +841,8 @@ let tui = {
             line = [];
             j = 0;
         };
-        if (['edit', 'write', 'control_tile_draw',
-             'control_tile_type'].includes(this.mode.name)) {
-            line.push(game.map[i] + game.map_control[i]);
+        if (this.map_mode == 'protections') {
+            line.push(game.map_control[i] + ' ');
         } else {
             line.push(game.map[i] + ' ');
         }
@@ -842,8 +873,11 @@ let tui = {
             used_positions.push(t.position.toString());
         };
     }
+    let player = game.things[game.player_id];
     if (tui.mode.shows_info || tui.mode.name == 'control_tile_draw') {
         map_lines_split[explorer.position[0]][explorer.position[1]] = '??';
+    } else if (tui.map_mode != 'terrain + things') {
+        map_lines_split[player.position[0]][player.position[1]] = '??';
     }
     let map_lines = []
     if (game.map_geometry == 'Square') {
@@ -862,9 +896,8 @@ let tui = {
         };
     }
     let window_center = [terminal.rows / 2, this.window_width / 2];
-    let player = game.things[game.player_id];
     let center_position = [player.position[0], player.position[1]];
-    if (tui.mode.shows_info) {
+    if (tui.mode.shows_info || tui.mode.name == 'control_tile_draw') {
         center_position = [explorer.position[0], explorer.position[1]];
     }
     center_position[1] = center_position[1] * 2;
@@ -966,9 +999,13 @@ let tui = {
           content += '\n';
       } else if (this.mode.name == 'edit') {
           content += "Available actions:\n";
+          if (game.tasks.includes('MOVE')) {
+              content += "[" + movement_keys_desc + "] – move player\n";
+          }
           if (game.tasks.includes('FLATTEN_SURROUNDINGS')) {
               content += "[" + tui.keys.flatten + "] – flatten surroundings\n";
           }
+          content += '[' + this.keys.toggle_map_mode + '] – toggle map view\n';
           content += '\n';
       } else if (this.mode.name == 'control_tile_draw') {
           content += "Available actions:\n";
@@ -1004,13 +1041,16 @@ let tui = {
           tui.map_mode = 'terrain + annotations';
       } else if (tui.map_mode == 'terrain + annotations') {
           tui.map_mode = 'terrain + things';
-      } else {
+      } else if (tui.map_mode == 'terrain + things') {
+          tui.map_mode = 'protections';
+      } else if (tui.map_mode == 'protections') {
           tui.map_mode = 'terrain only';
       }
   },
   full_refresh: function() {
     this.links = {};
     terminal.drawBox(0, 0, terminal.rows, terminal.cols);
+    this.recalc_input_lines();
     if (this.mode.is_intro) {
         this.draw_history();
         this.draw_input();
@@ -1209,7 +1249,6 @@ tui.inputEl.addEventListener('input', (event) => {
         if (tui.inputEl.value.length > max_length) {
             tui.inputEl.value = tui.inputEl.value.slice(0, max_length);
         };
-        tui.recalc_input_lines();
     } else if (tui.mode.name == 'write' && tui.inputEl.value.length > 0) {
         server.send(["TASK:WRITE", tui.inputEl.value[0], tui.password]);
         tui.switch_mode('edit');
@@ -1226,7 +1265,7 @@ tui.inputEl.addEventListener('keydown', (event) => {
     }
     if (tui.mode.has_input_prompt && event.key == 'Enter' && tui.inputEl.value == '/help') {
         tui.show_help = true;
-        tui.empty_input();
+        tui.inputEl.value = "";
         tui.restore_input_values();
     } else if (!tui.mode.has_input_prompt && event.key == tui.keys.help
                && !tui.mode.is_single_char_entry) {
@@ -1234,7 +1273,7 @@ tui.inputEl.addEventListener('keydown', (event) => {
     } else if (tui.mode.name == 'login' && event.key == 'Enter') {
         tui.login_name = tui.inputEl.value;
         server.send(['LOGIN', tui.inputEl.value]);
-        tui.empty_input();
+        tui.inputEl.value = "";
     } else if (tui.mode.name == 'control_pw_pw' && event.key == 'Enter') {
         if (tui.inputEl.value.length == 0) {
             tui.log_msg('@ aborted');
@@ -1247,6 +1286,12 @@ tui.inputEl.addEventListener('keydown', (event) => {
     } else if (tui.mode.name == 'portal' && event.key == 'Enter') {
         explorer.set_portal(tui.inputEl.value);
         tui.switch_mode('edit');
+    } else if (tui.mode.name == 'name_thing' && event.key == 'Enter') {
+        if (tui.inputEl.value.length == 0) {
+            tui.inputEl.value = " ";
+        }
+        server.send(["THING_NAME", tui.selected_thing_id, tui.inputEl.value]);
+        tui.switch_mode('edit');
     } else if (tui.mode.name == 'annotate' && event.key == 'Enter') {
         explorer.annotate(tui.inputEl.value);
         tui.switch_mode('edit');
@@ -1302,7 +1347,7 @@ tui.inputEl.addEventListener('keydown', (event) => {
         } else if (tui.inputEl.valuelength > 0) {
                server.send(['ALL', tui.inputEl.value]);
         }
-        tui.empty_input();
+        tui.inputEl.value = "";
     } else if (tui.mode.name == 'play') {
           if (tui.mode.mode_switch_on_key(event)) {
               null;
@@ -1347,6 +1392,8 @@ tui.inputEl.addEventListener('keydown', (event) => {
         } else if (event.key === tui.keys.flatten
                    && game.tasks.includes('FLATTEN_SURROUNDINGS')) {
             server.send(["TASK:FLATTEN_SURROUNDINGS", tui.password]);
+        } else if (event.key == tui.keys.toggle_map_mode) {
+            tui.toggle_map_mode();
         }
     }
     tui.full_refresh();