Procházet zdrojové kódy

EvilTrade: Detecting and tracking bust

  In proxy.py we needed to add another linestate to track the player in
thievery... (All that just so we can automatically add the sector to the
bust list)

  Up nexted... changing the bust list to a dict so we can track when the
bust occured, so we can process what busts need to be cleared out.
david před 5 roky
rodič
revize
7b3084031a
2 změnil soubory, kde provedl 33 přidání a 20 odebrání
  1. 5 13
      galaxy.py
  2. 28 7
      proxy.py

+ 5 - 13
galaxy.py

@@ -250,6 +250,7 @@ class GameData(object):
         self.warps = {}
         self.warps = {}
         self.ports = {}
         self.ports = {}
         self.config = {}
         self.config = {}
+        self.busts = []
         if os.path.exists(filename):
         if os.path.exists(filename):
             # Load it
             # Load it
             with jsonlines.open(filename) as reader:
             with jsonlines.open(filename) as reader:
@@ -329,6 +330,8 @@ class GameData(object):
         if sect not in self.busts:
         if sect not in self.busts:
             self.busts.append(sect)
             self.busts.append(sect)
             log.debug("completed {0} : {1}".format(sect, self.busts))
             log.debug("completed {0} : {1}".format(sect, self.busts))
+        else:
+            log.debug("{0} already found in bust list".format(sect))
 
 
     def port_buying(self, sector: int, cargo: str):
     def port_buying(self, sector: int, cargo: str):
         """ Given a sector, is this port buying this? 
         """ Given a sector, is this port buying this? 
@@ -420,19 +423,8 @@ class GameData(object):
         if port1 in ("Special", "StarDock") or port2 in ("Special", "StarDock"):
         if port1 in ("Special", "StarDock") or port2 in ("Special", "StarDock"):
             return False
             return False
 
 
-        if port1 in self.busts:
-            log.warn("port_trading({0}, {1}) port1 is busted".format(port1, port2))
-            return False
-        elif port2 in self.busts:
-            log.warn("port_trading({0}, {1}) port2 is busted".format(port1, port2))
-            return False
-        elif port1 in self.busts and port2 in self.busts:
-            log.warn(
-                "port_trading({0}, {1}) both port1 and port2 are busted".format(
-                    port1, port2
-                )
-            )
-            return False
+        # Oops, hey, we are given port settings not a sector a port is in,
+        # So don't try to check it against the busted list.
 
 
         p1 = [c for c in port1]
         p1 = [c for c in port1]
         p2 = [c for c in port2]
         p2 = [c for c in port2]

+ 28 - 7
proxy.py

@@ -193,8 +193,8 @@ class Game(protocol.Protocol):
                 _, _, class_port = line.partition(", Class ")
                 _, _, class_port = line.partition(", Class ")
                 c, port = class_port.split(" ", maxsplit=1)
                 c, port = class_port.split(" ", maxsplit=1)
                 c = int(c)
                 c = int(c)
-                if 'StarDock' in port:
-                    port = 'StarDock'
+                if "StarDock" in port:
+                    port = "StarDock"
                 port = port.replace("(", "").replace(")", "")
                 port = port.replace("(", "").replace(")", "")
                 data = {"port": port, "class": c}
                 data = {"port": port, "class": c}
                 self.gamedata.set_port(self.current_sector, data)
                 self.gamedata.set_port(self.current_sector, data)
@@ -255,16 +255,34 @@ class Game(protocol.Protocol):
             self.gamedata.set_port(self.current_sector, data)
             self.gamedata.set_port(self.current_sector, data)
             # log.debug("NOW: {0}".format(self.gamedata.ports[self.current_sector]))
             # log.debug("NOW: {0}".format(self.gamedata.ports[self.current_sector]))
 
 
+    def theifline(self, line: str):
+        self.log.debug("theifline({0}): {1}".format(self.current_sector, line))
+        if "Suddenly you're Busted!" in line:
+            # Lets add it into the bust list
+            self.gamedata.set_bust(self.current_sector)
+        elif "(You realize the guards saw you last time!)" in line:
+            self.linestate = ""
+
     def goodbye(self):
     def goodbye(self):
         # hey hey hey, goodbye!
         # hey hey hey, goodbye!
