|
@@ -20,7 +20,7 @@ from pprint import pformat
|
|
|
import yaml
|
|
|
|
|
|
|
|
|
-def config_load(filename):
|
|
|
+def config_load(filename: str):
|
|
|
global config
|
|
|
with open(filename, "r") as fp:
|
|
|
config = yaml.safe_load(fp)
|
|
@@ -49,7 +49,7 @@ version = check_output(
|
|
|
).strip()
|
|
|
|
|
|
|
|
|
-def merge(color_string):
|
|
|
+def merge(color_string: str):
|
|
|
""" Given a string of colorama ANSI, merge them if you can. """
|
|
|
return color_string.replace("m\x1b[", ";")
|
|
|
|
|
@@ -66,13 +66,13 @@ cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
|
|
|
makeNL = re.compile(r"\x1b\[[0-9;]*[JK]")
|
|
|
|
|
|
|
|
|
-def treatAsNL(line):
|
|
|
+def treatAsNL(line: str):
|
|
|
""" Replace any ANSI codes that would be better understood as newlines. """
|
|
|
global makeNL
|
|
|
return makeNL.sub("\n", line)
|
|
|
|
|
|
|
|
|
-def cleanANSI(line):
|
|
|
+def cleanANSI(line: str):
|
|
|
""" Remove all ANSI codes. """
|
|
|
global cleaner
|
|
|
return cleaner.sub("", line)
|
|
@@ -103,7 +103,7 @@ class Game(protocol.Protocol):
|
|
|
self.setPlayerReceived()
|
|
|
self.observer.connect("user-game", self.show_game)
|
|
|
|
|
|
- def show_game(self, game):
|
|
|
+ def show_game(self, game: tuple):
|
|
|
self.usergame = game
|
|
|
log.msg("## User-Game:", game)
|
|
|
if game[1] is None:
|
|
@@ -111,12 +111,6 @@ class Game(protocol.Protocol):
|
|
|
# start the save
|
|
|
coiterate(self.gamedata.save())
|
|
|
self.gamedata = None
|
|
|
- if hasattr(self, "portdata"):
|
|
|
- log.msg("Clearing out old portdata.")
|
|
|
- self.portdata = {}
|
|
|
- if hasattr(self, "warpdata"):
|
|
|
- log.msg("Clearing out old warpdata.")
|
|
|
- self.warpdata = {}
|
|
|
else:
|
|
|
# Load the game data (if any)
|
|
|
self.gamedata = GameData(game)
|
|
@@ -143,7 +137,7 @@ class Game(protocol.Protocol):
|
|
|
log.msg(">> [{0}]".format(chunk.decode("utf-8", "ignore")))
|
|
|
self.setPlayerReceived()
|
|
|
|
|
|
- def warpline(self, line):
|
|
|
+ def warpline(self, line: str):
|
|
|
log.msg("warp:", line)
|
|
|
# 1 > 3 > 5 > 77 > 999
|
|
|
last_sector = self.lastwarp
|
|
@@ -156,7 +150,7 @@ class Game(protocol.Protocol):
|
|
|
last_sector = sector
|
|
|
self.lastwarp = sector
|
|
|
|
|
|
- def cimline(self, line):
|
|
|
+ def cimline(self, line: str):
|
|
|
# log.msg(self.linestate, ":", line)
|
|
|
if line[-1] == "%":
|
|
|
self.linestate = "portcim"
|
|
@@ -206,7 +200,7 @@ class Game(protocol.Protocol):
|
|
|
else:
|
|
|
self.linestate = "cim"
|
|
|
|
|
|
- def sectorline(self, line):
|
|
|
+ def sectorline(self, line: str):
|
|
|
log.msg("sector:", self.current_sector, ':', line)
|
|
|
if line.startswith('Beacon : '):
|
|
|
pass # get beacon text
|
|
@@ -260,7 +254,7 @@ class Game(protocol.Protocol):
|
|
|
self.sector_state = 'normal'
|
|
|
self.linestate = ''
|
|
|
|
|
|
- def portline(self, line):
|
|
|
+ def portline(self, line: str):
|
|
|
# Map these items to which keys
|
|
|
log.msg("portline({0}): {1}".format(self.current_sector, line))
|
|
|
mapto = { 'Fuel': 'fuel', 'Organics': 'org', 'Equipment': 'equ'}
|
|
@@ -274,7 +268,7 @@ class Game(protocol.Protocol):
|
|
|
self.gamedata.set_port(self.current_sector, data)
|
|
|
# log.msg("NOW: {0}".format(self.gamedata.ports[self.current_sector]))
|
|
|
|
|
|
- def lineReceived(self, line):
|
|
|
+ def lineReceived(self, line: str):
|
|
|
""" line received from the game. """
|
|
|
if "log_lines" in config and config["log_lines"]:
|
|
|
log.msg("<< [{0}]".format(line))
|
|
@@ -431,7 +425,7 @@ class GlueFactory(protocol.ClientFactory):
|
|
|
maxDelay = 10
|
|
|
protocol = Game
|
|
|
|
|
|
- def __init__(self, player):
|
|
|
+ def __init__(self, player: Player):
|
|
|
self.player = player
|
|
|
self.queue_player = player.queue_player
|
|
|
self.queue_game = player.queue_game
|