flexible.py 105 KB

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