Procházet zdrojové kódy

Update comments on PlanetUp, Terror.

Terror should handle when next trade pair is 1 warp away.
I think terror should work when you have transwarp drive.
Steve Thielemann před 5 roky
rodič
revize
911a28cef0
1 změnil soubory, kde provedl 48 přidání a 6 odebrání
  1. 48 6
      flexible.py

+ 48 - 6
flexible.py

@@ -1756,6 +1756,10 @@ class ScriptTerror(object):
     Move to it, fire off the Port Trading script.
     Move to it, fire off the Port Trading script.
     Repeat until our loop is done, or there's no more
     Repeat until our loop is done, or there's no more
     pairs.
     pairs.
+
+    state=1 entered sector number to move to.
+    state=2 (route "The shortest path")
+            Fire ScriptPort.  Callback journey_on.
     """
     """
     def __init__(self, game, proxy, count):
     def __init__(self, game, proxy, count):
         self.game = game
         self.game = game
@@ -1816,7 +1820,10 @@ class ScriptTerror(object):
             self.queue_player.put("{0}\r".format(self.target_sector))
             self.queue_player.put("{0}\r".format(self.target_sector))
 
 
     def find_next_good_trade_pair(self):
     def find_next_good_trade_pair(self):
-        """ Find the next GOOD trade pair sector. """
+        """ Find the next GOOD trade pair sector. 
+        
+            Should this be the next NEAREST?
+        """
 
 
         show_limit = 90
         show_limit = 90
         # Look for "GOOD" trades
         # Look for "GOOD" trades
@@ -1947,6 +1954,8 @@ class ScriptTerror(object):
         if self.state == 1:
         if self.state == 1:
             if line.startswith('The shortest path ('):
             if line.startswith('The shortest path ('):
                 self.state = 2
                 self.state = 2
+            elif line.startswith('Warping to Sector '):
+                self.state = 2
             elif line.startswith("You are already in that sector!"):
             elif line.startswith("You are already in that sector!"):
                 # Whoops.
                 # Whoops.
                 ports = ScriptPort(self.game)
                 ports = ScriptPort(self.game)
@@ -1955,6 +1964,29 @@ class ScriptTerror(object):
                 d.addErrback(self.journey_on)
                 d.addErrback(self.journey_on)
 
 
 class PlanetUpScript(object):
 class PlanetUpScript(object):
+    """
+        Planet Upgrade Script
+
+        state=1  Pulling TLQ (Team/Corp List Planets)
+            Pulling CYQ (Computer, Your planets)
+        state=2  'Personal Planet Scan' or 'Corporate Planet Scan' parse.
+
+        Display  list of planets, and prompt user for planet number to upgrade.
+
+        state=3  Moving to planet
+        state=4  Landing on planet, parse planet contents.  select 'C'
+        state=5  Parse requirements for next upgrade
+        state=6  move to next needed item. (Colonists, F, O, E)
+                 If completed, 'L' and state=4
+                 Otherwise move, fetch=ITEM, and state=7
+        state=7  travel to where we need something.
+                 Once there, L (land) for Colonist, otherwise PT (Port trade)
+        state=8  Return to planet.
+        state=9  At planet, or in route.  
+                 Land.  Transfer Colonists/Cargo.  state=6              
+
+            
+    """
     def __init__(self, game):
     def __init__(self, game):
         self.game = game
         self.game = game
         self.queue_game = game.queue_game
         self.queue_game = game.queue_game
@@ -1977,6 +2009,7 @@ class PlanetUpScript(object):
         self.defer = None
         self.defer = None
         self.to_player = self.game.to_player
         self.to_player = self.game.to_player
         self.planets = {}
         self.planets = {}
+        self.citadel = False
 
 
         # Hide what's happening from the player
         # Hide what's happening from the player
         self.game.to_player = False
         self.game.to_player = False
@@ -2077,6 +2110,9 @@ class PlanetUpScript(object):
                 if ready:
                 if ready:
                     self.queue_game.put(self.nl + Boxes.alert("Party Planet Pants On!"))
                     self.queue_game.put(self.nl + Boxes.alert("Party Planet Pants On!"))
                     self.queue_player.put('YQ')
                     self.queue_player.put('YQ')
+                    if self.citadel:
+                        # Need extra Quit to get out of citadel, then out of planet.
+                        self.queue_player.put('Q')
                     self.deactivate()
                     self.deactivate()
                     return
                     return
                 if 'construct one' in prompt:
                 if 'construct one' in prompt:
