home · contact · privacy
In web client, enable keyboard control except if in outer HTML input field.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 13 Dec 2020 01:51:22 +0000 (02:51 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 13 Dec 2020 01:51:22 +0000 (02:51 +0100)
rogue_chat.html

index 0ba8cf08875d23c9c6d452087bc8e0913353b998..073874047d1529d3b17a52b02e387207a6e731a3 100644 (file)
@@ -16,9 +16,6 @@ terminal rows: <input id="n_rows" type="number" step=4 min=24 value=24 />
 </div>
 <pre id="terminal"></pre>
 <textarea id="input" style="opacity: 0; width: 0px;"></textarea>
-<div>
-keyboard input/control: <span id="keyboard_control"></span>
-</div>
 <h3>button controls for hard-to-remember keybindings</h3>
 <table id="move_table" style="float: left">
   <tr>
@@ -1512,7 +1509,9 @@ tui.inputEl.addEventListener('input', (event) => {
     tui.full_refresh();
 }, false);
 document.onclick = function() {
-    tui.show_help = false;
+    if (!tui.mode.is_single_char_entry) {
+        tui.show_help = false;
+    }
 };
 tui.inputEl.addEventListener('keydown', (event) => {
     tui.show_help = false;
@@ -1715,18 +1714,9 @@ window.setInterval(function() {
     }
 }, 1000);
 window.setInterval(function() {
-    let val = "?";
-    let span_decoration = "none";
-    if (document.activeElement == tui.inputEl) {
-        val = "on (click outside terminal to change)";
-    } else {
-        val = "off (click into terminal to change)";
-        span_decoration = "line-through";
+    if (document.activeElement.tagName.toLowerCase() != 'input') {
+        tui.inputEl.focus();
     };
-    document.getElementById("keyboard_control").textContent = val;
-    for (const span of document.querySelectorAll('.keyboard_controlled')) {
-        span.style.textDecoration = span_decoration;
-    }
 }, 100);
 document.getElementById("terminal").onclick = function() {
     tui.inputEl.focus();
@@ -1775,14 +1765,20 @@ for (const move_button of document.querySelectorAll('[id*="_move_"]')) {
         continue;
     };
     let direction = move_button.id.split('_')[2].toUpperCase();
-    move_button.onclick = function() {
-        if (tui.mode.available_actions.includes("move")) {
-            server.send(['TASK:MOVE', direction]);
-        } else if (tui.mode.available_actions.includes("move_explorer")) {
-            explorer.move(direction);
-            tui.full_refresh();
-        };
+    let move_repeat;
+    move_button.onmousedown = function() {
+        move_repeat = window.setInterval(function() {
+            if (tui.mode.available_actions.includes("move")) {
+                server.send(['TASK:MOVE', direction]);
+            } else if (tui.mode.available_actions.includes("move_explorer")) {
+                explorer.move(direction);
+                tui.full_refresh();
+            };
+        }, 100);
     };
+    move_button.onmouseup = function() {
+        window.clearInterval(move_repeat);
+    }
 };
 </script>
 </body></html>