Browse Source

Updated isNL with '[K' code.

This should allow lines to be property broken, (like when someone
enters/leaves a sector for example).

Added links to the ANSI code docs.
Updated so we can start checking "sane" prompts to activate
the proxy.  :)
(And some will be "I'm here, but I can't do anything useful
for you.")
Steve Thielemann 5 năm trước cách đây
mục cha
commit
88f22270c5
1 tập tin đã thay đổi với 7 bổ sung2 xóa
  1. 7 2
      tcp-proxy.py

+ 7 - 2
tcp-proxy.py

@@ -45,14 +45,16 @@ def merge(color_string):
     return color_string.replace("m\x1b[", ";")
 
 
+# https://en.wikipedia.org/wiki/ANSI_escape_code
+
 # Cleans all ANSI
 cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
 
 # Looks for ANSI (that should be considered to be a newline)
 # This needs to see what is send when something enters / leaves
 # the player's current sector.  (That doesn't work/isn't
-# detected.  NNY!)
-makeNL = re.compile(r"\x1b\[[0-9;]*[J]")
+# detected.  NNY!)  It is "\x1b[K" Erase in Line!
+makeNL = re.compile(r"\x1b\[[0-9;]*[JK]")
 
 
 def treatAsNL(line):
@@ -426,6 +428,9 @@ class Player(protocol.Protocol):
             self.queue_player.put(chunk)
 
         if chunk == b"~":
+            # Selection (? for menu):   (the game server menu)
+            # Enter your choice:  (game menu)
+            # Command [TL=00:00:00]:[1800] (?=Help)? :  <- YES!
             self.observer.emit("hotkey", None)
 
     def connectionLost(self, why):