Browse Source

ColoScript now understands Planetary Scanning

david 5 năm trước cách đây
mục cha
commit
2fdc4fe5ec
1 tập tin đã thay đổi với 13 bổ sung3 xóa
  1. 13 3
      flexible.py

+ 13 - 3
flexible.py

@@ -2662,8 +2662,15 @@ class ColoScript(object):
                 self.queue_player.put("N")
             elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):             
                 self.state = 5
-                self.send2game("L\r\r{0}\r".format(self.planet_sector))
+                self.send2game("L")
         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
+            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
+        elif self.state == 6:
             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]'):
@@ -2673,9 +2680,12 @@ class ColoScript(object):
             elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):             
                 self.state = 6
                 self.send2game("L")
-        elif self.state == 6:
+            elif prompt.startswith('Land on which planet <Q to abort> ?'):
+                self.state = 7
+                self.send2game("{0}\r".format(self.planet_number))
+        elif self.state == 7:
             if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
-                self.state = 5
+                self.state = 6
                 self.send2game("E")
             if prompt.startswith('Land on which planet <Q to abort> ?'):
                 self.queue_player.put("{0}\r".format(self.planet_number))