flexible.py 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. from twisted.internet import reactor
  2. from twisted.internet import task
  3. from twisted.internet import defer
  4. from colorama import Fore, Back, Style
  5. from twisted.python import log
  6. from twisted.internet.task import coiterate
  7. from twisted.internet.defer import gatherResults
  8. from itertools import cycle
  9. import pendulum
  10. from pprint import pformat
  11. from galaxy import GameData, PORT_CLASSES, CLASSES_PORT
  12. class SpinningCursor(object):
  13. """ Spinner class, that handles every so many clicks
  14. s = SpinningCursor(5) # every 5
  15. for x in range(10):
  16. if s.click():
  17. print(s.cycle())
  18. """
  19. def __init__(self, every=10):
  20. self.itercycle = cycle(["/", "-", "\\", "|"])
  21. self.count = 0
  22. self.every = every
  23. def reset(self):
  24. self.itercycle = cycle(["/", "-", "\\", "|"])
  25. self.count = 0
  26. def click(self):
  27. self.count += 1
  28. return self.count % self.every == 0
  29. def cycle(self):
  30. return next(self.itercycle)
  31. def merge(color_string):
  32. """ Given a string of colorama ANSI, merge them if you can. """
  33. return color_string.replace("m\x1b[", ";")
  34. class PlayerInput(object):
  35. """ Player Input
  36. Example:
  37. from flexible import PlayerInput
  38. ask = PlayerInput(self.game)
  39. # abort_blank means, if the input field is blank, abort. Use error_back.
  40. d = ask.prompt("What is your quest?", 40, name="quest", abort_blank=True)
  41. # Display the user's input / but not needed.
  42. d.addCallback(ask.output)
  43. d.addCallback(
  44. lambda ignore: ask.prompt(
  45. "What is your favorite color?", 10, name="color"
  46. )
  47. )
  48. d.addCallback(ask.output)
  49. d.addCallback(
  50. lambda ignore: ask.prompt(
  51. "What is your least favorite number?",
  52. 12,
  53. name="number",
  54. digits=True,
  55. )
  56. )
  57. d.addCallback(ask.output)
  58. def show_values(show):
  59. log.msg(show)
  60. self.queue_game.put(pformat(show).replace("\n", "\n\r") + self.nl)
  61. d.addCallback(lambda ignore: show_values(ask.keep))
  62. d.addCallback(self.welcome_back)
  63. # On error, just return back
  64. d.addErrback(self.welcome_back)
  65. """
  66. def __init__(self, game):
  67. # I think game gives us access to everything we need
  68. self.game = game
  69. self.observer = self.game.observer
  70. self.save = None
  71. self.deferred = None
  72. self.queue_game = game.queue_game
  73. self.keep = {}
  74. # default colors
  75. self.c = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)
  76. self.cp = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
  77. # useful consts
  78. self.r = Style.RESET_ALL
  79. self.nl = "\n\r"
  80. self.bsb = "\b \b"
  81. self.keepalive = None
  82. def color(self, c):
  83. self.c = c
  84. def colorp(self, cp):
  85. self.cp = cp
  86. def alive(self):
  87. log.msg("PlayerInput.alive()")
  88. self.game.queue_player.put(" ")
  89. def prompt(self, user_prompt, limit, **kw):
  90. """ Generate prompt for user input.
  91. Note: This returns deferred.
  92. prompt = text displayed.
  93. limit = # of characters allowed.
  94. default = (text to default to)
  95. keywords:
  96. abort_blank : Abort if they give us blank text.
  97. name : Stores the input in self.keep dict.
  98. digits : Only allow 0-9 to be entered.
  99. """
  100. log.msg("PlayerInput({0}, {1}, {2}".format(user_prompt, limit, kw))
  101. self.limit = limit
  102. self.input = ""
  103. self.kw = kw
  104. assert self.save is None
  105. assert self.keepalive is None
  106. # Note: This clears out the server "keep alive"
  107. self.save = self.observer.save()
  108. self.observer.connect("player", self.get_input)
  109. self.keepalive = task.LoopingCall(self.alive)
  110. self.keepalive.start(30)
  111. # We need to "hide" the game output.
  112. # Otherwise it WITH mess up the user input display.
  113. self.to_player = self.game.to_player
  114. self.game.to_player = False
  115. # Display prompt
  116. # self.queue_game.put(self.r + self.nl + self.c + user_prompt + " " + self.cp)
  117. self.queue_game.put(self.r + self.c + user_prompt + self.r + " " + self.cp)
  118. # Set "Background of prompt"
  119. self.queue_game.put(" " * limit + "\b" * limit)
  120. assert self.deferred is None
  121. d = defer.Deferred()
  122. self.deferred = d
  123. log.msg("Return deferred ...", self.deferred)
  124. return d
  125. def get_input(self, chunk):
  126. """ Data from player (in bytes) """
  127. chunk = chunk.decode("latin-1", "ignore")
  128. for ch in chunk:
  129. if ch == "\b":
  130. if len(self.input) > 0:
  131. self.queue_game.put(self.bsb)
  132. self.input = self.input[0:-1]
  133. else:
  134. self.queue_game.put("\a")
  135. elif ch == "\r":
  136. self.queue_game.put(self.r + self.nl)
  137. log.msg("Restore observer dispatch", self.save)
  138. assert not self.save is None
  139. self.observer.load(self.save)
  140. self.save = None
  141. log.msg("Disable keepalive")
  142. self.keepalive.stop()
  143. self.keepalive = None
  144. line = self.input
  145. self.input = ""
  146. assert not self.deferred is None
  147. self.game.to_player = self.to_player
  148. # If they gave us the keyword name, save the value as that name
  149. if "name" in self.kw:
  150. self.keep[self.kw["name"]] = line
  151. if "abort_blank" in self.kw and self.kw["abort_blank"]:
  152. # Abort on blank input
  153. if line.strip() == "":
  154. # Yes, input is blank, abort.
  155. log.msg("errback, abort_blank")
  156. reactor.callLater(
  157. 0, self.deferred.errback, Exception("abort_blank")
  158. )
  159. self.deferred = None
  160. return
  161. # Ok, use deferred.callback, or reactor.callLater?
  162. # self.deferred.callback(line)
  163. reactor.callLater(0, self.deferred.callback, line)
  164. self.deferred = None
  165. return
  166. elif ch.isprintable():
  167. # Printable, but is it acceptable?
  168. if "digits" in self.kw:
  169. if not ch.isdigit():
  170. self.queue_game.put("\a")
  171. continue
  172. if len(self.input) + 1 <= self.limit:
  173. self.input += ch
  174. self.queue_game.put(ch)
  175. else:
  176. self.queue_game.put("\a")
  177. def output(self, line):
  178. """ A default display of what they just input. """
  179. log.msg("PlayerInput.output({0})".format(line))
  180. self.game.queue_game.put(self.r + "[{0}]".format(line) + self.nl)
  181. return line
  182. import re
  183. # The CIMWarpReport -- is only needed if the json file gets damaged in some way.
  184. # or needs to be reset. The warps should automatically update themselves now.
  185. class CIMWarpReport(object):
  186. def __init__(self, game):
  187. self.game = game
  188. self.queue_game = game.queue_game
  189. self.queue_player = game.queue_player
  190. self.observer = game.observer
  191. # Yes, at this point we would activate
  192. self.prompt = game.buffer
  193. self.save = self.observer.save()
  194. # I actually don't want the player input, but I'll grab it anyway.
  195. self.observer.connect("player", self.player)
  196. self.observer.connect("prompt", self.game_prompt)
  197. self.observer.connect("game-line", self.game_line)
  198. # If we want it, it's here.
  199. self.defer = None
  200. self.to_player = self.game.to_player
  201. # Hide what's happening from the player
  202. self.game.to_player = False
  203. self.queue_player.put("^") # Activate CIM
  204. self.state = 1
  205. # self.warpdata = {}
  206. self.warpcycle = SpinningCursor()
  207. def game_prompt(self, prompt):
  208. if prompt == ": ":
  209. if self.state == 1:
  210. # Ok, then we're ready to request the port report
  211. self.warpcycle.reset()
  212. self.queue_player.put("I")
  213. self.state = 2
  214. elif self.state == 2:
  215. self.queue_player.put("Q")
  216. self.state = 3
  217. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  218. if self.state == 3:
  219. # Ok, time to exit
  220. # exit from this...
  221. self.game.to_player = self.to_player
  222. self.observer.load(self.save)
  223. self.save = None
  224. # self.game.warpdata = self.warpdata
  225. self.queue_game.put("\b \b\r\n")
  226. if not self.defer is None:
  227. self.defer.callback(self.game.gamedata.warps)
  228. self.defer = None
  229. def game_line(self, line):
  230. if line == "" or line == ": ":
  231. return
  232. if line == ": ENDINTERROG":
  233. return
  234. if line.startswith('Command [TL='):
  235. return
  236. # This should be the CIM Report Data -- parse it
  237. if self.warpcycle:
  238. if self.warpcycle.click():
  239. self.queue_game.put("\b" + self.warpcycle.cycle())
  240. work = line.strip()
  241. parts = re.split(r"(?<=\d)\s", work)
  242. parts = [int(x) for x in parts]
  243. sector = parts.pop(0)
  244. # tuples are nicer on memory, and the warpdata map isn't going to be changing.
  245. # self.warpdata[sector] = tuple(parts)
  246. self.game.gamedata.warp_to(sector, *parts)
  247. def __del__(self):
  248. log.msg("CIMWarpReport {0} RIP".format(self))
  249. def whenDone(self):
  250. self.defer = defer.Deferred()
  251. # Call this to chain something after we exit.
  252. return self.defer
  253. def player(self, chunk):
  254. """ Data from player (in bytes). """
  255. chunk = chunk.decode("latin-1", "ignore")
  256. key = chunk.upper()
  257. log.msg("CIMWarpReport.player({0}) : I AM stopping...".format(key))
  258. # Stop the keepalive if we are activating something else
  259. # or leaving...
  260. # self.keepalive.stop()
  261. self.queue_game.put("\b \b\r\n")
  262. if not self.defer is None:
  263. # We have something, so:
  264. self.game.to_player = self.to_player
  265. self.observer.load(self.save)
  266. self.save = None
  267. self.defer.errback(Exception("User Abort"))
  268. self.defer = None
  269. else:
  270. # Still "exit" out.
  271. self.game.to_player = self.to_player
  272. self.observer.load(self.save)
  273. # the CIMPortReport will still be needed.
  274. # We can't get fresh report data (that changes) any other way.
  275. class CIMPortReport(object):
  276. """ Parse data from CIM Port Report
  277. Example:
  278. from flexible import CIMPortReport
  279. report = CIMPortReport(self.game)
  280. d = report.whenDone()
  281. d.addCallback(self.port_report)
  282. d.addErrback(self.welcome_back)
  283. def port_report(self, portdata):
  284. self.portdata = portdata
  285. self.queue_game.put("Loaded {0} records.".format(len(portdata)) + self.nl)
  286. self.welcome_back()
  287. def welcome_back(self,*_):
  288. ... restore keep alive timers, etc.
  289. """
  290. def __init__(self, game):
  291. self.game = game
  292. self.queue_game = game.queue_game
  293. self.queue_player = game.queue_player
  294. self.observer = game.observer
  295. # Yes, at this point we would activate
  296. self.prompt = game.buffer
  297. self.save = self.observer.save()
  298. # I actually don't want the player input, but I'll grab it anyway.
  299. self.observer.connect("player", self.player)
  300. self.observer.connect("prompt", self.game_prompt)
  301. self.observer.connect("game-line", self.game_line)
  302. # If we want it, it's here.
  303. self.defer = None
  304. self.to_player = self.game.to_player
  305. log.msg("to_player (stored)", self.to_player)
  306. # Hide what's happening from the player
  307. self.game.to_player = False
  308. self.queue_player.put("^") # Activate CIM
  309. self.state = 1
  310. # self.portdata = {}
  311. self.portcycle = SpinningCursor()
  312. def game_prompt(self, prompt):
  313. if prompt == ": ":
  314. if self.state == 1:
  315. # Ok, then we're ready to request the port report
  316. self.portcycle.reset()
  317. self.queue_player.put("R")
  318. self.state = 2
  319. elif self.state == 2:
  320. self.queue_player.put("Q")
  321. self.state = 3
  322. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  323. if self.state == 3:
  324. # Ok, time to exit
  325. # exit from this...
  326. self.game.to_player = self.to_player
  327. self.observer.load(self.save)
  328. self.save = None
  329. # self.game.portdata = self.portdata
  330. self.queue_game.put("\b \b\r\n")
  331. if not self.defer is None:
  332. self.defer.callback(self.game.gamedata.ports)
  333. self.defer = None
  334. def game_line(self, line: str):
  335. if line == "" or line == ": ":
  336. return
  337. if line == ": ENDINTERROG":
  338. return
  339. # This should be the CIM Report Data -- parse it
  340. if self.portcycle:
  341. if self.portcycle.click():
  342. self.queue_game.put("\b" + self.portcycle.cycle())
  343. work = line.replace("%", "")
  344. parts = re.split(r"(?<=\d)\s", work)
  345. if len(parts) == 8:
  346. port = int(parts[0].strip())
  347. data = dict()
  348. def portBS(info):
  349. if info[0] == "-":
  350. bs = "B"
  351. else:
  352. bs = "S"
  353. return (bs, int(info[1:].strip()))
  354. data["fuel"] = dict()
  355. data["fuel"]["sale"], data["fuel"]["units"] = portBS(parts[1])
  356. data["fuel"]["pct"] = int(parts[2].strip())
  357. data["org"] = dict()
  358. data["org"]["sale"], data["org"]["units"] = portBS(parts[3])
  359. data["org"]["pct"] = int(parts[4].strip())
  360. data["equ"] = dict()
  361. data["equ"]["sale"], data["equ"]["units"] = portBS(parts[5])
  362. data["equ"]["pct"] = int(parts[6].strip())
  363. # Store what this port is buying/selling
  364. data["port"] = (
  365. data["fuel"]["sale"] + data["org"]["sale"] + data["equ"]["sale"]
  366. )
  367. # Convert BBS/SBB to Class number 1-8
  368. data["class"] = CLASSES_PORT[data["port"]]
  369. self.game.gamedata.set_port(port, data)
  370. # self.portdata[port] = data
  371. else:
  372. log.msg("CIMPortReport:", line, "???")
  373. def __del__(self):
  374. log.msg("CIMPortReport {0} RIP".format(self))
  375. def whenDone(self):
  376. self.defer = defer.Deferred()
  377. # Call this to chain something after we exit.
  378. return self.defer
  379. def player(self, chunk):
  380. """ Data from player (in bytes). """
  381. chunk = chunk.decode("latin-1", "ignore")
  382. key = chunk.upper()
  383. log.msg("CIMPortReport.player({0}) : I AM stopping...".format(key))
  384. # Stop the keepalive if we are activating something else
  385. # or leaving...
  386. # self.keepalive.stop()
  387. self.queue_game.put("\b \b\r\n")
  388. if not self.defer is None:
  389. # We have something, so:
  390. self.game.to_player = self.to_player
  391. self.observer.load(self.save)
  392. self.save = None
  393. self.defer.errback(Exception("User Abort"))
  394. self.defer = None
  395. else:
  396. # Still "exit" out.
  397. self.game.to_player = self.to_player
  398. self.observer.load(self.save)
  399. class ScriptPort(object):
  400. """ Performs the Port script.
  401. This is close to the original.
  402. We don't ask for the port to trade with --
  403. because that information is available to us after "D" (display).
  404. We look at the adjacent sectors, and see if we know any ports.
  405. If the ports are burnt (< 20%), we remove them from the list.
  406. If there's just one, we use it. Otherwise we ask them to choose.
  407. """
  408. def __init__(self, game):
  409. self.game = game
  410. self.queue_game = game.queue_game
  411. self.queue_player = game.queue_player
  412. self.observer = game.observer
  413. self.r = Style.RESET_ALL
  414. self.nl = "\n\r"
  415. self.this_sector = None # Starting sector
  416. self.sector1 = None # Current Sector
  417. self.sector2 = None # Next Sector Stop
  418. self.percent = 5 # Stick with the good default.
  419. self.credits = 0
  420. self.last_credits = None
  421. self.times_left = 0
  422. # Activate
  423. self.prompt = game.buffer
  424. self.save = self.observer.save()
  425. self.observer.connect('player', self.player)
  426. self.observer.connect("prompt", self.game_prompt)
  427. self.observer.connect("game-line", self.game_line)
  428. self.defer = None
  429. self.queue_game.put(
  430. self.nl + "Script based on: Port Pair Trading v2.00" + self.r + self.nl
  431. )
  432. self.possible_sectors = None
  433. self.state = 1
  434. self.queue_player.put("D")
  435. # Original, send 'D' to display current sector.
  436. # We could get the sector number from the self.prompt string -- HOWEVER:
  437. # IF! We send 'D', we can also get the sectors around -- we might not even need to
  438. # prompt for sector to trade with (we could possibly figure it out ourselves).
  439. # [Command [TL=00:00:00]:[967] (?=Help)? : D]
  440. # [<Re-Display>]
  441. # []
  442. # [Sector : 967 in uncharted space.]
  443. # [Planets : (M) Into the Darkness]
  444. # [Warps to Sector(s) : 397 - (562) - (639)]
  445. # []
  446. def whenDone(self):
  447. self.defer = defer.Deferred()
  448. # Call this to chain something after we exit.
  449. return self.defer
  450. def deactivate(self):
  451. self.state = 0
  452. log.msg("ScriptPort.deactivate ({0})".format(self.times_left))
  453. assert(not self.save is None)
  454. self.observer.load(self.save)
  455. self.save = None
  456. if self.defer:
  457. self.defer.callback('done')
  458. self.defer = None
  459. def player(self, chunk: bytes):
  460. # If we receive anything -- ABORT!
  461. self.deactivate()
  462. def game_prompt(self, prompt: str):
  463. log.msg("{0} : {1}".format(self.state, prompt))
  464. if self.state == 3:
  465. log.msg("game_prompt: ", prompt)
  466. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  467. self.state = 4
  468. log.msg("Ok, state 4")
  469. if self.sector2 is None:
  470. # Ok, we need to prompt for this.
  471. self.queue_game.put(self.r + self.nl +
  472. "Which sector to trade with? {0}".format(GameData.port_show_part(self.this_sector, self.game.gamedata.ports[self.this_sector])) +
  473. self.nl + Fore.CYAN)
  474. for i, p in enumerate(self.possible):
  475. self.queue_game.put(" " + str(i + 1) + " : " + GameData.port_show_part(p, self.game.gamedata.ports[p]) + self.nl)
  476. pi = PlayerInput(self.game)
  477. def got_need1(*_):
  478. log.msg("Ok, I have:", pi.keep)
  479. if pi.keep['count'].strip() == '':
  480. self.deactivate()
  481. return
  482. self.times_left = int(pi.keep['count'])
  483. if pi.keep['choice'].strip() == '':
  484. self.deactivate()
  485. return
  486. c = int(pi.keep['choice']) -1
  487. if c < 0 or c >= len(self.possible):
  488. self.deactivate()
  489. return
  490. self.sector2 = self.possible[int(pi.keep['choice']) -1]
  491. # self.queue_game.put(pformat(pi.keep).replace("\n", "\n\r"))
  492. self.state = 5
  493. self.trade()
  494. d = pi.prompt("Choose -=>", 5, name='choice', digits=True)
  495. d.addCallback(lambda ignore: pi.prompt("Times to execute script:", 5, name='count', digits=True))
  496. d.addCallback(got_need1)
  497. else:
  498. # We already have our target port, so...
  499. self.queue_game.put(self.r + self.nl + "Trading from {0} ({1}) to default {2} ({3}).".format(
  500. self.this_sector,
  501. self.game.gamedata.ports[self.this_sector]['port'],
  502. self.sector2, self.game.gamedata.ports[self.sector2]['port']) + self.nl
  503. )
  504. self.queue_game.put(self.r + self.nl + "Trading {0}".format(
  505. self.game.gamedata.port_trade_show(self.this_sector,
  506. self.sector2)
  507. ))
  508. # The code is smart enough now, that this can't happen. :( Drat!
  509. if self.game.gamedata.ports[self.this_sector]['port'] == self.game.gamedata.ports[self.sector2]['port']:
  510. self.queue_game.put("Hey dummy! Look out the window! These ports are the same class!" + nl)
  511. self.deactivate()
  512. return
  513. pi = PlayerInput(self.game)
  514. def got_need2(*_):
  515. if pi.keep['count'].strip() == '':
  516. self.deactivate()
  517. return
  518. self.times_left = int(pi.keep['count'])
  519. log.msg("Ok, I have:", pi.keep)
  520. # self.queue_game.put(pformat(pi.keep).replace("\n", "\n\r"))
  521. self.state = 5
  522. self.trade()
  523. self.queue_game.put(self.r + self.nl)
  524. d = pi.prompt("Times to execute script", 5, name='count')
  525. d.addCallback(got_need2)
  526. elif self.state == 6:
  527. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  528. if self.fixable:
  529. self.queue_game.put("Ok! Let's fix this by going to the other sector..." + self.nl)
  530. log.msg("Fixing...")
  531. if self.this_sector == self.sector1:
  532. self.this_sector = self.sector2
  533. self.queue_player.put("{0}\r".format(self.sector2))
  534. self.state = 5
  535. self.trade()
  536. else:
  537. self.this_sector = self.sector1
  538. self.queue_player.put("{0}\r".format(self.sector1))
  539. self.state = 5
  540. self.trade()
  541. elif self.state == 7:
  542. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  543. # Done
  544. if self.this_sector == self.sector1:
  545. self.this_sector = self.sector2
  546. self.queue_player.put("{0}\r".format(self.sector2))
  547. self.state = 10
  548. else:
  549. self.times_left -= 1
  550. if self.times_left <= 0:
  551. # Ok, exit out
  552. self.deactivate()
  553. return
  554. if self.last_credits is None:
  555. self.last_credits = self.credits
  556. else:
  557. if self.credits <= self.last_credits:
  558. log.msg("We don't seem to be making any money here...")
  559. self.queue_game.put(self.r + self.nl + "We don't seem to be making any money here. I'm stopping!" + self.nl)
  560. self.deactivate()
  561. return
  562. self.this_sector = self.sector1
  563. self.queue_player.put("{0}\r".format(self.sector1))
  564. self.state = 10
  565. elif re.match(r'Your offer \[\d+\] \?', prompt):
  566. if self.fix_offer:
  567. # Make real offer / WHAT?@?!
  568. work = prompt.replace(',', '')
  569. parts = re.split(r"\s+", work)
  570. amount = parts[2]
  571. # Ok, we have the amount, now to figure pct...
  572. if self.sell_pct > 100:
  573. self.sell_pct -= 1
  574. else:
  575. self.sell_pct += 1
  576. price = amount * self.sell_pct // 100
  577. log.msg("start: {0} % {1} price {2}".format(amount, self.sell_perc, price))
  578. if self.sell_pct > 100:
  579. self.sell_pct -= 1
  580. else:
  581. self.sell_pct += 1
  582. self.queue_player.put("{0}\r".format(price))
  583. elif self.state == 8:
  584. # What are we trading
  585. # How many holds of Equipment do you want to buy [75]?
  586. if re.match(r"How many holds of .+ do you want to buy \[\d+\]\?", prompt):
  587. parts = prompt.split()
  588. trade_type = parts[4]
  589. if trade_type == 'Fuel':
  590. if (self.tpc in (5,7)) and (self.opc in (2,3,4,8)):
  591. # Can buy equipment - fuel ore is worthless.
  592. self.queue_player.put("0\r")
  593. return
  594. if (self.tpc in(4,7)) and (self.opc in (1,3,5,8)):
  595. # Can buy organics - fuel ore is worthless.
  596. self.queue_player.put("0\r")
  597. return
  598. if (self.tpc in (4,7,3,5)) and (self.opc in (3,4,5,7)):
  599. # No point in buying fuel ore if it can't be sold.
  600. self.queue_player.put("0\r")
  601. return
  602. elif trade_type == 'Organics':
  603. if (self.tpc in (6,7)) and (self.opc in (2,3,4,8)):
  604. # Can buy equipment - organics is worthless.
  605. self.queue_player.put("0\r")
  606. return
  607. if (self.tpc in (2,4,6,7)) and (self.opc in (2,4,6,7)):
  608. # No point in buying organics if it can't be sold.
  609. self.queue_player.put("0\r")
  610. return
  611. elif trade_type == 'Equipment':
  612. if (self.opc in (1,5,6,7)):
  613. # No point in buying equipment if it can't be sold.
  614. self.queue_player.put("0\r")
  615. return
  616. self.queue_player.put("\r")
  617. elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  618. # Done
  619. if self.this_sector == self.sector1:
  620. self.this_sector = self.sector2
  621. self.queue_player.put("{0}\r".format(self.sector2))
  622. self.state = 10
  623. else:
  624. self.times_left -= 1
  625. if self.times_left <= 0:
  626. # Ok, exit out
  627. self.deactivate()
  628. return
  629. if self.last_credits is None:
  630. self.last_credits = self.credits
  631. else:
  632. if self.credits <= self.last_credits:
  633. log.msg("We don't seem to be making any money here...")
  634. self.deactivate()
  635. return
  636. self.this_sector = self.sector1
  637. self.queue_player.put("{0}\r".format(self.sector1))
  638. self.state = 10
  639. def trade(self, *_):
  640. # state 5
  641. log.msg("trade!")
  642. self.queue_player.put("pt") # Port Trade
  643. self.this_port = self.game.gamedata.ports[self.this_sector]
  644. if self.this_sector == self.sector1:
  645. self.other_port = self.game.gamedata.ports[self.sector2]
  646. else:
  647. self.other_port = self.game.gamedata.ports[self.sector1]
  648. # Ok, perform some calculations
  649. self.tpc = self.this_port['class']
  650. self.opc = self.other_port['class']
  651. self.fixable = 0
  652. self.fix_offer = 0
  653. # [ Items Status Trading % of max OnBoard]
  654. # [ ----- ------ ------- -------- -------]
  655. # [Fuel Ore Selling 2573 93% 0]
  656. # [Organics Buying 2960 100% 0]
  657. # [Equipment Buying 1958 86% 0]
  658. # []
  659. # []
  660. # [You have 1,000 credits and 20 empty cargo holds.]
  661. # []
  662. # [We are selling up to 2573. You have 0 in your holds.]
  663. # [How many holds of Fuel Ore do you want to buy [20]? 0]
  664. def game_line(self, line: str):
  665. if line.startswith("You have ") and 'credits and' in line:
  666. parts = line.replace(',', '').split()
  667. credits = int(parts[2])
  668. log.msg("Credits: {0}".format(credits))
  669. self.credits = credits
  670. if self.state == 1:
  671. # First exploration
  672. if line.startswith("Sector :"):
  673. # We have starting sector information
  674. parts = re.split("\s+", line)
  675. self.this_sector = int(parts[2])
  676. # These will be the ones swapped around as we trade back and forth.
  677. self.sector1 = self.this_sector
  678. elif line.startswith("Warps to Sector(s) : "):
  679. # Warps to Sector(s) : 397 - (562) - (639)
  680. _, _, warps = line.partition(':')
  681. warps = warps.replace('-', '').replace('(', '').replace(')', '').strip()
  682. log.msg("Warps: [{0}]".format(warps))
  683. self.warps = [ int(x) for x in re.split("\s+", warps)]
  684. log.msg("Warps: [{0}]".format(self.warps))
  685. self.state = 2
  686. elif self.state == 2:
  687. if line == "":
  688. # Ok, we're done
  689. self.state = 3
  690. # Check to see if we have information on any possible ports
  691. # if hasattr(self.game, 'portdata'):
  692. if True:
  693. if not self.this_sector in self.game.gamedata.ports:
  694. self.state = 0
  695. log.msg("Current sector {0} not in portdata.".format(self.this_sector))
  696. self.queue_game.put(self.r + self.nl + "I can't find the current sector in the portdata." + self.nl)
  697. self.deactivate()
  698. return
  699. else:
  700. # Ok, we are in the portdata
  701. pd = self.game.gamedata.ports[self.this_sector]
  702. if GameData.port_burnt(pd):
  703. log.msg("Current sector {0} port is burnt (<= 20%).".format(self.this_sector))
  704. self.queue_game.put(self.r + self.nl + "Current sector port is burnt out. <= 20%." + self.nl)
  705. self.deactivate()
  706. return
  707. possible = [ x for x in self.warps if x in self.game.gamedata.ports ]
  708. log.msg("Possible:", possible)
  709. # BUG: Sometimes links to another sector, don't link back!
  710. # This causes the game to plot a course / autopilot.
  711. # if hasattr(self.game, 'warpdata'):
  712. if True:
  713. # Great! verify that those warps link back to us!
  714. possible = [ x for x in possible if x in self.game.gamedata.warps and self.this_sector in self.game.gamedata.warps[x]]
  715. if len(possible) == 0:
  716. self.state = 0
  717. self.queue_game.put(self.r + self.nl + "I don't see any ports in [{0}].".format(self.warps) + self.nl)
  718. self.deactivate()
  719. return
  720. possible = [ x for x in possible if not GameData.port_burnt(self.game.gamedata.ports[x]) ]
  721. log.msg("Possible:", possible)
  722. if len(possible) == 0:
  723. self.state = 0
  724. self.queue_game.put(self.r + self.nl + "I don't see any unburnt ports in [{0}].".format(self.warps) + self.nl)
  725. self.deactivate()
  726. return
  727. possible = [ x for x in possible if GameData.port_trading(self.game.gamedata.ports[self.this_sector]['port'], self.game.gamedata.ports[x]['port'])]
  728. self.possible = possible
  729. if len(possible) == 0:
  730. self.state = 0
  731. self.queue_game.put(self.r + self.nl + "I don't see any possible port trades in [{0}].".format(self.warps) + self.nl)
  732. self.deactivate()
  733. return
  734. elif len(possible) == 1:
  735. # Ok! there's only one!
  736. self.sector2 = possible[0]
  737. # Display possible ports:
  738. # spos = [ str(x) for x in possible]
  739. # self.queue_game.put(self.r + self.nl + self.nl.join(spos) + self.nl)
  740. # At state 3, we only get a prompt.
  741. return
  742. else:
  743. self.state = 0
  744. log.msg("We don't have any portdata!")
  745. self.queue_game.put(self.r + self.nl + "I have no portdata. Please run CIM Port Report." + self.nl)
  746. self.deactivate()
  747. return
  748. elif self.state == 5:
  749. if "-----" in line:
  750. self.state = 6
  751. elif self.state == 6:
  752. if "We are buying up to" in line:
  753. # Sell
  754. self.state = 7
  755. self.queue_player.put("\r")
  756. self.sell_perc = 100 + self.percent
  757. if "We are selling up to" in line:
  758. # Buy
  759. self.state = 8
  760. self.sell_perc = 100 - self.percent
  761. if line.startswith('Fuel Ore') or line.startswith('Organics') or line.startswith('Equipment'):
  762. work = line.replace('Fuel Ore', 'Fuel')
  763. parts = re.split(r"\s+", work)
  764. # log.msg(parts)
  765. # Equipment, Selling xxx x% xxx
  766. if parts[-1] != '0' and parts[2] != '0' and parts[1] != 'Buying':
  767. log.msg("We have a problem -- they aren't buying what we have in stock!")
  768. stuff = line[0] # F O or E.
  769. if stuff == 'F':
  770. spos = 0
  771. elif stuff == 'O':
  772. spos = 1
  773. else:
  774. spos = 2
  775. other = self.other_port['port']
  776. if other[spos] == 'B':
  777. self.fixable = 1
  778. if "You don't have anything they want" in line:
  779. # Neither! DRAT!
  780. if not self.fixable:
  781. self.deactivate()
  782. return
  783. if "We're not interested." in line:
  784. log.msg("Try, try again. :(")
  785. self.state = 5
  786. self.trade()
  787. elif self.state == 7:
  788. # Haggle Sell
  789. if "We'll buy them for" in line or "Our final offer" in line:
  790. if "Our final offer" in line:
  791. self.sell_perc -= 1
  792. parts = line.replace(',', '').split()
  793. start_price = int(parts[4])
  794. price = start_price * self.sell_perc // 100
  795. log.msg("start: {0} % {1} price {2}".format(start_price, self.sell_perc, price))
  796. self.sell_perc -= 1
  797. self.queue_player.put("{0}\r".format(price))
  798. if "We are selling up to" in line:
  799. # Buy
  800. self.state = 8
  801. self.sell_perc = 100 - self.percent
  802. if "We're not interested." in line:
  803. log.msg("Try, try again. :(")
  804. self.state = 5
  805. self.trade()
  806. if "WHAT?!@!? you must be crazy!" in line:
  807. log.msg("fix offer")
  808. self.fix_offer = 1
  809. if "So, you think I'm as stupid as you look?" in line:
  810. log.msg("fix offer")
  811. self.fix_offer = 1
  812. if "Quit playing around, you're wasting my time!" in line:
  813. log.msg("fix offer")
  814. self.fix_offer = 1
  815. elif self.state == 8:
  816. # Haggle Buy
  817. if "We'll sell them for" in line or "Our final offer" in line:
  818. if "Our final offer" in line:
  819. self.sell_perc += 1
  820. parts = line.replace(',', '').split()
  821. start_price = int(parts[4])
  822. price = start_price * self.sell_perc // 100
  823. log.msg("start: {0} % {1} price {2}".format(start_price, self.sell_perc, price))
  824. self.sell_perc += 1
  825. self.queue_player.put("{0}\r".format(price))
  826. if "We're not interested." in line:
  827. log.msg("Try, try again. :(")
  828. self.state = 5
  829. self.trade()
  830. elif self.state == 10:
  831. if "Sector : " in line:
  832. # Trade
  833. self.state = 5
  834. reactor.callLater(0, self.trade, 0)
  835. # self.trade()
  836. # elif self.state == 3:
  837. # log.msg("At state 3 [{0}]".format(line))
  838. # self.queue_game.put("At state 3.")
  839. # self.deactivate()
  840. # return
  841. class ScriptExplore(object):
  842. """ Script Explore v1.00
  843. By: David Thielemann
  844. WARNINGS:
  845. We assume the player has a Holo-Scanner!
  846. We assume the player has lots o turns, or unlimited turns!
  847. We assume the player is aware we run infinitly until we can't find new sectors to move to!
  848. """
  849. def __init__(self, game):
  850. self.game = game
  851. self.queue_game = game.queue_game
  852. self.queue_player = game.queue_player
  853. self.observer = game.observer
  854. self.r = Style.RESET_ALL
  855. self.c = merge(Style.BRIGHT + Fore.YELLOW)
  856. self.nl = "\n\r"
  857. # Our Stuff, Not our pants!
  858. self.dense = [] # We did a density, store that info.
  859. self.clear = [] # Warps that we know are clear.
  860. self.didDense = False
  861. self.didHolo = False
  862. self.highsector = 0 # Selected Sector to move to next!
  863. self.highwarp = 0 # Selected Sector's Warp Count!
  864. self.stacksector = set() # Set of sectors that we have not picked but are unexplored... even though we did a holo!
  865. self.oneMoveSector = False
  866. self.times = 0
  867. self.maxtimes = 0
  868. # Activate
  869. self.prompt = game.buffer
  870. self.save = self.observer.save()
  871. self.observer.connect('player', self.player)
  872. self.observer.connect("prompt", self.game_prompt)
  873. self.observer.connect("game-line", self.game_line)
  874. self.defer = None
  875. self.send2player(Boxes.alert("Explorer v1.01", base="green"))
  876. # How many times we going to go today?
  877. ask = PlayerInput(self.game)
  878. def settimes(*_):
  879. times = int(ask.keep['times'].strip())
  880. log.msg("settimes got '{0}'".format(times))
  881. if times == None:
  882. self.deactivate()
  883. else:
  884. self.times = times
  885. self.maxtimes = times
  886. self.send2game("D")
  887. self.state = 1
  888. d = ask.prompt("How many sectors would you lick to explode?", 5, name="times", digits=True)
  889. #d.addCallback(ask.output)
  890. #d.addCallback(lambda ignore: self.settimes(ask.keep))
  891. d.addCallback(settimes)
  892. def whenDone(self):
  893. self.defer = defer.Deferred()
  894. # Call this to chain something after we exit.
  895. return self.defer
  896. def deactivate(self):
  897. self.state = 0
  898. log.msg("ScriptExplore.deactivate()")
  899. assert(not self.save is None)
  900. self.observer.load(self.save)
  901. self.save = None
  902. if self.defer:
  903. self.defer.callback('done')
  904. self.defer = None
  905. def player(self, chunk: bytes):
  906. # If we receive anything -- ABORT!
  907. self.deactivate()
  908. def send2game(self, txt):
  909. self.queue_player.put(txt)
  910. def send2player(self, txt):
  911. self.queue_game.put(
  912. self.nl + txt + self.r + self.nl
  913. )
  914. def resetStuff(self):
  915. self.didDense = False
  916. self.didHolo = False
  917. self.dense = []
  918. self.clear = []
  919. self.highwarp = 0
  920. self.highsector = 0
  921. log.msg("ScriptExplore.resetStuff()")
  922. def game_prompt(self, prompt: str):
  923. log.msg("{0} : {1}".format(self.state, prompt))
  924. if self.state == 2:
  925. if "Select (H)olo Scan or (D)ensity Scan or (Q)uit" in prompt:
  926. self.send2game("D")
  927. self.state += 1
  928. if self.state == 5:
  929. log.msg("dense is {0} sectors big".format(len(self.dense)))
  930. if "Select (H)olo Scan or (D)ensity Scan or (Q)uit" in prompt:
  931. self.send2game("H")
  932. self.state += 1
  933. else:
  934. log.msg("FATAL: No Holo Scanner Installed!")
  935. self.send2player(Boxes.alert("You need a Holo Scanner!"))
  936. self.deactivate()
  937. def game_line(self, line: str):
  938. log.msg("{0} | {1}".format(self.state, line))
  939. #if "Mine Control" in line: # If we don't have a Holo-Scanner and we attempted to do a Holo-scan, abort
  940. # self.deactivate()
  941. if self.state == 1:
  942. # Density Scan
  943. if not self.didDense:
  944. self.send2game("S")
  945. self.didDense = True
  946. if "Relative Density Scan" in line:
  947. self.state = 3
  948. elif "You don't have a long range scanner." in line:
  949. log.msg("FATAL: No Long Range Scanner Installed!")
  950. self.send2player(Boxes.alert("You need a Long Range Scanner!"))
  951. self.deactivate()
  952. elif "Long Range Scan" in line:
  953. self.state += 1
  954. elif self.state == 4:
  955. # Holo Scan
  956. if not self.didHolo:
  957. self.send2game("S")
  958. self.didHolo = True
  959. if "You don't have a long range scanner." in line:
  960. log.msg("FATAL: No Long Range Scanner Installed!")
  961. self.send2player(Boxes.alert("You need a Long Range Scanner!"))
  962. self.deactivate()
  963. elif "Long Range Scan" in line:
  964. self.state += 1
  965. elif self.state == 3:
  966. # Get the Density Data!
  967. if line.startswith("Sector"):
  968. work = line.replace(':', '').replace(')', '').replace('%', '').replace('==>', '')
  969. work = re.split(r"\s+", work)
  970. # 'Sector', '8192', '0', 'Warps', '4', 'NavHaz', '0', 'Anom', 'No'
  971. # 'Sector', '(', '8192)', '0', 'Warps', '4', 'NavHaz', '0', 'Anom', 'No'
  972. # New Sector?
  973. if work[1] == '(':
  974. temp1 = True
  975. else:
  976. temp1 = False
  977. # Yes new sector! So we will add it!
  978. if temp1:
  979. # Switch Anom into bool state
  980. if(work[9] == 'No'):
  981. temp = False
  982. else:
  983. temp = True
  984. self.dense.append( {'sector': int(work[2]), 'density': int(work[3]), 'warps': int(work[5]), 'navhaz': int(work[7]), 'anom': temp} )
  985. # {'sector': 8192, 'density': 0, 'warps': 4, 'navhaz': 0, 'anom': False}
  986. elif line == "":
  987. self.state += 1
  988. elif self.state == 6:
  989. # Begin Processing our data we got from density scan and find highest warp count in what sectors
  990. # Remove sectors with one warp
  991. # Do we have a new place to go? (That is also worth going to)
  992. if not self.dense: # Dense contains no new sectors, abort
  993. log.msg("No New Sectors Found!")
  994. self.send2player(Boxes.alert("Find a new area for me to search in!"))
  995. # Attempt to resolve no new sectors!
  996. if self.stacksector: # Do we have anything on the stack? (If so we set highsector with one of the randomly selected sectors)
  997. self.highsector = self.stacksector.pop()
  998. self.deactivate()
  999. elif self.dense: # Dense does contain at least 1 new sector, continue on
  1000. t = [] # Pre-Test to check if there are just a bunch of 1 warp sectors
  1001. for d in self.dense:
  1002. if d['warps'] > 1:
  1003. t.append(d['sector'])
  1004. if not t: # If there are no sectors with more that 1 warp, abort
  1005. log.msg("No Sectors Found except one move sector!")
  1006. self.send2player(Boxes.alert("Find a new area for me to look at!"))
  1007. # Attempt to resolve no new sectors with more than 1 warp!
  1008. if self.stacksector: # Do we have anything on the stack? (If so we set highsector with one of the randomly selected sectors)
  1009. self.highsector = self.stacksector.pop()
  1010. self.deactivate()
  1011. # Is the sector safe to go into?
  1012. for d in self.dense:
  1013. if not d['anom']:
  1014. # Sector does not contain a Anomoly
  1015. if not d['navhaz']:
  1016. # Sector does not contain Hazards
  1017. if d['density'] in (0, 1, 100, 101):
  1018. # Sector does contain empty space / a beacon / a port / or a beacon and port
  1019. if d['warps'] > 1:
  1020. # If Sector is worth checking out?
  1021. self.clear.append(d['sector'])
  1022. if self.clear: # We have sector(s) we can move to!
  1023. log.msg("Clear Sectors: {0}".format(len(self.clear)))
  1024. # This was state 5 but why can't we reduce number of states? ( Yeah let's kick California and New York out of the US, oh wrong states :P )
  1025. # Sort to find greatest warp count
  1026. for c in self.clear:
  1027. for d in self.dense:
  1028. if d['sector'] == c:
  1029. if d['warps'] > self.highwarp:
  1030. self.highwarp = d['warps']
  1031. self.highsector = d['sector']
  1032. elif d['warps'] == self.highwarp:
  1033. if d['sector'] > self.highsector:
  1034. self.highsector = d['sector']
  1035. if self.highwarp and self.highsector:
  1036. log.msg("Sector: {0:5d} Warps: {1}".format(self.highsector, self.highwarp))
  1037. self.state += 1
  1038. elif self.state == 7:
  1039. # Add the dense scan of unknown sectors onto the stack of sectors, only save the ones we think are clear... for now.
  1040. for c in self.clear:
  1041. self.stacksector.add(c)
  1042. # Remove the sector we are just about to go to, we use discard so if the sector does not exist we don't throw a error!
  1043. self.stacksector.discard(self.highsector)
  1044. # Ok we know the sector we want to go to now let's move it!
  1045. self.send2game("m{0}\n\r".format(self.highsector))
  1046. # Reset Variables for fresh data
  1047. self.resetStuff()
  1048. self.state = 1
  1049. # Warning! Yes we can and will eat all the turns! :P
  1050. self.times -= 1
  1051. if self.times <= 0:
  1052. self.send2player(Boxes.alert("Completed {0}".format(self.maxtimes), base="green"))
  1053. log.msg("Completed {0}".format(self.maxtimes))
  1054. self.deactivate()
  1055. class ScriptSpace(object):
  1056. """ Space Exploration script.
  1057. Send "SD", verify paths are clear.
  1058. Find nearest unknown. Sector + CR.
  1059. Save "shortest path from to" information.
  1060. At 'Engage the Autopilot', Send "S" (Single Step)
  1061. At '[Stop in this sector', Send "SD", verify path is clear.
  1062. Send "SH" (glean sector/port information along the way.)
  1063. Send "N" (Next)!
  1064. Send "SD" / Verify clear.
  1065. Send "SH"
  1066. Repeat for Next closest.
  1067. """
  1068. def __init__(self, game):
  1069. self.game = game
  1070. self.queue_game = game.queue_game
  1071. self.queue_player = game.queue_player
  1072. self.observer = game.observer
  1073. self.r = Style.RESET_ALL
  1074. self.nl = "\n\r"
  1075. self.this_sector = None # Starting sector
  1076. self.target_sector = None # Sector going to
  1077. self.path = []
  1078. self.times_left = 0 # How many times to look for target
  1079. self.density = dict() # Results of density scan. (Just the numbers)
  1080. # Activate
  1081. self.prompt = game.buffer
  1082. self.save = self.observer.save()
  1083. self.observer.connect('player', self.player)
  1084. self.observer.connect("prompt", self.game_prompt)
  1085. self.observer.connect("game-line", self.game_line)
  1086. self.defer = None
  1087. self.queue_game.put(
  1088. self.nl + "Bugz (like space), is big." + self.r + self.nl
  1089. )
  1090. self.state = 1
  1091. self.queue_player.put("SD")
  1092. # Get current density scan + also get the current sector.
  1093. # [Command [TL=00:00:00]:[XXXX] (?=Help)? : D]
  1094. def whenDone(self):
  1095. self.defer = defer.Deferred()
  1096. # Call this to chain something after we exit.
  1097. return self.defer
  1098. def deactivate(self):
  1099. self.state = 0
  1100. log.msg("ScriptPort.deactivate ({0})".format(self.times_left))
  1101. assert(not self.save is None)
  1102. self.observer.load(self.save)
  1103. self.save = None
  1104. if self.defer:
  1105. self.defer.callback('done')
  1106. self.defer = None
  1107. def player(self, chunk: bytes):
  1108. # If we receive anything -- ABORT!
  1109. self.deactivate()
  1110. def unknown_search(self, starting_sector):
  1111. seen = set()
  1112. possible = set()
  1113. possible.add(int(starting_sector))
  1114. done = False
  1115. while not done:
  1116. next_possible = set()
  1117. for s in possible:
  1118. p = self.game.gamedata.get_warps(s)
  1119. if p is not None:
  1120. for pos in p:
  1121. if pos not in seen:
  1122. next_possible.add(pos)
  1123. else:
  1124. log.msg("unknown found:", s)
  1125. self.unknown = s
  1126. done = True
  1127. break
  1128. seen.add(s)
  1129. if self.unknown is None:
  1130. log.msg("possible:", next_possible)
  1131. possible = next_possible
  1132. yield
  1133. def find_unknown(self, starting_sector):
  1134. log.msg("find_unknown( {0})".format(starting_sector))
  1135. d = defer.Deferred()
  1136. # Process things
  1137. self.unknown = None
  1138. c = coiterate(self.unknown_search(starting_sector))
  1139. c.addCallback(lambda unknown: d.callback(self.unknown))
  1140. return d
  1141. def show_unknown(self, sector):
  1142. if sector is None:
  1143. self.deactivate()
  1144. return
  1145. log.msg("Travel to {0}...".format(sector))
  1146. self.queue_player.put("{0}\r".format(sector))
  1147. def game_prompt(self, prompt: str):
  1148. log.msg("{0} : {1}".format(self.state, prompt))
  1149. if self.state == 3:
  1150. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  1151. # this_sector code isn't working -- so! Get sector from prompt
  1152. self.state = 4
  1153. _, _, sector = prompt.partition(']:[')
  1154. sector, _, _ = sector.partition(']')
  1155. self.this_sector = int(sector)
  1156. # Ok, we're done with Density Scan, and we're back at the command prompt
  1157. log.msg("Go find the nearest unknown...")
  1158. d = self.find_unknown(sector)
  1159. d.addCallback(self.show_unknown)
  1160. elif self.state == 6:
  1161. # Engage the autopilot?
  1162. if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
  1163. self.state = 7
  1164. sector = self.path.pop(0)
  1165. if sector in self.density:
  1166. if self.density[sector] in (0, 100):
  1167. # Ok, looks safe!
  1168. self.queue_player.put("S")
  1169. self.this_sector = sector
  1170. else:
  1171. log.msg("FATAL: Density for {0} is {1}".format(sector, self.density[sector]))
  1172. self.deactivate()
  1173. return
  1174. else:
  1175. log.msg("{0} not in density scan? (how's that possible?)".format(sector))
  1176. self.deactivate()
  1177. return
  1178. elif self.state == 7:
  1179. # Ok, we're in a new sector (single stepping through space)
  1180. # update density scan
  1181. if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
  1182. self.queue_player.put("SD")
  1183. self.state = 8
  1184. elif self.state == 10:
  1185. # Because we're here
  1186. if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
  1187. self.queue_player.put("SH")
  1188. self.state = 11
  1189. elif self.state == 11:
  1190. if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
  1191. # Ok, is the density scan clear?
  1192. sector = self.path.pop(0)
  1193. if sector in self.density:
  1194. if self.density[sector] in (0, 100):
  1195. # Ok, looks safe
  1196. self.queue_player.put("N")
  1197. self.state = 7
  1198. self.this_sector = sector
  1199. else:
  1200. log.msg("FATAL: Density for {0} is {1}".format(sector, self.density[sector]))
  1201. self.deactivate()
  1202. return
  1203. else:
  1204. log.msg("{0} not in density scane? (how's that possible...)".format(sector))
  1205. self.deactivate()
  1206. return
  1207. def next_unknown(self, sector):
  1208. log.msg("Unknown is :", sector)
  1209. self.deactivate()
  1210. def game_line(self, line: str):
  1211. log.msg("line {0} : {1}".format(self.state, line))
  1212. if line.startswith('Sector : '):
  1213. work = line.strip()
  1214. parts = re.split(r"\s+", work)
  1215. self.this_sector = int(parts[2])
  1216. log.msg("game_line sector", self.this_sector)
  1217. elif line.startswith("Command [TL=]"):
  1218. # Ok, get the current sector from this
  1219. _, _, sector = line.partition("]:[")
  1220. sector, _, _ = sector.partition("]")
  1221. self.this_sector = int(sector)
  1222. log.msg("current sector: {0}".format(self.this_sector))
  1223. elif line.startswith('Warps to Sector(s) :'):
  1224. # Warps to Sector(s) : 5468
  1225. _, _, work = line.partition(':')
  1226. work = work.strip().replace('(', '').replace(')', '').replace(' - ', ' ')
  1227. parts = [ int(x) for x in work.split(' ')]
  1228. self.path = list(parts)
  1229. if self.state in (1, 8):
  1230. if 'Relative Density Scan' in line:
  1231. # Start Density Scan
  1232. self.state += 1
  1233. self.density = {}
  1234. elif self.state in (2, 9):
  1235. if line == '':
  1236. # End of Density Scan
  1237. self.state += 1
  1238. log.msg("Density: {0}".format(self.density))
  1239. # self.deactivate()
  1240. elif line.startswith('Sector'):
  1241. # Parse Density Scan values
  1242. work = line.replace('(', '').replace(')', '').replace(':', '').replace('%', '').replace(',', '')
  1243. parts = re.split(r'\s+', work)
  1244. log.msg("Sector", parts)
  1245. sector = int(parts[1])
  1246. self.density[sector] = int(parts[3])
  1247. if parts[7] != '0':
  1248. log.msg("NavHaz {0} : {1}".format(parts[7], work))
  1249. self.density[sector] += 99
  1250. if parts[9] != 'No':
  1251. log.msg("Anom {0} : {1}".format(parts[9], work))
  1252. self.density[sector] += 990
  1253. elif self.state == 4:
  1254. # Looking for shortest path message / warp info
  1255. # Or possibly, "We're here!"
  1256. if line.startswith('Sector :') and str(self.unknown) in line:
  1257. # Ok, I'd guess that we're already there!
  1258. # Try it again!
  1259. self.queue_player.put("SD")
  1260. self.state = 1
  1261. if line.startswith('The shortest path'):
  1262. self.state = 5
  1263. elif self.state == 5:
  1264. # This is the warps line
  1265. # Can this be multiple lines?
  1266. if line == "":
  1267. self.state = 6
  1268. else:
  1269. work = line.replace("(", "").replace(")", "").replace(">", "").strip()
  1270. self.path = [int(x) for x in work.split()]
  1271. log.msg("Path:", self.path)
  1272. # Verify
  1273. current = self.path.pop(0)
  1274. if current != self.this_sector:
  1275. log.msg("Failed: {0} != {1}".format(current, self.this_sector))
  1276. self.deactivate()
  1277. return
  1278. elif self.state == 7:
  1279. if self.unknown == self.this_sector:
  1280. # We have arrived!
  1281. log.msg("We're here!")
  1282. self.deactivate()
  1283. from boxes import Boxes
  1284. class ProxyMenu(object):
  1285. """ Display ProxyMenu
  1286. Example:
  1287. from flexible import ProxyMenu
  1288. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  1289. menu = ProxyMenu(self.game)
  1290. """
  1291. def __init__(self, game):
  1292. self.nl = "\n\r"
  1293. self.c = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
  1294. self.r = Style.RESET_ALL
  1295. self.c1 = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)
  1296. self.c2 = merge(Style.NORMAL + Fore.CYAN + Back.BLUE)
  1297. # self.portdata = None
  1298. self.game = game
  1299. self.queue_game = game.queue_game
  1300. self.observer = game.observer
  1301. # Am I using self or game? (I think I want game, not self.)
  1302. # if hasattr(self.game, "portdata"):
  1303. # self.portdata = self.game.portdata
  1304. # else:
  1305. # self.portdata = {}
  1306. # if hasattr(self.game, 'warpdata'):
  1307. # self.warpdata = self.game.warpdata
  1308. # else:
  1309. # self.warpdata = {}
  1310. if hasattr(self.game, 'trade_report'):
  1311. self.trade_report = self.game.trade_report
  1312. else:
  1313. self.trade_report = []
  1314. # Yes, at this point we would activate
  1315. self.prompt = game.buffer
  1316. self.save = self.observer.save()
  1317. self.observer.connect("player", self.player)
  1318. # If we want it, it's here.
  1319. self.defer = None
  1320. self.keepalive = task.LoopingCall(self.awake)
  1321. self.keepalive.start(30)
  1322. self.menu()
  1323. def __del__(self):
  1324. log.msg("ProxyMenu {0} RIP".format(self))
  1325. def whenDone(self):
  1326. self.defer = defer.Deferred()
  1327. # Call this to chain something after we exit.
  1328. return self.defer
  1329. def menu(self):
  1330. box = Boxes(30, color=self.c)
  1331. self.queue_game.put(box.top())
  1332. self.queue_game.put(
  1333. box.row(self.c + "{0:^30}".format("TradeWars Proxy Active")))
  1334. self.queue_game.put(box.middle())
  1335. def menu_item(ch: str, desc: str):
  1336. row = self.c1 + " {0} {1}- {2}{3:25}".format(ch, self.c2, self.c1, desc)
  1337. self.queue_game.put(box.row(row))
  1338. # self.queue_game.put(
  1339. # " " + self.c1 + ch + self.c2 + " - " + self.c1 + desc + self.nl
  1340. # )
  1341. menu_item("D", "Display Report again")
  1342. # menu_item("Q", "Quest")
  1343. # if hasattr(self.game, 'portdata'):
  1344. # ports = len(self.game.portdata)
  1345. # else:
  1346. # ports = '?'
  1347. menu_item("P", "Port CIM Report ({0})".format(len(self.game.gamedata.ports)))
  1348. # if hasattr(self.game, 'warpdata'):
  1349. # warps = len(self.game.warpdata)
  1350. # else:
  1351. # warps = '?'
  1352. menu_item("W", "Warp CIM Report ({0})".format(len(self.game.gamedata.warps)))
  1353. menu_item("T", "Trading Report")
  1354. menu_item("S", "Scripts")
  1355. menu_item("X", "eXit")
  1356. self.queue_game.put(box.bottom())
  1357. self.queue_game.put(" " + self.c + "-=>" + self.r + " ")
  1358. def awake(self):
  1359. log.msg("ProxyMenu.awake()")
  1360. self.game.queue_player.put(" ")
  1361. def port_report(self, portdata: dict):
  1362. # self.portdata = portdata
  1363. # self.game.portdata = portdata
  1364. self.queue_game.put("Loaded {0} ports.".format(len(portdata)) + self.nl)
  1365. self.welcome_back()
  1366. def warp_report(self, warpdata: dict):
  1367. # self.warpdata = warpdata
  1368. # self.game.warpdata = warpdata
  1369. self.queue_game.put("Loaded {0} sectors.".format(len(warpdata)) + self.nl)
  1370. self.welcome_back()
  1371. def make_trade_report(self):
  1372. log.msg("make_trade_report()")
  1373. ok_trades = []
  1374. best_trades = []
  1375. # for sector, pd in self.game.gamedata.ports.items():
  1376. for sector in sorted(self.game.gamedata.ports.keys()):
  1377. pd = self.game.gamedata.ports[sector]
  1378. if not GameData.port_burnt(pd):
  1379. pc = pd['class']
  1380. # Ok, let's look into it.
  1381. if not sector in self.game.gamedata.warps:
  1382. continue
  1383. warps = self.game.gamedata.warps[sector]
  1384. for w in warps:
  1385. # Verify that we have that warp's info, and that the sector is in it.
  1386. # (We can get back from it)
  1387. if w in self.game.gamedata.warps and sector in self.game.gamedata.warps[w]:
  1388. # Ok, we can get there -- and get back!
  1389. if w > sector and w in self.game.gamedata.ports and not GameData.port_burnt(self.game.gamedata.ports[w]):
  1390. # it is > and has a port.
  1391. wd = self.game.gamedata.ports[w]
  1392. wc = wd['class']
  1393. # 1: "BBS",
  1394. # 2: "BSB",
  1395. # 3: "SBB",
  1396. # 4: "SSB",
  1397. # 5: "SBS",
  1398. # 6: "BSS",
  1399. # 7: "SSS",
  1400. # 8: "BBB",
  1401. if pc in (1,5) and wc in (2,4):
  1402. best_trades.append(self.game.gamedata.port_trade_show(sector, w))
  1403. # best_trades.append( "{0:5} -=- {1:5}".format(sector, w))
  1404. elif pc in (2,4) and wc in (1,5):
  1405. best_trades.append(self.game.gamedata.port_trade_show(sector, w))
  1406. # best_trades.append( "{0:5} -=- {1:5}".format(sector, w))
  1407. elif GameData.port_trading(pd['port'], self.game.gamedata.ports[w]['port']):
  1408. # ok_trades.append( "{0:5} -=- {1:5}".format(sector,w))
  1409. ok_trades.append(self.game.gamedata.port_trade_show(sector, w))
  1410. yield
  1411. self.trade_report.append("Best Trades: (org/equ)")
  1412. self.trade_report.extend(best_trades)
  1413. self.trade_report.append("Ok Trades:")
  1414. self.trade_report.extend(ok_trades)
  1415. # self.queue_game.put("BEST TRADES:" + self.nl + self.nl.join(best_trades) + self.nl)
  1416. # self.queue_game.put("OK TRADES:" + self.nl + self.nl.join(ok_trades) + self.nl)
  1417. def show_trade_report(self, *_):
  1418. self.game.trade_report = self.trade_report
  1419. for t in self.trade_report:
  1420. self.queue_game.put(t + self.nl)
  1421. self.welcome_back()
  1422. def player(self, chunk: bytes):
  1423. """ Data from player (in bytes). """
  1424. chunk = chunk.decode("latin-1", "ignore")
  1425. key = chunk.upper()
  1426. log.msg("ProxyMenu.player({0})".format(key))
  1427. # Stop the keepalive if we are activating something else
  1428. # or leaving...
  1429. self.keepalive.stop()
  1430. if key == "T":
  1431. self.queue_game.put(self.c + key + self.r + self.nl)
  1432. # Trade Report
  1433. # do we have enough information to do this?
  1434. # if not hasattr(self.game, 'portdata') and not hasattr(self.game, 'warpdata'):
  1435. # self.queue_game.put("Missing portdata and warpdata." + self.nl)
  1436. # elif not hasattr(self.game, 'portdata'):
  1437. # self.queue_game.put("Missing portdata." + self.nl)
  1438. # elif not hasattr(self.game, 'warpdata'):
  1439. # self.queue_game.put("Missing warpdata." + self.nl)
  1440. # else:
  1441. if True:
  1442. # Yes, so let's start!
  1443. self.trade_report = []
  1444. d = coiterate(self.make_trade_report())
  1445. d.addCallback(self.show_trade_report)
  1446. return
  1447. elif key == "P":
  1448. self.queue_game.put(self.c + key + self.r + self.nl)
  1449. # Activate CIM Port Report
  1450. report = CIMPortReport(self.game)
  1451. d = report.whenDone()
  1452. d.addCallback(self.port_report)
  1453. d.addErrback(self.welcome_back)
  1454. return
  1455. elif key == "W":
  1456. self.queue_game.put(self.c + key + self.r + self.nl)
  1457. # Activate CIM Warp Report
  1458. report = CIMWarpReport(self.game)
  1459. d = report.whenDone()
  1460. d.addCallback(self.warp_report)
  1461. d.addErrback(self.welcome_back)
  1462. return
  1463. elif key == "S":
  1464. self.queue_game.put(self.c + key + self.r + self.nl)
  1465. # Scripts
  1466. self.activate_scripts_menu()
  1467. return
  1468. elif key == "D":
  1469. self.queue_game.put(self.c + key + self.r + self.nl)
  1470. # (Re) Display Trade Report
  1471. if self.trade_report:
  1472. for t in self.trade_report:
  1473. self.queue_game.put(t + self.nl)
  1474. else:
  1475. self.queue_game.put("Missing trade_report." + self.nl)
  1476. # self.queue_game.put(pformat(self.portdata).replace("\n", "\n\r") + self.nl)
  1477. # self.queue_game.put(pformat(self.warpdata).replace("\n", "\n\r") + self.nl)
  1478. elif key == "Q":
  1479. self.queue_game.put(self.c + key + self.r + self.nl)
  1480. # This is an example of chaining PlayerInput prompt calls.
  1481. ask = PlayerInput(self.game)
  1482. d = ask.prompt("What is your quest?", 40, name="quest", abort_blank=True)
  1483. # Display the user's input
  1484. d.addCallback(ask.output)
  1485. d.addCallback(
  1486. lambda ignore: ask.prompt(
  1487. "What is your favorite color?", 10, name="color"
  1488. )
  1489. )
  1490. d.addCallback(ask.output)
  1491. d.addCallback(
  1492. lambda ignore: ask.prompt(
  1493. "What is the meaning of the squirrel?",
  1494. 12,
  1495. name="squirrel",
  1496. digits=True,
  1497. )
  1498. )
  1499. d.addCallback(ask.output)
  1500. def show_values(show):
  1501. log.msg(show)
  1502. self.queue_game.put(pformat(show).replace("\n", "\n\r") + self.nl)
  1503. d.addCallback(lambda ignore: show_values(ask.keep))
  1504. d.addCallback(self.welcome_back)
  1505. # On error, just return back
  1506. # This doesn't seem to be getting called.
  1507. # d.addErrback(lambda ignore: self.welcome_back)
  1508. d.addErrback(self.welcome_back)
  1509. return
  1510. elif key == "X":
  1511. self.queue_game.put(self.c + key + self.r + self.nl)
  1512. self.queue_game.put(Boxes.alert("Proxy done.", base="green"))
  1513. self.observer.load(self.save)
  1514. self.save = None
  1515. # It isn't running (NOW), so don't try to stop it.
  1516. # self.keepalive.stop()
  1517. self.keepalive = None
  1518. # Ok, this is a HORRIBLE idea, because the prompt might be
  1519. # outdated.
  1520. # self.queue_game.put(self.prompt)
  1521. self.prompt = None
  1522. # Possibly: Send '\r' to re-display the prompt
  1523. # instead of displaying the original one.
  1524. self.game.queue_player.put("d")
  1525. # Were we asked to do something when we were done here?
  1526. if self.defer:
  1527. reactor.CallLater(0, self.defer.callback)
  1528. # self.defer.callback()
  1529. self.defer = None
  1530. return
  1531. self.keepalive.start(30, True)
  1532. self.menu()
  1533. def activate_scripts_menu(self):
  1534. self.observer.disconnect("player", self.player)
  1535. self.observer.connect("player", self.scripts_player)
  1536. self.scripts_menu()
  1537. def deactivate_scripts_menu(self, *_):
  1538. self.observer.disconnect("player", self.scripts_player)
  1539. self.observer.connect("player", self.player)
  1540. self.welcome_back()
  1541. def scripts_menu(self, *_):
  1542. c1 = merge(Style.BRIGHT + Fore.CYAN)
  1543. c2 = merge(Style.NORMAL + Fore.CYAN)
  1544. box = Boxes(40, color=c1)
  1545. self.queue_game.put(box.top())
  1546. self.queue_game.put(box.row(c1 + "{0:^40}".format("Scripts")))
  1547. self.queue_game.put(box.middle())
  1548. def menu_item(ch, desc):
  1549. row = " {0}{1} {2}-{3} {4:35}".format(c1, ch, c2, c1, desc)
  1550. # self.queue_game.put(
  1551. # " " + c1 + ch + c2 + " - " + c1 + desc + self.nl
  1552. # )
  1553. self.queue_game.put(box.row(row))
  1554. menu_item("1", "Ports (Trades between two sectors)")
  1555. menu_item("2", "Explore (Strange new sectors)")
  1556. menu_item("3", "Space... the final frontier...")
  1557. menu_item("X", "eXit")
  1558. self.queue_game.put(box.bottom())
  1559. self.queue_game.put(" " + c1 + "-=>" + self.r + " ")
  1560. def scripts_player(self, chunk: bytes):
  1561. """ Data from player (in bytes). """
  1562. chunk = chunk.decode("latin-1", "ignore")
  1563. key = chunk.upper()
  1564. if key == '1':
  1565. self.queue_game.put(self.c + key + self.r + self.nl)
  1566. # Activate this magical event here
  1567. ports = ScriptPort(self.game)
  1568. d = ports.whenDone()
  1569. # d.addCallback(self.scripts_menu)
  1570. # d.addErrback(self.scripts_menu)
  1571. d.addCallback(self.deactivate_scripts_menu)
  1572. d.addErrback(self.deactivate_scripts_menu)
  1573. return
  1574. elif key == '2':
  1575. self.queue_game.put(self.c + key + self.r + self.nl)
  1576. explore = ScriptExplore(self.game)
  1577. d = explore.whenDone()
  1578. d.addCallback(self.deactivate_scripts_menu)
  1579. d.addErrback(self.deactivate_scripts_menu)
  1580. return
  1581. elif key == '3':
  1582. self.queue_game.put(self.c + key + self.r + self.nl)
  1583. space = ScriptSpace(self.game)
  1584. d = space.whenDone()
  1585. d.addCallback(self.deactivate_scripts_menu)
  1586. d.addErrback(self.deactivate_scripts_menu)
  1587. return
  1588. elif key == 'X':
  1589. self.queue_game.put(self.c + key + self.r + self.nl)
  1590. self.deactivate_scripts_menu()
  1591. return
  1592. else:
  1593. self.queue_game.put(self.c + "?" + self.r + self.nl)
  1594. self.scripts_menu()
  1595. def welcome_back(self, *_):
  1596. log.msg("welcome_back")
  1597. self.keepalive.start(30, True)
  1598. self.menu()