فهرست منبع

More type hints.

Steve Thielemann 5 سال پیش
والد
کامیت
dcb83fa585
3فایلهای تغییر یافته به همراه19 افزوده شده و 25 حذف شده
  1. 5 5
      flexible.py
  2. 3 3
      galaxy.py
  3. 11 17
      tcp-proxy.py

+ 5 - 5
flexible.py

@@ -415,7 +415,7 @@ class CIMPortReport(object):
                     self.defer.callback(self.game.gamedata.ports)
                     self.defer.callback(self.game.gamedata.ports)
                     self.defer = None
                     self.defer = None
 
 
-    def game_line(self, line):
+    def game_line(self, line: str):
         if line == "" or line == ": ":
         if line == "" or line == ": ":
             return
             return
         if line == ": ENDINTERROG":
         if line == ": ENDINTERROG":
@@ -1030,7 +1030,7 @@ class ScriptPort(object):
         #     self.deactivate()
         #     self.deactivate()
         #     return
         #     return
 
 
-def color_pct(pct):
+def color_pct(pct: int):
     if pct > 50:
     if pct > 50:
         # green
         # green
         return "{0}{1:3}{2}".format( Fore.GREEN, pct, Style.RESET_ALL)
         return "{0}{1:3}{2}".format( Fore.GREEN, pct, Style.RESET_ALL)
@@ -1039,7 +1039,7 @@ def color_pct(pct):
     else:
     else:
         return "{0:3}".format(pct)
         return "{0:3}".format(pct)
 
 
-def port_pct(port):
+def port_pct(port: dict):
     # Make sure these exist in the port data given.
     # Make sure these exist in the port data given.
     if all( x in port for x in ['fuel', 'org', 'equ']):
     if all( x in port for x in ['fuel', 'org', 'equ']):
         return "{0},{1},{2}%".format(
         return "{0},{1},{2}%".format(
@@ -1049,10 +1049,10 @@ def port_pct(port):
     else:
     else:
         return "---,---,---%"
         return "---,---,---%"
 
 
-def port_show_part(sector, sector_port):
+def port_show_part(sector: int, sector_port: dict):
     return "{0:5} ({1}) {2}".format(sector, sector_port['port'], port_pct(sector_port))
     return "{0:5} ({1}) {2}".format(sector, sector_port['port'], port_pct(sector_port))
 
 
-def port_show(sector, sector_port, warp, warp_port):
+def port_show(sector: int, sector_port: dict, warp: int, warp_port: dict):
     sector_pct = port_pct(sector_port)
     sector_pct = port_pct(sector_port)
     warp_pct = port_pct(warp_port)
     warp_pct = port_pct(warp_port)
     return "{0} -=- {1}".format(
     return "{0} -=- {1}".format(

+ 3 - 3
galaxy.py

@@ -17,7 +17,7 @@ CLASSES_PORT = {v: k for k, v in PORT_CLASSES.items()}
 
 
 
 
 class GameData(object):
 class GameData(object):
-    def __init__(self, usergame):
+    def __init__(self, usergame: tuple):
         # Construct the GameData storage object
         # Construct the GameData storage object
         self.usergame = usergame
         self.usergame = usergame
         self.warps = {}
         self.warps = {}
@@ -106,7 +106,7 @@ class GameData(object):
                     yield
                     yield
         log.msg("Loaded {0} {1}/{2}".format(filename, len(self.ports), len(self.warps)))
         log.msg("Loaded {0} {1}/{2}".format(filename, len(self.ports), len(self.warps)))
 
 
-    def warp_to(self, source, *dest):
+    def warp_to(self, source: int, *dest):
         """ connect sector source to destination. 
         """ connect sector source to destination. 
         """
         """
         log.msg("Warp {0} to {1}".format(source, dest))
         log.msg("Warp {0} to {1}".format(source, dest))
@@ -117,7 +117,7 @@ class GameData(object):
             if d not in self.warps[source]:
             if d not in self.warps[source]:
                 self.warps[source].add(d)
                 self.warps[source].add(d)
 
 
-    def set_port(self, sector, data):
+    def set_port(self, sector: int, data: dict):
         log.msg("Port {0} : {1}".format(sector, data))
         log.msg("Port {0} : {1}".format(sector, data))
         if sector not in self.ports:
         if sector not in self.ports:
             self.ports[sector] = dict()
             self.ports[sector] = dict()

+ 11 - 17
tcp-proxy.py

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