Explorar o código

Adding travel when at at dead end.

Steve Thielemann %!s(int64=5) %!d(string=hai) anos
pai
achega
b057f83c6e
Modificáronse 1 ficheiros con 106 adicións e 22 borrados
  1. 106 22
      flexible.py

+ 106 - 22
flexible.py

@@ -1071,8 +1071,26 @@ class ScriptExplore(object):
         self.highsector = 0
         log.msg("ScriptExplore.resetStuff()")
 
+    def dead_end(self):
+        """ We've reached a dead end.  
+
+        Either pop a new location to travel to, or give it up.
+        """
+        self.send2player(Boxes.alert("** DEAD END **", base="blue"))
+
+        if self.stacksector:
+            # Ok, there's somewhere to go ...
+            self.highsector = self.stacksector.pop()
+            # travel state
+            self.state = 10
+            self.send2game("{0}\r".format(self.highsector))
+
+        else:
+            self.send2player(Boxes.alert("I've run out of places to look here."))
+            self.deactivate()
+
     def game_prompt(self, prompt: str):
-        log.msg("{0} : {1}".format(self.state, prompt))
+        # log.msg("{0} : {1}".format(self.state, prompt))
         if self.state == 2:
             if "Select (H)olo Scan or (D)ensity Scan or (Q)uit" in prompt:
                 self.send2game("D")
@@ -1086,7 +1104,21 @@ class ScriptExplore(object):
                 log.msg("FATAL: No Holo Scanner Installed!")
                 self.send2player(Boxes.alert("You need a Holo Scanner!"))
                 self.deactivate()
-    
+        if self.state == 12:
+            # Looking for "Engage the Autopiolot?"
+            if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
+                self.send2game("S")
+                self.travel_path.pop(0)                
+            if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N]'):
+                self.send2game("SD")
+                self.state += 1
+        if self.state == 20:
+            if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N]'):
+                # Stop in this sector / Yes!
+                self.send2game("Y")
+                self.state = 1
+                # this should re-trigger a scan
+
     def game_line(self, line: str):
         log.msg("{0} | {1}".format(self.state, line))
         #if "Mine Control" in line: # If we don't have a Holo-Scanner and we attempted to do a Holo-scan, abort
@@ -1122,19 +1154,14 @@ class ScriptExplore(object):
         elif self.state == 3:
             # Get the Density Data!
             if line.startswith("Sector"):
-                work = line.replace(':', '').replace(')', '').replace('%', '').replace('==>', '')
+                new_sector = '(' in line
+                work = line.replace(':', '').replace(')', '').replace('(', '').replace('%', '').replace('==>', '')
                 work = re.split(r"\s+", work)
                 # 'Sector', '8192', '0', 'Warps', '4', 'NavHaz', '0', 'Anom', 'No'
                 # 'Sector', '(', '8192)', '0', 'Warps', '4', 'NavHaz', '0', 'Anom', 'No'
 
                 # New Sector?
-                if work[1] == '(':
-                    temp1 = True
-                else:
-                    temp1 = False
-
-                # Yes new sector! So we will add it!
-                if temp1:
+                if new_sector:
                     # Switch Anom into bool state
                     if(work[9] == 'No'):
                         temp = False
@@ -1142,6 +1169,7 @@ class ScriptExplore(object):
                         temp = True
                 
                     self.dense.append( {'sector': int(work[2]), 'density': int(work[3]), 'warps': int(work[5]), 'navhaz': int(work[7]), 'anom': temp} )
+                    log.msg(self.dense)
                     # {'sector': 8192, 'density': 0, 'warps': 4, 'navhaz': 0, 'anom': False}
                 
             elif line == "":
@@ -1153,23 +1181,32 @@ class ScriptExplore(object):
             # Do we have a new place to go? (That is also worth going to)
             if not self.dense: # Dense contains no new sectors, abort
                 log.msg("No New Sectors Found!")
