home · contact · privacy
Improved input prompt handling.
[plomrogue2-experiments] / new2 / rogue_chat_nocanvas_monochrome.html
index 43c7ce85d5f87823976a5a2ecdbffbcbfa3a3d64..7554e57ea82955e39cead0c594b30254ff1db688 100644 (file)
@@ -11,8 +11,12 @@ let websocket_location = "ws://localhost:8000";
 let terminal = {
   rows: 24,
   cols: 80,
+  foreground: 'white',
+  background: 'black',
   initialize: function() {
     this.pre_el = document.getElementById("terminal");
+    this.pre_el.style.color = this.foreground;
+    this.pre_el.style.backgroundColor = this.background;
     this.content = [];
       let line = []
     for (let y = 0, x = 0; y <= this.rows; x++) {
@@ -28,6 +32,14 @@ let terminal = {
         line.push(' ');
     }
   },
+  blink_screen: function() {
+      this.pre_el.style.color = this.background;
+      this.pre_el.style.backgroundColor = this.foreground;
+      setTimeout(() => {
+          this.pre_el.style.color = this.foreground;
+          this.pre_el.style.backgroundColor = this.background;
+      }, 100);
+  },
   refresh: function() {
       let pre_string = '';
       for (let y = 0; y < this.rows; y++) {
@@ -145,33 +157,53 @@ let unparser = {
     }
 }
 
+class Mode {
+    constructor(name, has_input_prompt=false, shows_annotations=false) {
+        this.name = name;
+        this.has_input_prompt = has_input_prompt;
+        this.shows_annotations = shows_annotations;
+    }
+}
+let mode_chat = new Mode('chat', true, false);
+let mode_annotate = new Mode('annotate', true, true);
+let mode_play = new Mode('play', false, false);
+let mode_study = new Mode('study', false, true);
+let mode_edit = new Mode('edit', false, false);
+
 let tui = {
-  mode: 'chat',
+  mode: mode_chat,
   log: [],
+  input_prompt: '> ',
   input: '',
   input_lines: [],
   window_width: terminal.cols / 2,
   height_turn_line: 1,
+  height_mode_line: 1,
   height_input: 1,
   init: function() {
       this.recalc_input_lines();
+      this.height_header = this.height_turn_line + this.height_mode_line;
   },
-  switch_mode: function(mode_name, keep_pos=false) {
-    if (mode_name == 'study' && !keep_pos) {
+  switch_mode: function(mode, keep_pos=false) {
+    if (mode == mode_study && !keep_pos) {
       explorer.position = game.things[game.player_id];
     }
-    this.mode = mode_name;
+    this.mode = mode;
     this.empty_input();
     this.full_refresh();
   },
+  draw_mode_line: function() {
+      terminal.drawBox(1, this.window_width, this.height_mode_line, this.window_width);
+      terminal.write(1, this.window_width, 'MODE ' + this.mode.name);
+  },
   draw_history: function() {
-    if (terminal.rows <= this.height_turn_line + this.height_input) {
+    if (terminal.rows <= this.height_header + this.height_input) {
         return;
     }
-    terminal.drawBox(this.height_turn_line, this.window_width, terminal.rows - this.height_turn_line - this.height_input, this.window_width);
-      for (let y = terminal.rows - this.height_input - this.height_turn_line,
+    terminal.drawBox(this.height_header, this.window_width, terminal.rows - this.height_header - this.height_input, this.window_width);
+      for (let y = terminal.rows - 1 - this.height_input,
                i = this.log.length - 1;
-           y >= this.height_turn_line && i >= 0;
+           y >= this.height_header && i >= 0;
            y--, i--) {
           terminal.write(y, this.window_width, this.log[i]);
       }
@@ -199,7 +231,7 @@ let tui = {
             center_pos = t;
         }
     };
-    if (tui.mode == 'study' || tui.mode == 'annotate') {
+    if (tui.mode.shows_annotations) {
         map_lines[explorer.position[0]][explorer.position[1]] = '?';
         center_pos = explorer.position;
     }
@@ -220,30 +252,34 @@ let tui = {
   },
   empty_input: function(str) {
       this.input = "";
-      if (this.mode == 'annotate' || this.mode == 'chat') {
+      if (this.mode.has_input_prompt) {
           this.recalc_input_lines();
       } else {
           this.height_input = 0;
       }
   },
   add_to_input: function(str) {
-      if (this.input.length + str.length > this.window_width * terminal.rows) {
+      if (this.input_prompt.length + this.input.length + str.length > this.window_width * terminal.rows) {
           return;
       }
       this.input += str;
       this.recalc_input_lines();
   },
   recalc_input_lines: function() {
-      this.input_lines = this.msg_into_lines_of_width("> " + this.input, this.window_width);
+      this.input_lines = this.msg_into_lines_of_width(this.input_prompt + this.input, this.window_width);
       this.height_input = this.input_lines.length;
   },
   shorten_input: function() {
-      this.input = tui.input.slice(0, -1);
-      this.recalc_input_lines();
+      if (this.input.length == 0) {
+          terminal.blink_screen();
+      } else {
+          this.input = tui.input.slice(0, -1);
+          this.recalc_input_lines();
+      }
   },
   draw_input: function() {
     terminal.drawBox(terminal.rows - this.height_input, this.window_width, this.height_input, this.window_width);
-    if (this.mode == 'chat' || this.mode == 'annotate') {
+    if (this.mode.has_input_prompt) {
         for (let y = terminal.rows - this.height_input, i = 0; y < terminal.rows && i < this.input_lines.length; y++, i++) {
             terminal.write(y, this.window_width, this.input_lines[i]);
         }
@@ -300,16 +336,17 @@ let tui = {
     tui.log_msg("");
   },
   draw_info: function() {
-    terminal.drawBox(this.height_turn_line, this.window_width, terminal.rows - this.height_turn_line - this.height_input, this.window_width);
+    terminal.drawBox(this.height_header, this.window_width, terminal.rows - this.height_header - this.height_input, this.window_width);
     let lines = this.msg_into_lines_of_width(explorer.get_info(), this.window_width);
-    for (let y = this.height_turn_line, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
+    for (let y = this.height_header, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
       terminal.write(y, this.window_width, lines[i]);
     }
   },
   full_refresh: function() {
     this.draw_map();
     this.draw_turn_line();
-    if (this.mode == 'study' || this.mode == 'annotate') {
+    this.draw_mode_line();
+    if (this.mode.shows_annotations) {
       this.draw_info();
     } else {
       this.draw_history();
@@ -345,7 +382,7 @@ server.websocket.onmessage = function (event) {
     game.map = tokens[2]
   } else if (tokens[0] === 'GAME_STATE_COMPLETE') {
     explorer.empty_info_db();
-    if (tui.mode == 'study') {
+    if (tui.mode == mode_study) {
       explorer.query_info();
     }
     tui.draw_turn_line();
@@ -365,6 +402,8 @@ server.websocket.onmessage = function (event) {
   } else if (tokens[0] === 'UNHANDLED_INPUT') {
      tui.log_msg('? unknown command');
      tui.refresh();
+  } else if (tokens[0] === 'PLAY_ERROR') {
+     terminal.blink_screen();
   } else if (tokens[0] === 'ARGUMENT_ERROR') {
      tui.log_msg('? syntax error: ' + tokens[1]);
      tui.refresh();
@@ -408,14 +447,14 @@ let explorer = {
     },
     update_info_db: function(yx, str) {
         this.info_db[yx] = str;
-        if (tui.mode == 'study') {
+        if (tui.mode == mode_study) {
             tui.draw_info();
             tui.refresh();
         }
     },
     empty_info_db: function() {
         this.info_db = {};
-        if (tui.mode == 'study') {
+        if (tui.mode == mode_study) {
             tui.draw_info();
             tui.refresh();
         }
@@ -439,54 +478,55 @@ let explorer = {
 }
 
 document.addEventListener('keydown', (event) => {
-    if (tui.mode == 'chat') {
-        if (event.key.length === 1) {
-            tui.add_to_input(event.key);
-            tui.full_refresh();
-        } else if (event.key == 'Backspace') {
-            tui.shorten_input();
-            tui.full_refresh();
-        } else if (event.key == 'Enter') {
-            let [tokens, token_starts] = parser.tokenize(tui.input);
-            if (tokens.length > 0 && tokens[0].length > 0) {
-                if (tokens[0][0] == ':') {
-                    if (tokens[0] == ':play' || tokens[0] == ':p') {
-                        tui.switch_mode('play');
-                    } else if (tokens[0] == ':study' || tokens[0] == ':s') {
-                        tui.switch_mode('study');
-                    } else if (tokens[0] == ':help') {
-                        tui.log_help();
-                        tui.refresh();
-                    } else if (tokens[0] == ':login') {
-                        if (tokens.length > 1) {
-                            server.send(['LOGIN', tokens[1]]);
-                        } else {
-                            tui.log_msg('? need login name');
-                        }
-                    } else if (tokens[0] == ':msg') {
-                        if (tokens.length > 2) {
-                            let msg = tui.input.slice(token_starts[2]);
-                            server.send(['QUERY', tokens[1], msg]);
-                        } else {
-                            tui.log_msg('? need message target and message');
-                        }
+    if (tui.mode.has_input_prompt && event.key.length === 1) {
+        tui.add_to_input(event.key);
+        tui.full_refresh();
+    } else if (tui.mode.has_input_prompt && event.key == 'Backspace') {
+        tui.shorten_input();
+        tui.full_refresh();
+    } else if (tui.mode == mode_annotate && event.key == 'Enter') {
+        explorer.annotate(tui.input);
+        tui.switch_mode(mode_study, true);
+    } else if (tui.mode == mode_chat && event.key == 'Enter') {
+        let [tokens, token_starts] = parser.tokenize(tui.input);
+        if (tokens.length > 0 && tokens[0].length > 0) {
+            if (tokens[0][0] == ':') {
+                if (tokens[0] == ':play' || tokens[0] == ':p') {
+                    tui.switch_mode(mode_play);
+                } else if (tokens[0] == ':study' || tokens[0] == ':s') {
+                    tui.switch_mode(mode_study);
+                } else if (tokens[0] == ':help') {
+                    tui.log_help();
+                    tui.refresh();
+                } else if (tokens[0] == ':login') {
+                    if (tokens.length > 1) {
+                        server.send(['LOGIN', tokens[1]]);
                     } else {
-                        tui.log_msg('? unknown command');
+                        tui.log_msg('? need login name');
+                    }
+                } else if (tokens[0] == ':msg') {
+                    if (tokens.length > 2) {
+                        let msg = tui.input.slice(token_starts[2]);
+                        server.send(['QUERY', tokens[1], msg]);
+                    } else {
+                        tui.log_msg('? need message target and message');
                     }
                 } else {
-                    server.send(['ALL', tui.input]);
+                    tui.log_msg('? unknown command');
                 }
+            } else {
+                server.send(['ALL', tui.input]);
             }
-            tui.empty_input();
-            tui.full_refresh();
         }
-      } else if (tui.mode == 'play') {
+        tui.empty_input();
+        tui.full_refresh();
+      } else if (tui.mode == mode_play) {
           if (event.key === 'c') {
-              tui.switch_mode('chat');
+              tui.switch_mode(mode_chat);
           } else if (event.key === 'e') {
-              tui.switch_mode('edit');
+              tui.switch_mode(mode_edit);
           } else if (event.key === '?') {
-              tui.switch_mode('study');
+              tui.switch_mode(mode_study);
           } else if (event.key === 'F1') {
               tui.log_help();
               tui.refresh();
@@ -501,16 +541,16 @@ document.addEventListener('keydown', (event) => {
           } else if (event.key === 's') {
               server.send(['TASK:MOVE', 'DOWN']);
           };
-    } else if (tui.mode == 'edit') {
+    } else if (tui.mode == mode_edit) {
         if (event.key != "Shift" && event.key.length == 1) {
             server.send(["TASK:WRITE", event.key]);
-            tui.switch_mode('play');
+            tui.switch_mode(mode_play);
         }
-    } else if (tui.mode == 'study') {
+    } else if (tui.mode == mode_study) {
         if (event.key === 'c') {
-            tui.switch_mode('chat');
+            tui.switch_mode(mode_chat);
         } else if (event.key == 'p') {
-            tui.switch_mode('play');
+            tui.switch_mode(mode_play);
         } else if (event.key === 'a') {
              explorer.move('left');
         } else if (event.key === 'd') {
@@ -520,21 +560,10 @@ document.addEventListener('keydown', (event) => {
         } else if (event.key === 's') {
              explorer.move('down');
         } else if (event.key === 'A') {
-          tui.switch_mode('annotate');
+          tui.switch_mode(mode_annotate);
           tui.draw_info();
           tui.refresh();
         };
-    } else if (tui.mode == 'annotate') {
-        if (event.key.length === 1) {
-            tui.add_to_input(event.key);
-            tui.full_refresh();
-        } else if (event.key == 'Backspace') {
-            tui.shorten_input();
-            tui.full_refresh();
-        } else if (event.key == 'Enter') {
-            explorer.annotate(tui.input);
-            tui.switch_mode('study', true);
-        }
     }
 }, false);
 </script>