|
@@ -2012,10 +2012,23 @@ class PlanetUpScript(object):
|
|
|
# There are either no obvious planets to upgrade,
|
|
|
# or there are multiple planet choices.
|
|
|
|
|
|
- # TODO: A nice box with our planet choices inside.
|
|
|
- self.queue_game.put("Choose:" + self.nl)
|
|
|
- for s in self.planets.keys():
|
|
|
- self.queue_game.put("{0} [{1}] {2}\r\n".format( s, self.planets[s]['sector'], self.planets[s]['name']))
|
|
|
+ tc = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
|
|
|
+ c1 = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)
|
|
|
+ c2 = merge(Style.BRIGHT + Fore.CYAN + Back.BLUE)
|
|
|
+
|
|
|
+ box = Boxes(44, color=tc)
|
|
|
+ self.queue_game.put(box.top())
|
|
|
+ self.queue_game.put(box.row(tc + "{0:3} {1:6} {2:33}".format(" # ", "Sector", "Planet Name")))
|
|
|
+ self.queue_game.put(box.middle())
|
|
|
+
|
|
|
+ def planet_output(number, sector, name):
|
|
|
+ row = "{0}{1:^3} {2:6} {3}{4:33}".format(c1, number, sector, c2, name)
|
|
|
+ self.queue_game.put(box.row(row))
|
|
|
+
|
|
|
+ for s in sorted(self.planets.keys()):
|
|
|
+ planet_output(s, self.planets[s]['sector'], self.planets[s]['name'])
|
|
|
+
|
|
|
+ self.queue_game.put(box.bottom())
|
|
|
|
|
|
ask = PlayerInput(self.game)
|
|
|
d = ask.prompt("Choose a planet", 3, name="planet", digits=True)
|
|
@@ -2060,8 +2073,10 @@ class PlanetUpScript(object):
|
|
|
self.deactivate()
|
|
|
return
|
|
|
if 'construct one' in prompt:
|
|
|
+ # No, but start moving things around to build one.
|
|
|
self.queue_player.put("N")
|
|
|
else:
|
|
|
+ # No, and quit the Citadel menu.
|
|
|
self.queue_player.put("NQ")
|
|
|
# Xfer cargo, and get ready to travel...
|
|
|
elif prompt.startswith('Citadel command (?=help)'):
|