flexible.py 79 KB

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