|
@@ -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):
|