Просмотр исходного кода

Update port data when we trade with it.

Steve Thielemann 5 лет назад
Родитель
Сommit
48e45a081e
2 измененных файлов с 52 добавлено и 0 удалено
  1. 24 0
      galaxy.py
  2. 28 0
      tcp-proxy.py

+ 24 - 0
galaxy.py

@@ -3,6 +3,18 @@ import os
 from twisted.python import log
 from pprint import pprint
 
+PORT_CLASSES = {
+    1: "BBS",
+    2: "BSB",
+    3: "SBB",
+    4: "SSB",
+    5: "SBS",
+    6: "BSS",
+    7: "SSS",
+    8: "BBB",
+}
+CLASSES_PORT = {v: k for k, v in PORT_CLASSES.items()}
+
 
 class GameData(object):
     def __init__(self, usergame):
@@ -87,3 +99,15 @@ class GameData(object):
         if sector not in self.ports:
             self.ports[sector] = dict()
         self.ports[sector].update(data)
+
+        if "port" not in self.ports[sector]:
+            # incomplete port type - can we "complete" it?
+
+            if all(x in self.ports for x in ["fuel", "org", "equ"]):
+                # We have all of the port types, so:
+                port = "".join(
+                    [self.ports[sector][x]["sale"] for x in ["fuel", "org", "equ"]]
+                )
+                self.ports[sector]["ports"] = port
+                self.ports[sector]["class"] = CLASSES_PORT[port]
+                log.msg("completed {0} : {1}".format(sector, self.ports[sector]))

+ 28 - 0
tcp-proxy.py

@@ -260,6 +260,20 @@ class Game(protocol.Protocol):
             self.sector_state = 'normal'
             self.linestate = ''
 
+    def portline(self, line):
+        # Map these items to which keys
+        log.msg("portline({0}): {1}".format(self.current_sector, line))
+        mapto = { 'Fuel': 'fuel', 'Organics': 'org', 'Equipment': 'equ'}
+
+        if '%' in line:
+            # Fuel Ore   Buying    2890    100%       0
+            work = line.replace('Fuel Ore', 'Fuel').replace('%', '')
+            parts = re.split(r"\s+", work)
+            data = { mapto[parts[0]] : { 'sale': parts[1][0], 'units': parts[2], 'pct': int(parts[3]) } }
+            # log.msg("Setting {0} to {1}".format(self.current_sector, data))
+            self.gamedata.set_port(self.current_sector, data)
+            # log.msg("NOW: {0}".format(self.gamedata.ports[self.current_sector]))
+
     def lineReceived(self, line):
         """ line received from the game. """
         if "log_lines" in config and config["log_lines"]:
@@ -279,9 +293,18 @@ class Game(protocol.Protocol):
                 self.observer.emit("user-game", (self.factory.player.user, self.game))
 
         # Process.pas parse line
+        if line.startswith("Command [TL=]"):
+            # Ok, get the current sector from this
+            _, _, sector = line.partition("]:[")
+            sector, _, _ = sector.partition("]")
+            self.current_sector = int(sector)
+            log.msg("current sector: {0}".format(self.current_sector))
+
         if line.startswith("The shortest path (") or line.startswith("  TO > "):
             self.linestate = "warpline"
             self.lastwarp = 0
+        elif line.startswith(" Items     Status  Trading % of max OnBoard"):
+            self.linestate = "port"
         elif self.linestate == "warpline":
             if line == "":
                 self.linestate = ""
@@ -316,6 +339,11 @@ class Game(protocol.Protocol):
             self.current_sector = int(parts[2])
         elif self.linestate == "sector":
             self.sectorline(line)
+        elif self.linestate == 'port':
+            if line == '':
+                self.linestate = ''
+            else:
+                self.portline(line)
 
         self.observer.emit("game-line", line)