tcp-proxy.py 20 KB

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