Przeglądaj źródła

Fixes trading problem when selling (everything).

Steve Thielemann 5 lat temu
rodzic
commit
4cf4dd6a3f
1 zmienionych plików z 14 dodań i 3 usunięć
  1. 14 3
      flexible.py

+ 14 - 3
flexible.py

@@ -927,11 +927,13 @@ class ScriptPort(object):
                 self.state = 6
         elif self.state == 6:
             if "We are buying up to" in line:
+                log.info("buying up to -- so sell all")
                 # Sell
                 self.state = 7
                 self.queue_player.put("\r")
                 self.sell_percent = 100 + self.percent                
             if "We are selling up to" in line:
+                log.info("selling up to -- state 8 / set percent")
                 # Buy
                 self.state = 8
                 self.sell_percent = 100 - self.percent
@@ -944,9 +946,11 @@ class ScriptPort(object):
                     log.warn("We have a problem -- they aren't buying what we have in stock!")
                     stuff = line[0]  # F O or E.
                     if self.game.gamedata.port_buying(self.other_sector, stuff):
+                        log.info("fixable")
                         self.fixable = True
 
             if "You don't have anything they want" in line:
+                log.warn("Don't have anything they want.")
                 # Neither!  DRAT!
                 if not self.fixable:
                     self.state = 99
@@ -968,11 +972,18 @@ class ScriptPort(object):
                 self.sell_percent -= 1
                 self.queue_player.put("{0}\r".format(price))
             if "We are selling up to" in line:
+                log.info("selling up to / state 8 / set percent")
                 # Buy
                 self.state = 8
-                self.sell_percent = 100 - self.percent      
+                self.sell_percent = 100 - self.percent  
+            if "We are buying up to" in line:
+                log.info("buying up to -- so sell all")
+                # Sell
+                self.state = 7
+                self.queue_player.put("\r")
+                self.sell_percent = 100 + self.percent                        
             if "We're not interested." in line:
-                log.info("Try, try again.  :(")
+                log.info("Not interested.  Try, try again.  :(")
                 self.state = 5
                 self.trade()    
             if "WHAT?!@!? you must be crazy!" in line:
@@ -997,7 +1008,7 @@ class ScriptPort(object):
                 self.sell_percent += 1
                 self.queue_player.put("{0}\r".format(price))
             if "We're not interested." in line:
-                log.info("Try, try again.  :(")
+                log.info("Not interested.  Try, try again.  :(")
                 self.state = 5
                 self.trade()