|
@@ -635,6 +635,7 @@ class ScriptPort(object):
|
|
elif self.state == 6:
|
|
elif self.state == 6:
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
if self.fixable:
|
|
if self.fixable:
|
|
|
|
+ self.queue_game.put("Ok! Let's fix this by going to the other sector..." + self.nl)
|
|
log.msg("Fixing...")
|
|
log.msg("Fixing...")
|
|
if self.this_sector == self.sector1:
|
|
if self.this_sector == self.sector1:
|
|
self.this_sector = self.sector2
|
|
self.this_sector = self.sector2
|
|
@@ -1471,6 +1472,7 @@ class ScriptSpace(object):
|
|
self.deactivate()
|
|
self.deactivate()
|
|
|
|
|
|
|
|
|
|
|
|
+from boxes import Boxes
|
|
|
|
|
|
class ProxyMenu(object):
|
|
class ProxyMenu(object):
|
|
""" Display ProxyMenu
|
|
""" Display ProxyMenu
|
|
@@ -1486,8 +1488,8 @@ class ProxyMenu(object):
|
|
self.nl = "\n\r"
|
|
self.nl = "\n\r"
|
|
self.c = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
|
|
self.c = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
|
|
self.r = Style.RESET_ALL
|
|
self.r = Style.RESET_ALL
|
|
- self.c1 = merge(Style.BRIGHT + Fore.BLUE)
|
|
|
|
- self.c2 = merge(Style.NORMAL + Fore.CYAN)
|
|
|
|
|
|
+ self.c1 = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)
|
|
|
|
+ self.c2 = merge(Style.NORMAL + Fore.CYAN + Back.BLUE)
|
|
# self.portdata = None
|
|
# self.portdata = None
|
|
self.game = game
|
|
self.game = game
|
|
self.queue_game = game.queue_game
|
|
self.queue_game = game.queue_game
|
|
@@ -1530,14 +1532,21 @@ class ProxyMenu(object):
|
|
return self.defer
|
|
return self.defer
|
|
|
|
|
|
def menu(self):
|
|
def menu(self):
|
|
|
|
+ box = Boxes(30, color=self.c)
|
|
|
|
+
|
|
|
|
+ self.queue_game.put(box.top())
|
|
self.queue_game.put(
|
|
self.queue_game.put(
|
|
- self.nl + self.c + "TradeWars Proxy active." + self.r + self.nl
|
|
|
|
- )
|
|
|
|
|
|
+ box.row(self.c + "{0:^30}".format("TradeWars Proxy Active")))
|
|
|
|
+ self.queue_game.put(box.middle())
|
|
|
|
+
|
|
|
|
|
|
def menu_item(ch: str, desc: str):
|
|
def menu_item(ch: str, desc: str):
|
|
- self.queue_game.put(
|
|
|
|
- " " + self.c1 + ch + self.c2 + " - " + self.c1 + desc + self.nl
|
|
|
|
- )
|
|
|
|
|
|
+ row = self.c1 + " {0} {1}- {2}{3:25}".format(ch, self.c2, self.c1, desc)
|
|
|
|
+ self.queue_game.put(box.row(row))
|
|
|
|
+
|
|
|
|
+ # self.queue_game.put(
|
|
|
|
+ # " " + self.c1 + ch + self.c2 + " - " + self.c1 + desc + self.nl
|
|
|
|
+ # )
|
|
|
|
|
|
menu_item("D", "Display Report again")
|
|
menu_item("D", "Display Report again")
|
|
# menu_item("Q", "Quest")
|
|
# menu_item("Q", "Quest")
|
|
@@ -1554,6 +1563,8 @@ class ProxyMenu(object):
|
|
menu_item("T", "Trading Report")
|
|
menu_item("T", "Trading Report")
|
|
menu_item("S", "Scripts")
|
|
menu_item("S", "Scripts")
|
|
menu_item("X", "eXit")
|
|
menu_item("X", "eXit")
|
|
|
|
+
|
|
|
|
+ self.queue_game.put(box.bottom())
|
|
self.queue_game.put(" " + self.c + "-=>" + self.r + " ")
|
|
self.queue_game.put(" " + self.c + "-=>" + self.r + " ")
|
|
|
|
|
|
def awake(self):
|
|
def awake(self):
|
|
@@ -1772,15 +1783,24 @@ class ProxyMenu(object):
|
|
c1 = merge(Style.BRIGHT + Fore.CYAN)
|
|
c1 = merge(Style.BRIGHT + Fore.CYAN)
|
|
c2 = merge(Style.NORMAL + Fore.CYAN)
|
|
c2 = merge(Style.NORMAL + Fore.CYAN)
|
|
|
|
|
|
|
|
+ box = Boxes(40, color=c1)
|
|
|
|
+
|
|
|
|
+ self.queue_game.put(box.top())
|
|
|
|
+ self.queue_game.put(box.row(c1 + "{0:^40}".format("Scripts")))
|
|
|
|
+ self.queue_game.put(box.middle())
|
|
|
|
+
|
|
def menu_item(ch, desc):
|
|
def menu_item(ch, desc):
|
|
- self.queue_game.put(
|
|
|
|
- " " + c1 + ch + c2 + " - " + c1 + desc + self.nl
|
|
|
|
- )
|
|
|
|
|
|
+ row = " {0}{1} {2}-{3} {4:35}".format(c1, ch, c2, c1, desc)
|
|
|
|
+ # self.queue_game.put(
|
|
|
|
+ # " " + c1 + ch + c2 + " - " + c1 + desc + self.nl
|
|
|
|
+ # )
|
|
|
|
+ self.queue_game.put(box.row(row))
|
|
|
|
|
|
menu_item("1", "Ports (Trades between two sectors)")
|
|
menu_item("1", "Ports (Trades between two sectors)")
|
|
menu_item("2", "Explore (Strange new sectors)")
|
|
menu_item("2", "Explore (Strange new sectors)")
|
|
menu_item("3", "Space... the final frontier...")
|
|
menu_item("3", "Space... the final frontier...")
|
|
menu_item("X", "eXit")
|
|
menu_item("X", "eXit")
|
|
|
|
+ self.queue_game.put(box.bottom())
|
|
self.queue_game.put(" " + c1 + "-=>" + self.r + " ")
|
|
self.queue_game.put(" " + c1 + "-=>" + self.r + " ")
|
|
|
|
|
|
def scripts_player(self, chunk: bytes):
|
|
def scripts_player(self, chunk: bytes):
|