|
@@ -193,8 +193,8 @@ class Game(protocol.Protocol):
|
|
|
_, _, class_port = line.partition(", Class ")
|
|
|
c, port = class_port.split(" ", maxsplit=1)
|
|
|
c = int(c)
|
|
|
- if 'StarDock' in port:
|
|
|
- port = 'StarDock'
|
|
|
+ if "StarDock" in port:
|
|
|
+ port = "StarDock"
|
|
|
port = port.replace("(", "").replace(")", "")
|
|
|
data = {"port": port, "class": c}
|
|
|
self.gamedata.set_port(self.current_sector, data)
|
|
@@ -255,16 +255,34 @@ class Game(protocol.Protocol):
|
|
|
self.gamedata.set_port(self.current_sector, data)
|
|
|
# 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):
|
|
|
# hey hey hey, goodbye!
|
|
|
- self.connectionLost("We don't go there.")
|
|
|
+ self.connectionLost("We don't go there.")
|
|
|
|
|
|
def chicken(self):
|
|
|
if not self.received:
|
|
|
self.log.debug("checking ... FAILED (chicken!)")
|
|
|
# this should force the proxy to save
|
|
|
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)
|
|
|
else:
|
|
|
self.log.debug("check -- PASSED. WOOT.")
|
|
@@ -292,14 +310,14 @@ class Game(protocol.Protocol):
|
|
|
if game >= "A" and game < "Q":
|
|
|
self.game = 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:
|
|
|
# Ok, here's what we going to do.
|
|
|
# Set timer for 5 seconds. If we don't receive anything before that --
|
|
|
# hang up the server connection. :P
|
|
|
# 008c:fixme:file:UnlockFileEx Unimplemented overlapped operation
|
|
|
self.received = False
|
|
|
- reactor.callLater( 5, self.chicken)
|
|
|
+ reactor.callLater(5, self.chicken)
|
|
|
|
|
|
# Process.pas parse line
|
|
|
if line.startswith("Command [TL=]"):
|
|
@@ -314,6 +332,8 @@ class Game(protocol.Protocol):
|
|
|
self.lastwarp = 0
|
|
|
elif line.startswith(" Items Status Trading % of max OnBoard"):
|
|
|
self.linestate = "port"
|
|
|
+ elif line.startswith("<Thievery>"):
|
|
|
+ self.linestate = "thievery"
|
|
|
elif self.linestate == "warpline":
|
|
|
if line == "":
|
|
|
self.linestate = ""
|
|
@@ -338,6 +358,8 @@ class Game(protocol.Protocol):
|
|
|
else:
|
|
|
self.linestate = "warpcim"
|
|
|
self.cimline(line)
|
|
|
+ elif self.linestate == "thievery":
|
|
|
+ self.theifline(line)
|
|
|
# elif line.startswith(": "):
|
|
|
elif line == ": ":
|
|
|
self.linestate = "cim"
|
|
@@ -580,4 +602,3 @@ class GlueFactory(protocol.ClientFactory):
|
|
|
# syncterm gets cranky/locks up if we close this here.
|
|
|
# (Because it is still sending rlogin information?)
|
|
|
reactor.callLater(2, self.closeIt)
|
|
|
-
|