@@ -2088,6 +2124,7 @@ class PlanetUpScript(object):
                 # Xfer cargo, and get ready to travel...
                 # Xfer cargo, and get ready to travel...
             elif prompt.startswith('Citadel command (?=help)'):
             elif prompt.startswith('Citadel command (?=help)'):
                 self.queue_player.put('U')
                 self.queue_player.put('U')
+                self.citadel = True
             if prompt.startswith('Planet command (?=help) [D] '):
             if prompt.startswith('Planet command (?=help) [D] '):
                 # self.queue_game.put(pformat(self.ship_cargo).replace("\n", self.nl) + self.nl)
                 # self.queue_game.put(pformat(self.ship_cargo).replace("\n", self.nl) + self.nl)
                 # self.queue_game.put(pformat(self.cargo).replace("\n", self.nl) + self.nl)                
                 # self.queue_game.put(pformat(self.cargo).replace("\n", self.nl) + self.nl)                
@@ -2150,6 +2187,10 @@ class PlanetUpScript(object):
                 self.queue_game.put("OH NOSE!" + self.nl)
                 self.queue_game.put("OH NOSE!" + self.nl)
                 self.deactivate()
                 self.deactivate()
                 return
                 return
+            elif 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] ?'):
             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("N")
             elif re.match(r"How many holds of .+ do you want to buy \[\d+\]\? ", prompt):
             elif re.match(r"How many holds of .+ do you want to buy \[\d+\]\? ", prompt):
@@ -2179,12 +2220,14 @@ class PlanetUpScript(object):
             if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
             if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
                 # land
                 # land
                 self.queue_player.put('L')
                 self.queue_player.put('L')
-            elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ? '):
+            elif prompt.startswith('Do you want to engage the TransWarp drive? '):
                 self.queue_player.put("N")
                 self.queue_player.put("N")
-            elif prompt.startswith('Land on which planet <Q to abort> ?'):
-                self.queue_player.put("{0}\r".format(self.planet_number))
+            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] ?'):
             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("N")
+            elif prompt.startswith('Land on which planet <Q to abort> ?'):
+                self.queue_player.put("{0}\r".format(self.planet_number))
             elif prompt.startswith("Planet command (?=help) [D]"):
             elif prompt.startswith("Planet command (?=help) [D]"):
                 if self.fetch == 'C':
                 if self.fetch == 'C':
                     # Colonist / No display Planet / Leave
                     # Colonist / No display Planet / Leave
@@ -2196,7 +2239,6 @@ class PlanetUpScript(object):
                 self.queue_player.put("{0}\r\rQ".format(self.cargo_index[self.fetch] + 1))
                 self.queue_player.put("{0}\r\rQ".format(self.cargo_index[self.fetch] + 1))
                 self.cargo[self.fetch] += self.fetch_amount
                 self.cargo[self.fetch] += self.fetch_amount
                 self.state = 6
                 self.state = 6
-
             elif prompt.startswith('(1)Ore, (2)Org or (3)Equipment Production?'):
             elif prompt.startswith('(1)Ore, (2)Org or (3)Equipment Production?'):
                 log.info("place_people: {0}".format(self.place_people))
                 log.info("place_people: {0}".format(self.place_people))
                 safe_places = [ k for k in self.place_people.keys() if self.place_people[k] ]
                 safe_places = [ k for k in self.place_people.keys() if self.place_people[k] ]
@@ -2322,7 +2364,7 @@ class PlanetUpScript(object):
                 self.deactivate()
                 self.deactivate()
             elif line.startswith('This Citadel cannot be upgraded further'):
             elif line.startswith('This Citadel cannot be upgraded further'):
                 self.queue_game.put(self.nl + Boxes.alert("NO MORE!") + self.nl)
                 self.queue_game.put(self.nl + Boxes.alert("NO MORE!") + self.nl)
-                self.queue_player.put("QQ")  # quit Citidel, quit Planet menu.
+                self.queue_player.put("QQ")  # quit Citadel, quit Planet menu.
                 self.deactivate()
                 self.deactivate()
             else:
             else:
                 items = ['Colonists', 'Fuel Ore', 'Organics', 'Equipment']                
                 items = ['Colonists', 'Fuel Ore', 'Organics', 'Equipment']