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