Parcourir la source

Display planet choices in nice looking box.

Steve Thielemann il y a 5 ans
Parent
commit
45c99a1e37
1 fichiers modifiés avec 19 ajouts et 4 suppressions
  1. 19 4
      flexible.py

+ 19 - 4
flexible.py

@@ -2012,10 +2012,23 @@ class PlanetUpScript(object):
             # There are either no obvious planets to upgrade, 
             # There are either no obvious planets to upgrade, 
             # or there are multiple planet choices.
             # 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)
             ask = PlayerInput(self.game)
             d = ask.prompt("Choose a planet", 3, name="planet", digits=True)
             d = ask.prompt("Choose a planet", 3, name="planet", digits=True)
@@ -2060,8 +2073,10 @@ class PlanetUpScript(object):
                     self.deactivate()
                     self.deactivate()
                     return
                     return
                 if 'construct one' in prompt:
                 if 'construct one' in prompt:
+                    # No, but start moving things around to build one.
                     self.queue_player.put("N")
                     self.queue_player.put("N")
                 else:
                 else:
+                    # No, and quit the Citadel menu.
                     self.queue_player.put("NQ")
                     self.queue_player.put("NQ")
                 # Xfer cargo, and get ready to travel...
                 # Xfer cargo, and get ready to travel...
             elif prompt.startswith('Citadel command (?=help)'):
             elif prompt.startswith('Citadel command (?=help)'):