-        self.connectionLost("We don't go there.")        
+        self.connectionLost("We don't go there.")
 
 
     def chicken(self):
     def chicken(self):
         if not self.received:
         if not self.received:
             self.log.debug("checking ... FAILED (chicken!)")
             self.log.debug("checking ... FAILED (chicken!)")
             # this should force the proxy to save
             # this should force the proxy to save
             self.observer.emit("user-game", (self.factory.player.user, None))
             self.observer.emit("user-game", (self.factory.player.user, None))
-            self.queue_game.put("\r\n" + merge(Style.NORMAL + Fore.MAGENTA) + "...Now leaving " + merge(Style.BRIGHT + Fore.BLUE) + "Trade Wars 2002" + merge(Style.NORMAL + Fore.MAGENTA) + " and returning to system." + Style.RESET_ALL + "\r\n")
+            self.queue_game.put(
+                "\r\n"
+                + merge(Style.NORMAL + Fore.MAGENTA)
+                + "...Now leaving "
+                + merge(Style.BRIGHT + Fore.BLUE)
+                + "Trade Wars 2002"
+                + merge(Style.NORMAL + Fore.MAGENTA)
+                + " and returning to system."
+                + Style.RESET_ALL
+                + "\r\n"
+            )
             reactor.callLater(2, self.goodbye)
             reactor.callLater(2, self.goodbye)
         else:
         else:
             self.log.debug("check -- PASSED.  WOOT.")
             self.log.debug("check -- PASSED.  WOOT.")
@@ -292,14 +310,14 @@ class Game(protocol.Protocol):
             if game >= "A" and game < "Q":
             if game >= "A" and game < "Q":
                 self.game = game
                 self.game = game
                 log.info("Game: {0}".format(self.game))
                 log.info("Game: {0}".format(self.game))
-                self.observer.emit("user-game", (self.factory.player.user, self.game))            
+                self.observer.emit("user-game", (self.factory.player.user, self.game))
         elif "Confirmed? (Y/N)? Yes" in line:
         elif "Confirmed? (Y/N)? Yes" in line:
             # Ok, here's what we going to do.
             # Ok, here's what we going to do.
             # Set timer for 5 seconds.  If we don't receive anything before that --
             # Set timer for 5 seconds.  If we don't receive anything before that --
             # hang up the server connection.  :P
             # hang up the server connection.  :P
             # 008c:fixme:file:UnlockFileEx Unimplemented overlapped operation
             # 008c:fixme:file:UnlockFileEx Unimplemented overlapped operation
             self.received = False
             self.received = False
-            reactor.callLater( 5, self.chicken)
+            reactor.callLater(5, self.chicken)
 
 
         # Process.pas parse line
         # Process.pas parse line
         if line.startswith("Command [TL=]"):
         if line.startswith("Command [TL=]"):
@@ -314,6 +332,8 @@ class Game(protocol.Protocol):
             self.lastwarp = 0
             self.lastwarp = 0
         elif line.startswith(" Items     Status  Trading % of max OnBoard"):
         elif line.startswith(" Items     Status  Trading % of max OnBoard"):
             self.linestate = "port"
             self.linestate = "port"
+        elif line.startswith("<Thievery>"):
+            self.linestate = "thievery"
         elif self.linestate == "warpline":
         elif self.linestate == "warpline":
             if line == "":
             if line == "":
                 self.linestate = ""
                 self.linestate = ""
@@ -338,6 +358,8 @@ class Game(protocol.Protocol):
                 else:
                 else:
                     self.linestate = "warpcim"
                     self.linestate = "warpcim"
                 self.cimline(line)
                 self.cimline(line)
+        elif self.linestate == "thievery":
+            self.theifline(line)
         # elif line.startswith(": "):
         # elif line.startswith(": "):
         elif line == ": ":
         elif line == ": ":
             self.linestate = "cim"
             self.linestate = "cim"
@@ -580,4 +602,3 @@ class GlueFactory(protocol.ClientFactory):
         # syncterm gets cranky/locks up if we close this here.
         # syncterm gets cranky/locks up if we close this here.
         # (Because it is still sending rlogin information?)
         # (Because it is still sending rlogin information?)
         reactor.callLater(2, self.closeIt)
         reactor.callLater(2, self.closeIt)
-