|
@@ -2643,64 +2643,78 @@ class ColoScript(object):
|
|
|
d = ask.prompt("Choose a planet", 3, name="planet", digits=True)
|
|
|
d.addCallback(self.planet_chosen)
|
|
|
elif self.state == 3:
|
|
|
+ # Initalize moving to sector 1, Terra
|
|
|
if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
|
self.queue_player.put("N")
|
|
|
elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
self.queue_player.put("E")
|
|
|
elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
- self.queue_player.put("N")
|
|
|
+ self.queue_player.put("EY")
|
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- # We're here!
|
|
|
self.state = 4
|
|
|
self.send2game("1\r")
|
|
|
+ # Move to sector 1, Terra
|
|
|
elif self.state == 4:
|
|
|
+ # Moving to Terra
|
|
|
if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
|
self.queue_player.put("N")
|
|
|
elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
self.queue_player.put("E")
|
|
|
elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
- self.queue_player.put("N")
|
|
|
+ self.queue_player.put("EY")
|
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
self.state = 5
|
|
|
self.send2game("L")
|
|
|
+ # Begin Landing on Terra
|
|
|
elif self.state == 5:
|
|
|
if prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
|
self.send2game("1\r\r\r{0}\r".format(self.planet_sector))
|
|
|
self.state = 6
|
|
|
+ # Planetary Scanner Detected, Move to sector with planet
|
|
|
elif prompt.startswith('Do you wish to (L)eave or (T)ake Colonists? [T] (Q to leave)'):
|
|
|
self.send2game("\r\r{0}\r".format(self.planet_sector))
|
|
|
self.state = 6
|
|
|
+ # No Planetary Scanner Detected, Move to sector with planet
|
|
|
elif self.state == 6:
|
|
|
+ # Moving from Terra to planet_sector
|
|
|
if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
|
self.queue_player.put("N")
|
|
|
elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
self.queue_player.put("E")
|
|
|
elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
- self.queue_player.put("N")
|
|
|
+ self.queue_player.put("EY")
|
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
self.state = 6
|
|
|
self.send2game("L")
|
|
|
+ # Begin Landing on planet
|
|
|
elif prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
|
self.state = 7
|
|
|
self.send2game("{0}\r".format(self.planet_number))
|
|
|
+ # Planetary Scanner Detected selecting planet number
|
|
|
elif prompt.startswith('Planet command (?=help) [D] '):
|
|
|
self.state = 7
|
|
|
self.send2game("D")
|
|
|
+ # No Planetary Scaner skip on
|
|
|
elif self.state == 7:
|
|
|
if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
self.state = 6
|
|
|
self.send2game("E")
|
|
|
+ # Missed moving jump back to state 6
|
|
|
if prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
|
self.queue_player.put("{0}\r".format(self.planet_number))
|
|
|
+ # Planetary Scanner Detected selecting planet number
|
|
|
if prompt.startswith('Planet command (?=help) [D] '):
|
|
|
+ # Unload people and process the loop
|
|
|
self.loops -= 1
|
|
|
if self.loops:
|
|
|
self.state = 3
|
|
|
self.send2game("S\r\r1\rQ")
|
|
|
+ # Jump to state 3 we are not done
|
|
|
else:
|
|
|
self.send2game("S\r\r1\rQ")
|
|
|
self.send2player("\r" + Boxes.alert("Completed ({0})".format(self.maxloops)))
|
|
|
self.deactivate()
|
|
|
+ # Ok we are done
|
|
|
|
|
|
|
|
|
def game_line(self, line: str):
|