Przeglądaj źródła

Reset ports/warps when running CIM report.

This helps if the data gets out of sync/bad json.
Steve Thielemann 5 lat temu
rodzic
commit
628902c109
2 zmienionych plików z 8 dodań i 0 usunięć
  1. 2 0
      flexible.py
  2. 6 0
      galaxy.py

+ 2 - 0
flexible.py

@@ -1683,6 +1683,7 @@ class ProxyMenu(object):
                 return      
         elif key == "P":
             self.queue_game.put(self.c + key + self.r + self.nl)
+            self.game.gamedata.reset_ports()            
             # Activate CIM Port Report
             report = CIMPortReport(self.game)
             d = report.whenDone()
@@ -1691,6 +1692,7 @@ class ProxyMenu(object):
             return
         elif key == "W":
             self.queue_game.put(self.c + key + self.r + self.nl)
+            self.game.gamedata.reset_warps()
             # Activate CIM Warp Report
             report = CIMWarpReport(self.game)
             d = report.whenDone()

+ 6 - 0
galaxy.py

@@ -43,6 +43,12 @@ class GameData(object):
         user, game = self.usergame
         return "{0}_{1}.json".format(user.lower(), game.upper())
 
+    def reset_ports(self):
+        self.ports = {}
+
+    def reset_warps(self):
+        self.waprs = {}
+
     def display(self):
         pprint(self.warps)
         pprint(self.ports)