Explorar o código

Fixed report + save StarDock info.

Steve Thielemann %!s(int64=5) %!d(string=hai) anos
pai
achega
362c9f3bcc
Modificáronse 2 ficheiros con 18 adicións e 2 borrados
  1. 12 0
      flexible.py
  2. 6 2
      proxy.py

+ 12 - 0
flexible.py

@@ -2543,6 +2543,7 @@ class ProxyMenu(object):
         # menu_item("Q", "Quest")
         menu_item("P", "Port CIM Report ({0})".format(len(self.game.gamedata.ports)))
         menu_item("W", "Warp CIM Report ({0})".format(len(self.game.gamedata.warps)))
+        menu_item("R", "Restock Report")
         menu_item("T", "Trading Report")
         menu_item("S", "Scripts")
         menu_item("X", "eXit")
@@ -2753,6 +2754,17 @@ class ProxyMenu(object):
             # Scripts
             self.activate_scripts_menu()
             return
+        elif key == "R":
+            self.queue_game.put(self.c + key + self.r + self.nl)
+            s = self.game.gamedata.special_ports()
+            box = Boxes(14, color=self.c)
+
+            self.queue_game.put(box.top())
+            self.queue_game.put(box.row(self.c1 + " Sector Class "))
+            for sector, data in s.items():
+                self.queue_game.put(box.row(" {0} {1:5}{2} {3:^5} ".format( self.c1, sector, self.c2, data['class'])))
+            self.queue_game.put(box.bottom())
+
         elif key == "D":
             self.queue_game.put(self.c + key + self.r + self.nl)
             # (Re) Display Trade Report

+ 6 - 2
proxy.py

@@ -187,10 +187,14 @@ class Game(protocol.Protocol):
                 # Port is destroyed
                 if self.current_sector in self.gamedata.ports:
                     del self.gamedata.ports[self.current_sector]
-            elif "(StarDock)" not in line:
+            # elif "(StarDock)" not in line:
+            # Ports   : Stargate Alpha I, Class 9 (Special) (StarDock)
+            else:
                 _, _, class_port = line.partition(", Class ")
-                c, port = class_port.split(" ")
+                c, port = class_port.split(" ", maxsplit=1)
                 c = int(c)
+                if 'StarDock' in port:
+                    port = 'StarDock'
                 port = port.replace("(", "").replace(")", "")
                 data = {"port": port, "class": c}
                 self.gamedata.set_port(self.current_sector, data)