tcp-proxy.py 20 KB

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