proxy.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. import re
  2. from twisted.internet import defer
  3. from twisted.internet import protocol
  4. from twisted.internet import reactor
  5. from twisted.internet import task
  6. from twisted.internet.task import coiterate
  7. # from twisted.python import log
  8. import logging
  9. import pendulum
  10. from colorama import Fore, Back, Style
  11. from pprint import pformat
  12. from config import config, version
  13. log = logging.getLogger(__name__)
  14. def merge(color_string: str):
  15. """ Given a string of colorama ANSI, merge them if you can. """
  16. return color_string.replace("m\x1b[", ";")
  17. # https://en.wikipedia.org/wiki/ANSI_escape_code
  18. # Cleans all ANSI
  19. cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
  20. # Looks for ANSI (that should be considered to be a newline)
  21. # This needs to see what is send when something enters / leaves
  22. # the player's current sector. (That doesn't work/isn't
  23. # detected. NNY!) It is "\x1b[K" Erase in Line!
  24. makeNL = re.compile(r"\x1b\[[0-9;]*[JK]")
  25. def treatAsNL(line: str):
  26. """ Replace any ANSI codes that would be better understood as newlines. """
  27. global makeNL
  28. return makeNL.sub("\n", line)
  29. def cleanANSI(line: str):
  30. """ Remove all ANSI codes. """
  31. global cleaner
  32. return cleaner.sub("", line)
  33. # return re.sub(r'\x1b\[([0-9,A-Z]{1,2}(;[0-9]{1,2})?(;[0-9]{3})?)?[m|K]?', '', line)
  34. class UserAdapter(logging.LoggerAdapter):
  35. def process(self, msg, kwargs):
  36. return "[{0}] {1}".format(self.extra["game"].usergame, msg), kwargs
  37. from observer import Observer
  38. from flexible import PlayerInput, ProxyMenu
  39. from galaxy import GameData, PORT_CLASSES, CLASSES_PORT
  40. class Game(protocol.Protocol):
  41. def __init__(self):
  42. self.buffer = ""
  43. self.game = None
  44. self.usergame = (None, None)
  45. self.gamedata = None
  46. self.to_player = True
  47. self.linestate = ""
  48. baselog = logging.getLogger(__name__)
  49. self.log = UserAdapter(baselog, {"game": self})
  50. def connectionMade(self):
  51. self.log.info("Connected to Game Server")
  52. self.queue_player = self.factory.queue_player
  53. self.queue_game = self.factory.queue_game
  54. self.observer = self.factory.observer
  55. self.factory.game = self
  56. self.setPlayerReceived()
  57. self.observer.connect("user-game", self.show_game)
  58. def show_game(self, game: tuple):
  59. self.usergame = game
  60. self.log.info("## User-Game: {0}".format(game))
  61. if game[1] is None:
  62. if self.gamedata is not None:
  63. # start the save
  64. coiterate(self.gamedata.save())
  65. self.gamedata = None
  66. else:
  67. # Load the game data (if any)
  68. self.gamedata = GameData(game)
  69. coiterate(self.gamedata.load())
  70. def setPlayerReceived(self):
  71. """ Get deferred from client queue, callback clientDataReceived. """
  72. self.queue_player.get().addCallback(self.playerDataReceived)
  73. def playerDataReceived(self, chunk):
  74. if chunk is False:
  75. self.queue_player = None
  76. self.log.info("Player: disconnected, close connection to game")
  77. # I don't believe I need this if I'm using protocol.Factory
  78. self.factory.continueTrying = False
  79. self.transport.loseConnection()
  80. else:
  81. # Pass received data to the server
  82. if type(chunk) == str:
  83. self.transport.write(chunk.encode("latin-1"))
  84. log.debug(">> [{0}]".format(chunk))
  85. else:
  86. self.transport.write(chunk)
  87. self.log.debug(">> [{0}]".format(chunk.decode("latin-1", "ignore")))
  88. self.setPlayerReceived()
  89. def warpline(self, line: str):
  90. self.log.debug("warp: " + line)
  91. # 1 > 3 > 5 > 77 > 999
  92. last_sector = self.lastwarp
  93. line = line.replace("(", "").replace(")", "").replace(">", "").strip()
  94. for s in line.split():
  95. # Ok, this should be all of the warps.
  96. sector = int(s)
  97. if last_sector > 0:
  98. self.gamedata.warp_to(last_sector, sector)
  99. last_sector = sector
  100. self.lastwarp = sector
  101. def cimline(self, line: str):
  102. # log.debug(self.linestate, ":", line)
  103. if line[-1] == "%":
  104. self.linestate = "portcim"
  105. if self.linestate == "warpcim":
  106. # warps
  107. work = line.strip()
  108. if work != "":
  109. parts = re.split(r"(?<=\d)\s", work)
  110. parts = [int(x) for x in parts]
  111. sector = parts.pop(0)
  112. self.gamedata.warp_to(sector, *parts)
  113. elif self.linestate == "portcim":
  114. # ports
  115. work = line.replace("%", "")
  116. parts = re.parts = re.split(r"(?<=\d)\s", work)
  117. if len(parts) == 8:
  118. sector = int(parts[0].strip())
  119. data = dict()
  120. def portBS(info):
  121. if info[0] == "-":
  122. bs = "B"
  123. else:
  124. bs = "S"
  125. return (bs, int(info[1:].strip()))
  126. data["fuel"] = dict()
  127. data["fuel"]["sale"], data["fuel"]["units"] = portBS(parts[1])
  128. data["fuel"]["pct"] = int(parts[2].strip())
  129. data["org"] = dict()
  130. data["org"]["sale"], data["org"]["units"] = portBS(parts[3])
  131. data["org"]["pct"] = int(parts[4].strip())
  132. data["equ"] = dict()
  133. data["equ"]["sale"], data["equ"]["units"] = portBS(parts[5])
  134. data["equ"]["pct"] = int(parts[6].strip())
  135. # Store what this port is buying/selling
  136. data["port"] = (
  137. data["fuel"]["sale"] + data["org"]["sale"] + data["equ"]["sale"]
  138. )
  139. # Convert BBS/SBB to Class number 1-8
  140. data["class"] = CLASSES_PORT[data["port"]]
  141. self.gamedata.set_port(sector, data)
  142. else:
  143. self.linestate = "cim"
  144. def sectorline(self, line: str):
  145. self.log.debug("sector: {0} : {1}".format(self.current_sector, line))
  146. if line.startswith("Beacon : "):
  147. pass # get beacon text
  148. elif line.startswith("Ports : "):
  149. # Ports : Ballista, Class 1 (BBS)
  150. self.sector_state = "port"
  151. if "<=-DANGER-=>" in line:
  152. # Port is destroyed
  153. if self.current_sector in self.gamedata.ports:
  154. del self.gamedata.ports[self.current_sector]
  155. elif "(StarDock)" not in line:
  156. _, _, class_port = line.partition(", Class ")
  157. c, port = class_port.split(" ")
  158. c = int(c)
  159. port = port.replace("(", "").replace(")", "")
  160. data = {"port": port, "class": c}
  161. self.gamedata.set_port(self.current_sector, data)
  162. elif line.startswith("Planets : "):
  163. # Planets : (O) Flipper
  164. self.sector_state = "planet"
  165. elif line.startswith("Traders : "):
  166. self.sector_state = "trader"
  167. elif line.startswith("Ships : "):
  168. self.sector_state = "ship"
  169. elif line.startswith("Fighters: "):
  170. self.sector_state = "fighter"
  171. elif line.startswith("NavHaz : "):
  172. pass
  173. elif line.startswith("Mines : "):
  174. self.sector_state = "mine"
  175. elif line.startswith(" "):
  176. # continues
  177. if self.sector_state == "mines":
  178. pass
  179. if self.sector_state == "planet":
  180. pass
  181. if self.sector_state == "trader":
  182. pass
  183. if self.sector_state == "ship":
  184. pass
  185. elif len(line) > 8 and line[8] == ":":
  186. self.sector_state = "normal"
  187. elif line.startswith("Warps to Sector(s) :"):
  188. # Warps to Sector(s) : 5468
  189. _, _, work = line.partition(":")
  190. # TO FIX: We are interested in (unexplored) sectors.
  191. work = work.strip().replace("(", "").replace(")", "").replace(" - ", " ")
  192. parts = [int(x) for x in work.split(" ")]
  193. self.log.debug("Sectorline warps {0}".format(parts))
  194. self.gamedata.warp_to(self.current_sector, *parts)
  195. self.sector_state = "normal"
  196. self.linestate = ""
  197. def portline(self, line: str):
  198. # Map these items to which keys
  199. self.log.debug("portline({0}): {1}".format(self.current_sector, line))
  200. mapto = {"Fuel": "fuel", "Organics": "org", "Equipment": "equ"}
  201. if "%" in line:
  202. # Fuel Ore Buying 2890 100% 0
  203. work = line.replace("Fuel Ore", "Fuel").replace("%", "")
  204. parts = re.split(r"\s+", work)
  205. data = {
  206. mapto[parts[0]]: {
  207. "sale": parts[1][0],
  208. "units": parts[2],
  209. "pct": int(parts[3]),
  210. }
  211. }
  212. # log.debug("Setting {0} to {1}".format(self.current_sector, data))
  213. self.gamedata.set_port(self.current_sector, data)
  214. # log.debug("NOW: {0}".format(self.gamedata.ports[self.current_sector]))
  215. def goodbye(self):
  216. # hey hey hey, goodbye!
  217. self.connectionLost("We don't go there.")
  218. def chicken(self):
  219. if not self.received:
  220. self.log.debug("checking ... FAILED (chicken!)")
  221. # this should force the proxy to save
  222. self.observer.emit("user-game", (self.factory.player.user, None))
  223. 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")
  224. reactor.callLater(2, self.goodbye)
  225. else:
  226. self.log.debug("check -- PASSED. WOOT.")
  227. def lineReceived(self, line: str):
  228. """ line received from the game. """
  229. self.received = True
  230. if "log_lines" in config and config["log_lines"]:
  231. self.log.debug("<< [{0}]".format(line))
  232. if "TradeWars Game Server" in line and "Copyright (C) EIS" in line:
  233. # We are not in a game
  234. if not self.game is None:
  235. # We were in a game.
  236. self.game = None
  237. self.observer.emit("user-game", (self.factory.player.user, self.game))
  238. elif "Selection (? for menu): " in line:
  239. game = line[-1]
  240. if game >= "A" and game < "Q":
  241. self.game = game
  242. log.info("Game: {0}".format(self.game))
  243. self.observer.emit("user-game", (self.factory.player.user, self.game))
  244. elif "Confirmed? (Y/N)? Yes" in line:
  245. # Ok, here's what we going to do.
  246. # Set timer for 5 seconds. If we don't receive anything before that --
  247. # hang up the server connection. :P
  248. # 008c:fixme:file:UnlockFileEx Unimplemented overlapped operation
  249. self.received = False
  250. reactor.callLater( 5, self.chicken)
  251. # Process.pas parse line
  252. if line.startswith("Command [TL=]"):
  253. # Ok, get the current sector from this
  254. _, _, sector = line.partition("]:[")
  255. sector, _, _ = sector.partition("]")
  256. self.current_sector = int(sector)
  257. self.log.info("current sector: {0}".format(self.current_sector))
  258. if line.startswith("The shortest path (") or line.startswith(" TO > "):
  259. self.linestate = "warpline"
  260. self.lastwarp = 0
  261. elif line.startswith(" Items Status Trading % of max OnBoard"):
  262. self.linestate = "port"
  263. elif self.linestate == "warpline":
  264. if line == "":
  265. self.linestate = ""
  266. else:
  267. self.warpline(line)
  268. elif self.linestate == "portcim" or self.linestate == "warpcim":
  269. if line == ": ENDINTERROG":
  270. self.linestate = ""
  271. elif line == ": ":
  272. self.linestate = "cim"
  273. elif line == "":
  274. self.linestate = ""
  275. else:
  276. if len(line) > 2:
  277. self.cimline(line)
  278. elif self.linestate == "cim":
  279. if line == ": ENDINTERROG" or line == "":
  280. self.linestate = ""
  281. elif len(line) > 2:
  282. if line.rstrip()[-1] == "%":
  283. self.linestate = "portcim"
  284. else:
  285. self.linestate = "warpcim"
  286. self.cimline(line)
  287. # elif line.startswith(": "):
  288. elif line == ": ":
  289. self.linestate = "cim"
  290. elif line.startswith("Sector : "):
  291. # Sector : 2565 in uncharted space.
  292. self.linestate = "sector"
  293. work = line.strip()
  294. parts = re.split(r"\s+", work)
  295. self.current_sector = int(parts[2])
  296. elif self.linestate == "sector":
  297. self.sectorline(line)
  298. elif self.linestate == "port":
  299. if line == "":
  300. self.linestate = ""
  301. else:
  302. self.portline(line)
  303. self.observer.emit("game-line", line)
  304. def getPrompt(self):
  305. """ Return the current prompt, stripped of ANSI. """
  306. return cleanANSI(self.buffer)
  307. def dataReceived(self, chunk):
  308. """ Data received from the Game.
  309. Remove backspaces.
  310. Treat some ANSI codes as NewLine.
  311. Remove ANSI.
  312. Break into lines.
  313. Trim out carriage returns.
  314. Call lineReceived().
  315. "Optionally" pass data to player.
  316. FUTURE: trigger on prompt. [cleanANSI(buffer)]
  317. """
  318. # Store the text into the buffer before we inject into it.
  319. self.buffer += chunk.decode("latin-1", "ignore")
  320. # log.debug("data: [{0}]".format(repr(chunk)))
  321. if b"TWGS v2.20b" in chunk and b"www.eisonline.com" in chunk:
  322. # Ok, we have a possible target.
  323. target = b"www.eisonline.com\n\r"
  324. pos = chunk.find(target)
  325. if pos != -1:
  326. # Found it! Inject!
  327. message = (
  328. "TWGS Proxy build " + version + ". ~ to activate in game.\n\r"
  329. )
  330. chunk = (
  331. chunk[0 : pos + len(target)]
  332. + message.encode("latin-1")
  333. + chunk[pos + len(target) :]
  334. )
  335. # Sequence error:
  336. # If I don't put the chunk(I received) to the player.
  337. # anything I display -- lineReceive() put() ... would
  338. # be out of order. (I'd be responding -- before it
  339. # was displayed to the user.)
  340. if self.to_player:
  341. self.queue_game.put(chunk)
  342. # self.buffer += chunk.decode("latin-1", "ignore")
  343. #
  344. # Begin processing the buffer
  345. #
  346. # Process any backspaces
  347. while "\b" in self.buffer:
  348. part = self.buffer.partition("\b")
  349. self.buffer = part[0][:-1] + part[2]
  350. # Treat some ANSI codes as a newline
  351. self.buffer = treatAsNL(self.buffer)
  352. # Break into lines
  353. while "\n" in self.buffer:
  354. part = self.buffer.partition("\n")
  355. line = part[0].replace("\r", "")
  356. # Clean ANSI codes from line
  357. line = cleanANSI(line)
  358. self.lineReceived(line)
  359. self.buffer = part[2]
  360. self.observer.emit("prompt", self.getPrompt())
  361. def connectionLost(self, why):
  362. self.log.info("Game connectionLost because: %s" % why)
  363. self.observer.emit("close", why)
  364. self.queue_game.put(False)
  365. self.transport.loseConnection()
  366. class Player(protocol.Protocol):
  367. def __init__(self):
  368. self.buffer = ""
  369. self.user = None
  370. self.observer = Observer()
  371. self.game = None
  372. self.glue = None
  373. def connectionMade(self):
  374. """ connected, setup queues.
  375. queue_player is data from player.
  376. queue_game is data to player. (possibly from game)
  377. """
  378. self.queue_player = defer.DeferredQueue()
  379. self.queue_game = defer.DeferredQueue()
  380. self.setGameReceived()
  381. # Connect GlueFactory to this Player object.
  382. factory = GlueFactory(self)
  383. self.glue = factory
  384. # Make connection to the game server
  385. reactor.connectTCP(config["host"], config["port"], factory, 5)
  386. def setGameReceived(self):
  387. """ Get deferred from client queue, callback clientDataReceived. """
  388. self.queue_game.get().addCallback(self.gameDataReceived)
  389. def gameDataReceived(self, chunk):
  390. """ Data received from the game. """
  391. # If we have received game data, it has to be connected.
  392. if self.game is None:
  393. self.game = self.glue.game
  394. if chunk is False:
  395. self.transport.loseConnection()
  396. else:
  397. if type(chunk) == bytes:
  398. self.transport.write(chunk)
  399. elif type(chunk) == str:
  400. self.transport.write(chunk.encode("latin-1"))
  401. else:
  402. log.err("gameDataReceived: type ({0}) given!".format(type(chunk)))
  403. self.transport.write(chunk)
  404. self.setGameReceived()
  405. def dataReceived(self, chunk):
  406. if self.user is None:
  407. self.buffer += chunk.decode("latin-1", "ignore")
  408. parts = self.buffer.split("\x00")
  409. if len(parts) >= 5:
  410. # rlogin we have the username
  411. self.user = parts[1]
  412. log.info("User: {0}".format(self.user))
  413. zpos = self.buffer.rindex("\x00")
  414. self.buffer = self.buffer[zpos + 1 :]
  415. # but I don't need the buffer anymore, so:
  416. self.buffer = ""
  417. # Pass user value on to whatever needs it.
  418. self.observer.emit("user", self.user)
  419. # Unfortunately, the ones interested in this don't exist yet.
  420. if not self.observer.emit("player", chunk):
  421. # Was not dispatched. Send to game.
  422. self.queue_player.put(chunk)
  423. else:
  424. # There's an observer. Don't continue.
  425. return
  426. if chunk == b"~":
  427. prompt = self.game.getPrompt()
  428. # Selection (? for menu): (the game server menu)
  429. # Enter your choice: (game menu)
  430. # Command [TL=00:00:00]:[1800] (?=Help)? : <- YES!
  431. # Computer command [TL=00:00:00]:[613] (?=Help)?
  432. # (and others I've yet to see...)
  433. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  434. menu = ProxyMenu(self.game)
  435. else:
  436. nl = "\n\r"
  437. r = Style.RESET_ALL
  438. log.warn("NNY!")
  439. prompt = self.game.buffer
  440. self.queue_game.put(
  441. r
  442. + nl
  443. + Style.BRIGHT
  444. + "Proxy:"
  445. + Style.RESET_ALL
  446. + " I can't activate at this time."
  447. + nl
  448. )
  449. self.queue_game.put(prompt)
  450. self.queue_player.put("\a")
  451. # self.observer.emit("notyet", prompt)
  452. def connectionLost(self, why):
  453. log.info("lost connection %s" % why)
  454. self.observer.emit("close", why)
  455. self.queue_player.put(False)
  456. def connectionFailed(self, why):
  457. log.error("connectionFailed: %s" % why)
  458. class GlueFactory(protocol.ClientFactory):
  459. # class GlueFactory(protocol.Factory):
  460. maxDelay = 10
  461. protocol = Game
  462. def __init__(self, player: Player):
  463. self.player = player
  464. self.queue_player = player.queue_player
  465. self.queue_game = player.queue_game
  466. self.observer = player.observer
  467. self.game = None
  468. def closeIt(self):
  469. log.info("closeIt")
  470. self.queue_game.put(False)
  471. def getUser(self, user):
  472. log.msg("getUser( %s )" % user)
  473. self.game.logUser(user)
  474. # This was needed when I replaced ClientFactory with Factory.
  475. # def clientConnectionLost(self, connector, why):
  476. # log.debug("clientconnectionlost: %s" % why)
  477. # self.queue_client.put(False)
  478. def clientConnectionFailed(self, connector, why):
  479. log.error("connection to game failed: %s" % why)
  480. self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
  481. # syncterm gets cranky/locks up if we close this here.
  482. # (Because it is still sending rlogin information?)
  483. reactor.callLater(2, self.closeIt)