flexible.py 85 KB

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