flexible.py 86 KB

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