|
@@ -20,7 +20,7 @@ from pprint import pformat
|
|
|
import yaml
|
|
|
|
|
|
|
|
|
-def config_load(filename):
|
|
|
+def config_load(filename: str):
|
|
|
global config
|
|
|
with open(filename, "r") as fp:
|
|
|
config = yaml.safe_load(fp)
|
|
@@ -49,7 +49,7 @@ version = check_output(
|
|
|
).strip()
|
|
|
|
|
|
|
|
|
-def merge(color_string):
|
|
|
+def merge(color_string: str):
|
|
|
""" Given a string of colorama ANSI, merge them if you can. """
|
|
|
return color_string.replace("m\x1b[", ";")
|
|
|
|
|
@@ -66,13 +66,13 @@ cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
|
|
|
makeNL = re.compile(r"\x1b\[[0-9;]*[JK]")
|
|
|
|
|
|
|
|
|
-def treatAsNL(line):
|
|
|
+def treatAsNL(line: str):
|
|
|
""" Replace any ANSI codes that would be better understood as newlines. """
|
|
|
global makeNL
|
|
|
return makeNL.sub("\n", line)
|
|
|
|
|
|
|
|
|
-def cleanANSI(line):
|
|
|
+def cleanANSI(line: str):
|
|
|
""" Remove all ANSI codes. """
|
|
|
global cleaner
|
|
|
return cleaner.sub("", line)
|
|
@@ -81,8 +81,7 @@ def cleanANSI(line):
|
|
|
|
|
|
from observer import Observer
|
|
|
from flexible import PlayerInput, ProxyMenu
|
|
|
-from galaxy import GameData
|
|
|
-from flexible import PORT_CLASSES, CLASSES_PORT
|
|
|
+from galaxy import GameData, PORT_CLASSES, CLASSES_PORT
|
|
|
|
|
|
|
|
|
class Game(protocol.Protocol):
|
|
@@ -103,7 +102,7 @@ class Game(protocol.Protocol):
|
|
|
self.setPlayerReceived()
|
|
|
self.observer.connect("user-game", self.show_game)
|
|
|
|
|
|
- def show_game(self, game):
|
|
|
+ def show_game(self, game: tuple):
|
|
|
self.usergame = game
|
|
|
log.msg("## User-Game:", game)
|
|
|
if game[1] is None:
|
|
@@ -111,12 +110,6 @@ class Game(protocol.Protocol):
|
|
|
# start the save
|
|
|
coiterate(self.gamedata.save())
|
|
|
self.gamedata = None
|
|
|
- if hasattr(self, "portdata"):
|
|
|
- log.msg("Clearing out old portdata.")
|
|
|
- self.portdata = {}
|
|
|
- if hasattr(self, "warpdata"):
|
|
|
- log.msg("Clearing out old warpdata.")
|
|
|
- self.warpdata = {}
|
|
|
else:
|
|
|
# Load the game data (if any)
|
|
|
self.gamedata = GameData(game)
|
|
@@ -136,14 +129,14 @@ class Game(protocol.Protocol):
|
|
|
else:
|
|
|
# Pass received data to the server
|
|
|
if type(chunk) == str:
|
|
|
- self.transport.write(chunk.encode())
|
|
|
+ self.transport.write(chunk.encode('latin-1'))
|
|
|
log.msg(">> [{0}]".format(chunk))
|
|
|
else:
|
|
|
self.transport.write(chunk)
|
|
|
- log.msg(">> [{0}]".format(chunk.decode("utf-8", "ignore")))
|
|
|
+ log.msg(">> [{0}]".format(chunk.decode("latin-1", "ignore")))
|
|
|
self.setPlayerReceived()
|
|
|
|
|
|
- def warpline(self, line):
|
|
|
+ def warpline(self, line: str):
|
|
|
log.msg("warp:", line)
|
|
|
# 1 > 3 > 5 > 77 > 999
|
|
|
last_sector = self.lastwarp
|
|
@@ -156,8 +149,8 @@ class Game(protocol.Protocol):
|
|
|
last_sector = sector
|
|
|
self.lastwarp = sector
|
|
|
|
|
|
- def cimline(self, line):
|
|
|
- log.msg(self.linestate, ":", line)
|
|
|
+ def cimline(self, line: str):
|
|
|
+ # log.msg(self.linestate, ":", line)
|
|
|
if line[-1] == "%":
|
|
|
self.linestate = "portcim"
|
|
|
|
|
@@ -206,7 +199,7 @@ class Game(protocol.Protocol):
|
|
|
else:
|
|
|
self.linestate = "cim"
|
|
|
|
|
|
- def sectorline(self, line):
|
|
|
+ def sectorline(self, line: str):
|
|
|
log.msg("sector:", self.current_sector, ':', line)
|
|
|
if line.startswith('Beacon : '):
|
|
|
pass # get beacon text
|
|
@@ -260,7 +253,21 @@ class Game(protocol.Protocol):
|
|
|
self.sector_state = 'normal'
|
|
|
self.linestate = ''
|
|
|
|
|
|
- def lineReceived(self, line):
|
|
|
+ def portline(self, line: str):
|
|
|
+ # 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: str):
|
|
|
""" line received from the game. """
|
|
|
if "log_lines" in config and config["log_lines"]:
|
|
|
log.msg("<< [{0}]".format(line))
|
|
@@ -279,9 +286,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 +332,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)
|
|
|
|
|
@@ -339,7 +360,7 @@ class Game(protocol.Protocol):
|
|
|
|
|
|
# Store the text into the buffer before we inject into it.
|
|
|
|
|
|
- self.buffer += chunk.decode("utf-8", "ignore")
|
|
|
+ self.buffer += chunk.decode("latin-1", "ignore")
|
|
|
# log.msg("data: [{0}]".format(repr(chunk)))
|
|
|
|
|
|
if b"TWGS v2.20b" in chunk and b"www.eisonline.com" in chunk:
|
|
@@ -353,7 +374,7 @@ class Game(protocol.Protocol):
|
|
|
)
|
|
|
chunk = (
|
|
|
chunk[0 : pos + len(target)]
|
|
|
- + message.encode()
|
|
|
+ + message.encode('latin-1')
|
|
|
+ chunk[pos + len(target) :]
|
|
|
)
|
|
|
|
|
@@ -366,7 +387,7 @@ class Game(protocol.Protocol):
|
|
|
if self.to_player:
|
|
|
self.queue_game.put(chunk)
|
|
|
|
|
|
- # self.buffer += chunk.decode("utf-8", "ignore")
|
|
|
+ # self.buffer += chunk.decode("latin-1", "ignore")
|
|
|
|
|
|
#
|
|
|
# Begin processing the buffer
|
|
@@ -398,40 +419,6 @@ class Game(protocol.Protocol):
|
|
|
self.transport.loseConnection()
|
|
|
|
|
|
|
|
|
-class GlueFactory(protocol.ClientFactory):
|
|
|
- # class GlueFactory(protocol.Factory):
|
|
|
- maxDelay = 10
|
|
|
- protocol = Game
|
|
|
-
|
|
|
- def __init__(self, player):
|
|
|
- self.player = player
|
|
|
- self.queue_player = player.queue_player
|
|
|
- self.queue_game = player.queue_game
|
|
|
- self.observer = player.observer
|
|
|
- self.game = None
|
|
|
-
|
|
|
- def closeIt(self):
|
|
|
- log.msg("closeIt")
|
|
|
- self.queue_game.put(False)
|
|
|
-
|
|
|
- def getUser(self, user):
|
|
|
- log.msg("getUser( %s )" % user)
|
|
|
- self.twgs.logUser(user)
|
|
|
-
|
|
|
- # This was needed when I replaced ClientFactory with Factory.
|
|
|
- # def clientConnectionLost(self, connector, why):
|
|
|
- # log.msg("clientconnectionlost: %s" % why)
|
|
|
- # self.queue_client.put(False)
|
|
|
-
|
|
|
- def clientConnectionFailed(self, connector, why):
|
|
|
- log.msg("connection to game failed: %s" % why)
|
|
|
- self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
|
|
|
-
|
|
|
- # syncterm gets cranky/locks up if we close this here.
|
|
|
- # (Because it is still sending rlogin information?)
|
|
|
- reactor.callLater(2, self.closeIt)
|
|
|
-
|
|
|
-
|
|
|
class Player(protocol.Protocol):
|
|
|
def __init__(self):
|
|
|
self.buffer = ""
|
|
@@ -473,7 +460,7 @@ class Player(protocol.Protocol):
|
|
|
if type(chunk) == bytes:
|
|
|
self.transport.write(chunk)
|
|
|
elif type(chunk) == str:
|
|
|
- self.transport.write(chunk.encode())
|
|
|
+ self.transport.write(chunk.encode('latin-1'))
|
|
|
else:
|
|
|
log.err("gameDataReceived: type (%s) given!".format(type(chunk)))
|
|
|
self.transport.write(chunk)
|
|
@@ -481,7 +468,7 @@ class Player(protocol.Protocol):
|
|
|
|
|
|
def dataReceived(self, chunk):
|
|
|
if self.user is None:
|
|
|
- self.buffer += chunk.decode("utf-8", "ignore")
|
|
|
+ self.buffer += chunk.decode("latin-1", "ignore")
|
|
|
|
|
|
parts = self.buffer.split("\x00")
|
|
|
if len(parts) >= 5:
|
|
@@ -544,6 +531,42 @@ class Player(protocol.Protocol):
|
|
|
log.msg("connectionFailed: %s" % why)
|
|
|
|
|
|
|
|
|
+
|
|
|
+class GlueFactory(protocol.ClientFactory):
|
|
|
+ # class GlueFactory(protocol.Factory):
|
|
|
+ maxDelay = 10
|
|
|
+ protocol = Game
|
|
|
+
|
|
|
+ def __init__(self, player: Player):
|
|
|
+ self.player = player
|
|
|
+ self.queue_player = player.queue_player
|
|
|
+ self.queue_game = player.queue_game
|
|
|
+ self.observer = player.observer
|
|
|
+ self.game = None
|
|
|
+
|
|
|
+ def closeIt(self):
|
|
|
+ log.msg("closeIt")
|
|
|
+ self.queue_game.put(False)
|
|
|
+
|
|
|
+ def getUser(self, user):
|
|
|
+ log.msg("getUser( %s )" % user)
|
|
|
+ self.twgs.logUser(user)
|
|
|
+
|
|
|
+ # This was needed when I replaced ClientFactory with Factory.
|
|
|
+ # def clientConnectionLost(self, connector, why):
|
|
|
+ # log.msg("clientconnectionlost: %s" % why)
|
|
|
+ # self.queue_client.put(False)
|
|
|
+
|
|
|
+ def clientConnectionFailed(self, connector, why):
|
|
|
+ log.msg("connection to game failed: %s" % why)
|
|
|
+ self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
|
|
|
+
|
|
|
+ # syncterm gets cranky/locks up if we close this here.
|
|
|
+ # (Because it is still sending rlogin information?)
|
|
|
+ reactor.callLater(2, self.closeIt)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
if __name__ == "__main__":
|
|
|
if "logfile" in config and config["logfile"]:
|
|
|
log.startLogging(DailyLogFile("proxy.log", "."))
|