|
@@ -745,7 +745,7 @@ class ScriptPort(object):
|
|
|
# elif re.match(r"How many holds of .+ do you want to sell \[\d+\]\?", prompt):
|
|
|
# log.info("Sell everything we can...")
|
|
|
# this seems to screw up the sync of everything.
|
|
|
- # self.queue_player.put("\r"))
|
|
|
+ # self.queue_player.put("\r")
|
|
|
|
|
|
elif self.state == 8:
|
|
|
# What are we trading
|
|
@@ -1116,6 +1116,7 @@ class ScriptExplore(object):
|
|
|
self.times = times
|
|
|
self.maxtimes = times
|
|
|
self.send2game("D")
|
|
|
+ log.debug("times: {0} maxtimes: {0}".format(self.times))
|
|
|
self.state = 1
|
|
|
|
|
|
d = ask.prompt("How many sectors would you like to explorer?", 5, name="times", digits=True)
|
|
@@ -2177,14 +2178,17 @@ class ProxyMenu(object):
|
|
|
|
|
|
def config_menu(self, *_):
|
|
|
titlecolor = merge(Style.BRIGHT + Fore.CYAN + Back.BLUE)
|
|
|
+ tc = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
|
|
|
|
|
|
- c1 = merge(Style.BRIGHT + Fore.CYAN + Fore.BLUE)
|
|
|
- c2 = merge(Style.NORMAL + Fore.CYAN + Back.BLACK)
|
|
|
+ c1 = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)
|
|
|
+ c2 = merge(Style.BRIGHT + Fore.CYAN + Back.BLUE)
|
|
|
|
|
|
- box = Boxes(44, color=titlecolor)
|
|
|
+ #box = Boxes(44, color=titlecolor)
|
|
|
+ box = Boxes(44, color=tc)
|
|
|
|
|
|
self.queue_game.put(box.top())
|
|
|
- self.queue_game.put(box.row(titlecolor + "{0:^44}".format("Configuration")))
|
|
|
+ #self.queue_game.put(box.row(titlecolor + "{0:^44}".format("Configuration")))
|
|
|
+ self.queue_game.put(box.row(tc + "{0:^44}".format("Configuration")))
|
|
|
self.queue_game.put(box.middle())
|
|
|
|
|
|
def config_option(index, key, value):
|
|
@@ -2192,7 +2196,7 @@ class ProxyMenu(object):
|
|
|
self.queue_game.put(box.row(row))
|
|
|
|
|
|
def menu_item(ch, desc):
|
|
|
- row = " {0}{1} {2}-{3} {4:39}".format(c1, ch, c2, c1, desc)
|
|
|
+ row = "{0} {1} {2}-{3} {4:39}".format(c1, ch, c2, c1, desc)
|
|
|
# self.queue_game.put(
|
|
|
# " " + c1 + ch + c2 + " - " + c1 + desc + self.nl
|
|
|
# )
|
|
@@ -2214,7 +2218,7 @@ class ProxyMenu(object):
|
|
|
menu_item("E", "Edit Item")
|
|
|
menu_item("X", "eXit")
|
|
|
self.queue_game.put(box.bottom())
|
|
|
- self.queue_game.put(" " + c1 + "-=>" + self.r + " ")
|
|
|
+ self.queue_game.put(" " + tc + "-=>" + self.r + " ")
|
|
|
|
|
|
|
|
|
|