-                self.send2player(Boxes.alert("Find a new area for me to search in!"))
+                self.dead_end()
+                return
+
+                # self.send2player(Boxes.alert("Find a new area for me to search in!"))
                 # Attempt to resolve no new sectors!
-                if self.stacksector: # Do we have anything on the stack? (If so we set highsector with one of the randomly selected sectors)
-                    self.highsector = self.stacksector.pop()
-                self.deactivate()
+                # if self.stacksector: # Do we have anything on the stack? (If so we set highsector with one of the randomly selected sectors)
+                #     self.highsector = self.stacksector.pop()
+                # self.deactivate()
+
             elif self.dense: # Dense does contain at least 1 new sector, continue on
-                t = [] # Pre-Test to check if there are just a bunch of 1 warp sectors
-                for d in self.dense:
-                    if d['warps'] > 1:
-                        t.append(d['sector'])
+                # list comprehension
+                t = [d for d in self.dense if d['warps'] > 1]
+                # t = [] # Pre-Test to check if there are just a bunch of 1 warp sectors
+                # for d in self.dense:
+                #     if d['warps'] > 1:
+                #         t.append(d['sector'])
+
                 if not t: # If there are no sectors with more that 1 warp, abort
                     log.msg("No Sectors Found except one move sector!")
-                    self.send2player(Boxes.alert("Find a new area for me to look at!"))
+                    self.dead_end()
+                    return
+                    # self.send2player(Boxes.alert("Find a new area for me to look at!"))
                     # Attempt to resolve no new sectors with more than 1 warp!
-                    if self.stacksector: # Do we have anything on the stack? (If so we set highsector with one of the randomly selected sectors)
-                        self.highsector = self.stacksector.pop()
-                    self.deactivate()
+                    # if self.stacksector: # Do we have anything on the stack? (If so we set highsector with one of the randomly selected sectors)
+                    #     self.highsector = self.stacksector.pop()
+                    # self.deactivate()
 
             # Is the sector safe to go into?
             for d in self.dense:
@@ -1221,6 +1258,53 @@ class ScriptExplore(object):
                 self.send2player(Boxes.alert("Completed {0}".format(self.maxtimes), base="green"))
                 log.msg("Completed {0}".format(self.maxtimes))
                 self.deactivate()
+        elif self.state == 10:
+            # Warping
+            self.go_on = True
+            if line.startswith('The shortest path ('):
+                # Ok, we've got a path.
+                self.state += 1
+        elif self.state == 11:
+            self.travel_path = line.split(' > ')
+            self.state += 1
+        elif self.state == 13:
+            if 'Relative Density Scan' in line:
+                self.state += 1
+        elif self.state == 14:
+            if line == "":
+                # end of the scan, decision time
+                if self.stophere:
+                    # Ok, let's stop here!
+                    # Re-save the sector we were trying to get to.  (we didn't make it there)
+                    self.stacksector.add(self.highsector)
+                    self.state = 20
+                else:
+                    if self.go_on:
+                        # Ok, carry on!
+                        self.state = 12
+                        self.travel_path.pop(0)                
+            else:
+                work = line.replace(' :', '').replace('%', '').replace(')', '').replace('==>', '')
+                # Does this contain something new? unseen?
+                stophere = '(' in work
+                work = work.replace('(','')
+                #Sector   XXXX  DENS Warps N NavHaz P Anom YN
+                parts = re.split(r'\s+', work)
+                # Don't bother stopping if there's only one warp
+                if stophere and parts[4] == '1':
+                    stophere = False
+                
+                if stophere:
+                    self.stophere = True
+
+                next_stop = travel_path[0]
+
+                if parts[1] == next_stop:
+                    # Ok, this is our next stop.  Is it safe to travel to?
+                    if parts[2] not in ('100', '0'):
+                        # Ok, it's not safe to go on.
+                        self.go_on = False
+                    # Check the rest navhav and anom ...