|
@@ -2683,6 +2683,9 @@ class ColoScript(object):
|
|
elif prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
elif prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
self.state = 7
|
|
self.state = 7
|
|
self.send2game("{0}\r".format(self.planet_number))
|
|
self.send2game("{0}\r".format(self.planet_number))
|
|
|
|
+ elif prompt.startswith('Planet command (?=help) [D] '):
|
|
|
|
+ self.state = 7
|
|
|
|
+ self.send2game("D")
|
|
elif self.state == 7:
|
|
elif self.state == 7:
|
|
if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
self.state = 6
|
|
self.state = 6
|
|
@@ -3087,7 +3090,7 @@ class ProxyMenu(object):
|
|
return
|
|
return
|
|
# self.queue_game.put(pformat(self.portdata).replace("\n", "\n\r") + self.nl)
|
|
# self.queue_game.put(pformat(self.portdata).replace("\n", "\n\r") + self.nl)
|
|
# self.queue_game.put(pformat(self.warpdata).replace("\n", "\n\r") + self.nl)
|
|
# self.queue_game.put(pformat(self.warpdata).replace("\n", "\n\r") + self.nl)
|
|
- elif key == "Q":
|
|
|
|
|
|
+ """ elif key == "Q":
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
|
|
|
|
# This is an example of chaining PlayerInput prompt calls.
|
|
# This is an example of chaining PlayerInput prompt calls.
|
|
@@ -3126,7 +3129,7 @@ class ProxyMenu(object):
|
|
# This doesn't seem to be getting called.
|
|
# This doesn't seem to be getting called.
|
|
# d.addErrback(lambda ignore: self.welcome_back)
|
|
# d.addErrback(lambda ignore: self.welcome_back)
|
|
d.addErrback(self.welcome_back)
|
|
d.addErrback(self.welcome_back)
|
|
- return
|
|
|
|
|
|
+ return """
|
|
|
|
|
|
elif key == "X":
|
|
elif key == "X":
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|