proxy.py 19 KB

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