Ver Fonte

PlanetUp fixes to get back from 1 with colonists.

It was stopping/hanging, not getting into express mode.
Tried some fixes.  Also need to detect when out of turns.
Steve Thielemann há 5 anos atrás
pai
commit
f2c321a5e4
1 ficheiros alterados com 10 adições e 1 exclusões
  1. 10 1
      flexible.py

+ 10 - 1
flexible.py

@@ -2191,7 +2191,8 @@ class PlanetUpScript(object):
                                 self.queue_game.put(self.nl + Boxes.alert("Find Nearest Failed!"))
                                 self.deactivate()
                                 return
-                            self.queue_player.put("{0}\rE".format(place))
+                            self.queue_player.put("{0}\r".format(place))
+                            # self.queue_player.put("{0}\rE".format(place))
                             self.state = 7
                             return
                     # Ok, upgrade time!
@@ -2252,6 +2253,7 @@ class PlanetUpScript(object):
                 self.queue_player.put("{0}\rE".format(self.planet_sector))
                 self.state = 9
         elif self.state == 9:
+            log.info("prompt9 {0} : {1}".format(self.state, prompt))
             if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
                 # land
                 self.queue_player.put('L')
@@ -2259,6 +2261,8 @@ class PlanetUpScript(object):
                 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('Engage Express mode? (Y/N) [N] '):
+                self.queue_player.put('Y')
             elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
                 self.queue_player.put("N")
             elif prompt.startswith('Land on which planet <Q to abort> ?'):
@@ -2422,6 +2426,11 @@ class PlanetUpScript(object):
                 _, _, holds = line.partition('[')
                 holds, _, _ = holds.partition(']')
                 self.fetch_amount = int(holds)
+        elif self.state == 9:
+            if re.match(r'You have \d turns left.', line):
+                parts = line.split()
+                turns = int(parts[2])
+                log.debug("Turns: {0}".format(turns))