proxy.py 19 KB

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