Selaa lähdekoodia

Seems to be working. To the server it goes.

Steve Thielemann 5 vuotta sitten
vanhempi
commit
1f565c46a2
1 muutettua tiedostoa jossa 37 lisäystä ja 6 poistoa
  1. 37 6
      flexible.py

+ 37 - 6
flexible.py

@@ -1088,9 +1088,13 @@ class ScriptExplore(object):
             self.send2game("{0}\r".format(self.highsector))
 
         else:
-            self.send2player(Boxes.alert("I've run out of places to look here."))
+            self.send2player(Boxes.alert("I've run out of places to look ({0}/{1}).".format(self.maxtimes - self.times, self.maxtimes)))
             self.deactivate()
 
+    def game_over(self, msg):
+        self.send2player(Boxes.alert("STOP: {0} ({1}/{2}).".format(msg, self.maxtimes - self.times, self.maxtimes)))
+        self.deactivate()
+
     def game_prompt(self, prompt: str):
         # log.msg("{0} : {1}".format(self.state, prompt))
         if self.state == 2:
@@ -1109,11 +1113,24 @@ class ScriptExplore(object):
             if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N]'):
                 self.send2game("SD")
                 self.state += 1
+            # Arriving sector :1691  Autopilot disengaging.
+            if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):            
+                log.msg("We made it to where we wanted to go!")
+                # can't init state 1, because we're at a prompt, so...
+                self.send2game("S")
+                self.state = 2
+                return                
         elif self.state == 15:
             if prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N]'):
                 self.send2game("N")
                 self.travel_path.pop(0)
                 self.state = 12
+            if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):            
+                log.msg("We made it to where we wanted to go!")
+                # can't init state 1, because we're at a prompt, so...
+                self.send2game("S")
+                self.state = 2
+                return                            
         elif 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!
@@ -1217,7 +1234,7 @@ class ScriptExplore(object):
 
             # Is the sector safe to go into?
             # self.clear = [ x['sector'] for x in self.dense if not x['anom'] and not x['navhaz'] and x['density'] in (0,1,100,101) and x['warps'] > 1 ]
-            self.clear = [ x['sector'] for x in self.dense if not x['anom'] and not x['navhaz'] and x['density'] in (0,1,100,101) ]
+            self.clear = [ x for x in self.dense if not x['anom'] and not x['navhaz'] and x['density'] in (0,1,100,101) ]
 
             # for d in self.dense:
             #     if not d['anom']:
@@ -1250,15 +1267,20 @@ class ScriptExplore(object):
                 # if self.highwarp and self.highsector:
                 log.msg("Sector: {0:5d} Warps: {1}".format(self.highsector, self.highwarp))
                 self.state += 1
-
+            else:
+                log.msg("No (safe) sectors to move to!")
+                # Let's try this?!
+                # self.dead_end()   # NO!
+                self.game_over("No SAFE moves.")
                 # Another NOP state.  This also could be merged into above.
                 # break the elif chain.
 
         if self.state == 5:
             # Add the dense scan of unknown sectors onto the stack of sectors, only save the ones we think are clear... for now.
             for c in self.clear:
-                if c != self.highsector:
-                    self.stacksector.add(c)
+                sector = c['sector']
+                if sector != self.highsector:
+                    self.stacksector.add(sector)
             
             # Or simply not add it in the first place ...
             # Remove the sector we are just about to go to, we use discard so if the sector does not exist we don't throw a error!
@@ -1304,6 +1326,12 @@ class ScriptExplore(object):
             self.travel_path.pop(0) # First sector is one we're in.
             self.stophere = False
             self.go_on = True
+        elif self.state == 12:
+            # Arriving sector :1691  Autopilot disengaging.
+            if 'Autopilot disengaging.' in line:
+                log.msg("We made it to where we wanted to go!")
+                self.state = 1
+                return
         elif self.state == 13:
             if 'Relative Density Scan' in line:
                 self.state += 1
@@ -1324,7 +1352,10 @@ class ScriptExplore(object):
                         # Ok, carry on!
                         self.state = 15
                     else:
-                        log.msg("...")
+                        log.msg("Our way is blocked...")
+                        self.stacksector.add(self.highsector)
+                        self.state = 20
+
             else:
                 if line.strip('-') != '':
                     work = line.replace(' :', '').replace('%', '').replace(')', '').replace('==>', '')