proxy.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  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. work = work.strip().replace("(", "").replace(")", "").replace(" - ", " ")
  191. parts = [int(x) for x in work.split(" ")]
  192. self.log.debug("Sectorline warps {0}".format(parts))
  193. self.gamedata.warp_to(self.current_sector, *parts)
  194. self.sector_state = "normal"
  195. self.linestate = ""
  196. def portline(self, line: str):
  197. # Map these items to which keys
  198. self.log.debug("portline({0}): {1}".format(self.current_sector, line))
  199. mapto = {"Fuel": "fuel", "Organics": "org", "Equipment": "equ"}
  200. if "%" in line:
  201. # Fuel Ore Buying 2890 100% 0
  202. work = line.replace("Fuel Ore", "Fuel").replace("%", "")
  203. parts = re.split(r"\s+", work)
  204. data = {
  205. mapto[parts[0]]: {
  206. "sale": parts[1][0],
  207. "units": parts[2],
  208. "pct": int(parts[3]),
  209. }
  210. }
  211. # log.debug("Setting {0} to {1}".format(self.current_sector, data))
  212. self.gamedata.set_port(self.current_sector, data)
  213. # log.debug("NOW: {0}".format(self.gamedata.ports[self.current_sector]))
  214. def lineReceived(self, line: str):
  215. """ line received from the game. """
  216. if "log_lines" in config and config["log_lines"]:
  217. self.log.debug("<< [{0}]".format(line))
  218. if "TradeWars Game Server" in line and "Copyright (C) EIS" in line:
  219. # We are not in a game
  220. if not self.game is None:
  221. # We were in a game.
  222. self.game = None
  223. self.observer.emit("user-game", (self.factory.player.user, self.game))
  224. elif "Selection (? for menu): " in line:
  225. game = line[-1]
  226. if game >= "A" and game < "Q":
  227. self.game = game
  228. log.info("Game: {0}".format(self.game))
  229. self.observer.emit("user-game", (self.factory.player.user, self.game))
  230. # Process.pas parse line
  231. if line.startswith("Command [TL=]"):
  232. # Ok, get the current sector from this
  233. _, _, sector = line.partition("]:[")
  234. sector, _, _ = sector.partition("]")
  235. self.current_sector = int(sector)
  236. self.log.info("current sector: {0}".format(self.current_sector))
  237. if line.startswith("The shortest path (") or line.startswith(" TO > "):
  238. self.linestate = "warpline"
  239. self.lastwarp = 0
  240. elif line.startswith(" Items Status Trading % of max OnBoard"):
  241. self.linestate = "port"
  242. elif self.linestate == "warpline":
  243. if line == "":
  244. self.linestate = ""
  245. else:
  246. self.warpline(line)
  247. elif self.linestate == "portcim" or self.linestate == "warpcim":
  248. if line == ": ENDINTERROG":
  249. self.linestate = ""
  250. elif line == ": ":
  251. self.linestate = "cim"
  252. elif line == "":
  253. self.linestate = ""
  254. else:
  255. if len(line) > 2:
  256. self.cimline(line)
  257. elif self.linestate == "cim":
  258. if line == ": ENDINTERROG" or line == "":
  259. self.linestate = ""
  260. elif len(line) > 2:
  261. if line.rstrip()[-1] == "%":
  262. self.linestate = "portcim"
  263. else:
  264. self.linestate = "warpcim"
  265. self.cimline(line)
  266. elif line.startswith(": "):
  267. self.linestate = "cim"
  268. elif line.startswith("Sector : "):
  269. # Sector : 2565 in uncharted space.
  270. self.linestate = "sector"
  271. work = line.strip()
  272. parts = re.split(r"\s+", work)
  273. self.current_sector = int(parts[2])
  274. elif self.linestate == "sector":
  275. self.sectorline(line)
  276. elif self.linestate == "port":
  277. if line == "":
  278. self.linestate = ""
  279. else:
  280. self.portline(line)
  281. self.observer.emit("game-line", line)
  282. def getPrompt(self):
  283. """ Return the current prompt, stripped of ANSI. """
  284. return cleanANSI(self.buffer)
  285. def dataReceived(self, chunk):
  286. """ Data received from the Game.
  287. Remove backspaces.
  288. Treat some ANSI codes as NewLine.
  289. Remove ANSI.
  290. Break into lines.
  291. Trim out carriage returns.
  292. Call lineReceived().
  293. "Optionally" pass data to player.
  294. FUTURE: trigger on prompt. [cleanANSI(buffer)]
  295. """
  296. # Store the text into the buffer before we inject into it.
  297. self.buffer += chunk.decode("latin-1", "ignore")
  298. # log.debug("data: [{0}]".format(repr(chunk)))
  299. if b"TWGS v2.20b" in chunk and b"www.eisonline.com" in chunk:
  300. # Ok, we have a possible target.
  301. target = b"www.eisonline.com\n\r"
  302. pos = chunk.find(target)
  303. if pos != -1:
  304. # Found it! Inject!
  305. message = (
  306. "TWGS Proxy build " + version + ". ~ to activate in game.\n\r"
  307. )
  308. chunk = (
  309. chunk[0 : pos + len(target)]
  310. + message.encode("latin-1")
  311. + chunk[pos + len(target) :]
  312. )
  313. # Sequence error:
  314. # If I don't put the chunk(I received) to the player.
  315. # anything I display -- lineReceive() put() ... would
  316. # be out of order. (I'd be responding -- before it
  317. # was displayed to the user.)
  318. if self.to_player:
  319. self.queue_game.put(chunk)
  320. # self.buffer += chunk.decode("latin-1", "ignore")
  321. #
  322. # Begin processing the buffer
  323. #
  324. # Process any backspaces
  325. while "\b" in self.buffer:
  326. part = self.buffer.partition("\b")
  327. self.buffer = part[0][:-1] + part[2]
  328. # Treat some ANSI codes as a newline
  329. self.buffer = treatAsNL(self.buffer)
  330. # Break into lines
  331. while "\n" in self.buffer:
  332. part = self.buffer.partition("\n")
  333. line = part[0].replace("\r", "")
  334. # Clean ANSI codes from line
  335. line = cleanANSI(line)
  336. self.lineReceived(line)
  337. self.buffer = part[2]
  338. self.observer.emit("prompt", self.getPrompt())
  339. def connectionLost(self, why):
  340. self.log.info("Game connectionLost because: %s" % why)
  341. self.observer.emit("close", why)
  342. self.queue_game.put(False)
  343. self.transport.loseConnection()
  344. class Player(protocol.Protocol):
  345. def __init__(self):
  346. self.buffer = ""
  347. self.user = None
  348. self.observer = Observer()
  349. self.game = None
  350. self.glue = None
  351. def connectionMade(self):
  352. """ connected, setup queues.
  353. queue_player is data from player.
  354. queue_game is data to player. (possibly from game)
  355. """
  356. self.queue_player = defer.DeferredQueue()
  357. self.queue_game = defer.DeferredQueue()
  358. self.setGameReceived()
  359. # Connect GlueFactory to this Player object.
  360. factory = GlueFactory(self)
  361. self.glue = factory
  362. # Make connection to the game server
  363. reactor.connectTCP(config["host"], config["port"], factory, 5)
  364. def setGameReceived(self):
  365. """ Get deferred from client queue, callback clientDataReceived. """
  366. self.queue_game.get().addCallback(self.gameDataReceived)
  367. def gameDataReceived(self, chunk):
  368. """ Data received from the game. """
  369. # If we have received game data, it has to be connected.
  370. if self.game is None:
  371. self.game = self.glue.game
  372. if chunk is False:
  373. self.transport.loseConnection()
  374. else:
  375. if type(chunk) == bytes:
  376. self.transport.write(chunk)
  377. elif type(chunk) == str:
  378. self.transport.write(chunk.encode("latin-1"))
  379. else:
  380. log.err("gameDataReceived: type ({0}) given!".format(type(chunk)))
  381. self.transport.write(chunk)
  382. self.setGameReceived()
  383. def dataReceived(self, chunk):
  384. if self.user is None:
  385. self.buffer += chunk.decode("latin-1", "ignore")
  386. parts = self.buffer.split("\x00")
  387. if len(parts) >= 5:
  388. # rlogin we have the username
  389. self.user = parts[1]
  390. log.info("User: {0}".format(self.user))
  391. zpos = self.buffer.rindex("\x00")
  392. self.buffer = self.buffer[zpos + 1 :]
  393. # but I don't need the buffer anymore, so:
  394. self.buffer = ""
  395. # Pass user value on to whatever needs it.
  396. self.observer.emit("user", self.user)
  397. # Unfortunately, the ones interested in this don't exist yet.
  398. if not self.observer.emit("player", chunk):
  399. # Was not dispatched. Send to game.
  400. self.queue_player.put(chunk)
  401. else:
  402. # There's an observer. Don't continue.
  403. return
  404. if chunk == b"~":
  405. prompt = self.game.getPrompt()
  406. # Selection (? for menu): (the game server menu)
  407. # Enter your choice: (game menu)
  408. # Command [TL=00:00:00]:[1800] (?=Help)? : <- YES!
  409. # Computer command [TL=00:00:00]:[613] (?=Help)?
  410. # (and others I've yet to see...)
  411. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  412. menu = ProxyMenu(self.game)
  413. else:
  414. nl = "\n\r"
  415. r = Style.RESET_ALL
  416. log.warn("NNY!")
  417. prompt = self.game.buffer
  418. self.queue_game.put(
  419. r
  420. + nl
  421. + Style.BRIGHT
  422. + "Proxy:"
  423. + Style.RESET_ALL
  424. + " I can't activate at this time."
  425. + nl
  426. )
  427. self.queue_game.put(prompt)
  428. self.queue_player.put("\a")
  429. # self.observer.emit("notyet", prompt)
  430. def connectionLost(self, why):
  431. log.info("lost connection %s" % why)
  432. self.observer.emit("close", why)
  433. self.queue_player.put(False)
  434. def connectionFailed(self, why):
  435. log.error("connectionFailed: %s" % why)
  436. class GlueFactory(protocol.ClientFactory):
  437. # class GlueFactory(protocol.Factory):
  438. maxDelay = 10
  439. protocol = Game
  440. def __init__(self, player: Player):
  441. self.player = player
  442. self.queue_player = player.queue_player
  443. self.queue_game = player.queue_game
  444. self.observer = player.observer
  445. self.game = None
  446. def closeIt(self):
  447. log.info("closeIt")
  448. self.queue_game.put(False)
  449. def getUser(self, user):
  450. log.msg("getUser( %s )" % user)
  451. self.game.logUser(user)
  452. # This was needed when I replaced ClientFactory with Factory.
  453. # def clientConnectionLost(self, connector, why):
  454. # log.debug("clientconnectionlost: %s" % why)
  455. # self.queue_client.put(False)
  456. def clientConnectionFailed(self, connector, why):
  457. log.error("connection to game failed: %s" % why)
  458. self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
  459. # syncterm gets cranky/locks up if we close this here.
  460. # (Because it is still sending rlogin information?)
  461. reactor.callLater(2, self.closeIt)