home · contact · privacy
Add thing name editing.
[plomrogue2] / rogue_chat.html
index 68646f96a46f6b4f79df25f6acfd4197e6cf2d37..1ab5afc4a128984de673cc33b7e34d8847b1a113 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,6 +99,7 @@ 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" />
@@ -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 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.'
+        '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',
@@ -550,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),
@@ -562,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;
@@ -615,6 +622,26 @@ let tui = {
     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)) {
@@ -681,6 +708,7 @@ 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;
@@ -729,6 +757,12 @@ let tui = {
       } 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_;
+              this.recalc_input_lines();
+          }
       }
   },
   empty_input: function(str) {
@@ -1260,6 +1294,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');