home · contact · privacy
Make command char editable.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 2 Nov 2020 13:38:44 +0000 (14:38 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 2 Nov 2020 13:38:44 +0000 (14:38 +0100)
new2/rogue_chat.py
new2/rogue_chat_nocanvas_monochrome.html

index 429485051a5a014afb7e1bd8c949b04498ddee54..d2f0a244014b8b3436182f22f9b708bf8c6bcaad 100755 (executable)
@@ -10,5 +10,5 @@ if len(sys.argv) != 2:
 savefile = sys.argv[1]
 game = Game(savefile)
 game.io.start_loop()
-game.io.start_server(8001, PlomWebSocketServer)
+game.io.start_server(8000, PlomWebSocketServer)
 game.io.start_server(5000, PlomTCPServer)
index d06eb30e6d44a90a929f22f6b8ea21c9f446059c..a42387f031f08f8906b861779520609a06923b07 100644 (file)
@@ -10,6 +10,10 @@ movement: <select id="WASD_selector" name="WASD_selector" >
 </select>
 rows: <input id="n_rows" type="number" step=2 min=10 value=24 />
 cols: <input id="n_cols" type="number" step=4 min=20 value=80 />
+command character: <select id="command_char"" >
+<option value=":" selected>:</option>
+<option value="/">/</option>
+</select>
 </div>
 <pre id="terminal" style="display: inline-block;"></pre>
 <textarea id="input" style="opacity: 0; width: 0px;"></textarea>
@@ -20,6 +24,7 @@ let websocket_location = "ws://localhost:8000";
 let wasd_selector = document.getElementById("WASD_selector");
 let rows_selector = document.getElementById("n_rows");
 let cols_selector = document.getElementById("n_cols");
+let command_char_selector = document.getElementById("command_char");
 
 let terminal = {
   foreground: 'white',
@@ -150,7 +155,7 @@ let server = {
         };
         this.websocket.onclose = function(event) {
             tui.log_msg("@ server disconnected :(");
-            tui.log_msg("@ hint: try the ':reconnect' command");
+            tui.log_msg("@ hint: try the '" + command_char_selector.value + "reconnect' command");
         };
        this.websocket.onmessage = this.handle_event;
     },
@@ -358,11 +363,11 @@ let tui = {
   log_help: function() {
     this.log_msg("HELP:");
     this.log_msg("chat mode commands:");
-    this.log_msg("  :nick NAME - re-name yourself to NAME");
-    this.log_msg("  :msg USER TEXT - send TEXT to USER");
-    this.log_msg("  :help - show this help");
-    this.log_msg("  :p or :play - switch to play mode");
-    this.log_msg("  :? or :study - switch to study mode");
+    this.log_msg("  " + command_char_selector.value + "nick NAME - re-name yourself to NAME");
+    this.log_msg("  " + command_char_selector.value + "msg USER TEXT - send TEXT to USER");
+    this.log_msg("  " + command_char_selector.value + "help - show this help");
+    this.log_msg("  " + command_char_selector.value + "p or " + command_char_selector.value + "play - switch to play mode");
+    this.log_msg("  " + command_char_selector.value + "? or " + command_char_selector.value + "study - switch to study mode");
     this.log_msg("commands common to study and play mode:");
     this.log_msg("  " + this.movement_keys_desc + " - move");
     this.log_msg("  c - switch to chat mode");
@@ -600,27 +605,27 @@ tui.inputEl.addEventListener('keydown', (event) => {
     } else if (tui.mode == mode_chat && event.key == 'Enter') {
         let [tokens, token_starts] = parser.tokenize(tui.inputEl.value);
         if (tokens.length > 0 && tokens[0].length > 0) {
-            if (tokens[0][0] == ':') {
-                if (tokens[0] == ':play' || tokens[0] == ':p') {
+            if (tokens[0][0] == command_char_selector.value) {
+                if (tokens[0].slice(1) == 'play' || tokens[0].slice(1) == 'p') {
                     tui.switch_mode(mode_play);
-                } else if (tokens[0] == ':study' || tokens[0] == ':?') {
+                } else if (tokens[0].slice(1) == 'study' || tokens[0].slice(1) == '?') {
                     tui.switch_mode(mode_study);
-                } else if (tokens[0] == ':help') {
+                } else if (tokens[0].slice(1) == 'help') {
                     tui.log_help();
-                } else if (tokens[0] == ':nick') {
+                } else if (tokens[0].slice(1) == 'nick') {
                     if (tokens.length > 1) {
                         server.send(['LOGIN', tokens[1]]);
                     } else {
                         tui.log_msg('? need login name');
                     }
-                } else if (tokens[0] == ':msg') {
+                } else if (tokens[0].slice(1) == 'msg') {
                     if (tokens.length > 2) {
                         let msg = tui.inputEl.value.slice(token_starts[2]);
                         server.send(['QUERY', tokens[1], msg]);
                     } else {
                         tui.log_msg('? need message target and message');
                     }
-                } else if (tokens[0] == ':reconnect') {
+                } else if (tokens[0].slice(1) == 'reconnect') {
                    if (tokens.length > 1) {
                         server.reconnect_to(tokens[1]);
                    } else {
@@ -701,7 +706,7 @@ cols_selector.addEventListener('input', function() {
     tui.full_refresh();
 }, false);
 window.setInterval(function() {
-    if (!(['input', 'n_cols', 'n_rows', 'WASD_selector'].includes(document.activeElement.id))) {
+    if (!(['input', 'n_cols', 'n_rows', 'WASD_selector', 'command_char'].includes(document.activeElement.id))) {
         tui.inputEl.focus();
     }
 }, 100);