X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=rogue_chat.html;h=1b5f39d8f732f631f477b5dec8378349a21e8b4b;hb=ed297e4e19f8a83872d6345b86321e10aec019d4;hp=dfeeecdba69e2570d88c4ea1f08fafa512b2c14e;hpb=c7a3af00680ba0449310bbb7336a187dd4ed6bcf;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index dfeeecd..1b5f39d 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -58,6 +58,7 @@ keyboard input/control: + @@ -102,6 +103,7 @@ keyboard input/control:
  • open/close:
  • consume:
  • install: +
  • (un-)wear:
  • @@ -246,6 +248,7 @@ let key_descriptions = { 'door': 'open/close', 'consume': 'consume', 'install': '(un-)install', + 'wear': '(un-)wear', 'toggle_map_mode': 'toggle map view', 'toggle_tile_draw': 'toggle protection character drawing', 'hex_move_upleft': 'up-left', @@ -488,6 +491,9 @@ let server = { } else if (tokens[0] === 'THING_FACE') { let t = game.get_thing(tokens[1], false); t.face = tokens[2]; + } else if (tokens[0] === 'THING_HAT') { + let t = game.get_thing(tokens[1], false); + t.hat = tokens[2]; } else if (tokens[0] === 'THING_CHAR') { let t = game.get_thing(tokens[1], false); t.thing_char = tokens[2]; @@ -677,6 +683,7 @@ let tui = { 'move': 'MOVE', 'door': 'DOOR', 'install': 'INSTALL', + 'wear': 'WEAR', 'command': 'COMMAND', 'consume': 'INTOXICATE', }, @@ -686,8 +693,8 @@ let tui = { init: function() { this.mode_play.available_modes = ["chat", "study", "edit", "admin_enter", "command_thing", "take_thing"] - this.mode_play.available_actions = ["move", "drop_thing", - "teleport", "door", "consume", "install"]; + this.mode_play.available_actions = ["move", "drop_thing", "teleport", + "door", "consume", "install", "wear"]; this.mode_study.available_modes = ["chat", "play", "admin_enter", "edit"] this.mode_study.available_actions = ["toggle_map_mode", "move_explorer"]; this.mode_admin.available_modes = ["admin_thing_protect", "control_pw_type", @@ -1337,6 +1344,11 @@ let explorer = { protection = 'none'; } info_to_cache += " / protection: " + protection + "\n"; + if (t.hat) { + info_to_cache += t.hat.slice(0, 3) + '\n'; + info_to_cache += t.hat.slice(3, 6) + '\n'; + info_to_cache += t.hat.slice(6, 9) + '\n'; + } if (t.face) { info_to_cache += t.face.slice(0, 3) + '\n'; info_to_cache += t.face.slice(3, 6) + '\n'; @@ -1543,6 +1555,8 @@ tui.inputEl.addEventListener('keydown', (event) => { server.send(["TASK:DOOR"]); } else if (event.key === tui.keys.install && tui.task_action_on('install')) { server.send(["TASK:INSTALL"]); + } else if (event.key === tui.keys.install && tui.task_action_on('wear')) { + server.send(["TASK:WEAR"]); } else if (event.key in tui.movement_keys && tui.task_action_on('move')) { server.send(['TASK:MOVE', tui.movement_keys[event.key]]); } else if (event.key === tui.keys.teleport) { @@ -1665,6 +1679,9 @@ document.getElementById("consume").onclick = function() { document.getElementById("install").onclick = function() { server.send(['TASK:INSTALL']); }; +document.getElementById("wear").onclick = function() { + server.send(['TASK:WEAR']); +}; document.getElementById("teleport").onclick = function() { game.teleport(); };