Parcourir la source

Added Trade_UseFirst, Trade_Turns, Diplay_Maxlines.

Trade_UseFirst (default to using the first port in the trade.)
Trade_Turns (0=ask, otherwise use number as default number
of turns).
Display_MaxLines (0=show all, number of lines to display).
This is for "Trade" and "Display".
We also exit out of the Proxy when displaying trades.
Steve Thielemann il y a 5 ans
Parent
commit
3410d7efff
1 fichiers modifiés avec 50 ajouts et 7 suppressions
  1. 50 7
      flexible.py

+ 50 - 7
flexible.py

@@ -601,6 +601,12 @@ class ScriptPort(object):
             if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
                 self.state = 4
                 log.debug("Ok, state 4")
+
+                use_first = self.game.gamedata.get_config('Trade_UseFirst', 'N').upper()[0] == 'Y'
+                if use_first:
+                    # Use the first one by default
+                    self.sector2 = self.possible[0]
+
                 if self.sector2 is None:
                     # Ok, we need to prompt for this.
                     self.queue_game.put(self.r + self.nl + 
@@ -658,8 +664,18 @@ class ScriptPort(object):
                         self.trade()
 
                     self.queue_game.put(self.r + self.nl)
-                    d = pi.prompt("Times to execute script", 5, name='count')    
-                    d.addCallback(got_need2)
+                    default_turns = self.game.gamedata.get_config('Trade_Turns', '0')
+                    if default_turns == '0':
+                        d = pi.prompt("Times to execute script", 5, name='count')    
+                        d.addCallback(got_need2)
+                    else:
+                        try:
+                            self.times_left = int(default_turns)
+                        except ValueError:
+                            self.times_left = 30
+                        self.state = 5
+                        self.trade()
+                        
         elif self.state == 6:
             if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
                 if self.fixable:
@@ -1841,7 +1857,7 @@ class ProxyMenu(object):
         show_best = self.game.gamedata.get_config('Display_Best', 'Y').upper()[0] == 'Y'
         show_ok = self.game.gamedata.get_config('Display_Ok', 'N').upper()[0] == 'Y'
         show_limit = self.game.gamedata.get_config('Display_Percent', '90')
-
+        
         update_config = False
 
         try:
@@ -1858,7 +1874,7 @@ class ProxyMenu(object):
             update_config = True
 
         if update_config:
-            self.game.gamedata.set_config('Trade_Percent', self.percent)
+            self.game.gamedata.set_config('Display_Percent', show_limit)
 
         # for sector, pd in self.game.gamedata.ports.items():
         for sector in sorted(self.game.gamedata.ports.keys()):
@@ -1920,11 +1936,30 @@ class ProxyMenu(object):
         # self.queue_game.put("BEST TRADES:" + self.nl + self.nl.join(best_trades) + self.nl)
         # self.queue_game.put("OK TRADES:" + self.nl + self.nl.join(ok_trades) + self.nl)
 
+    def get_display_maxlines(self):
+        show_maxlines = self.game.gamedata.get_config('Display_Maxlines', '0')
+        try:
+            show_maxlines = int(show_maxlines)        
+        except ValueError:
+            show_maxlines = 0
+
+        if show_maxlines <= 0:
+            show_maxlines = None
+        return show_maxlines
+
     def show_trade_report(self, *_):
+        show_maxlines = self.get_display_maxlines()
+
         self.game.trade_report = self.trade_report
-        for t in self.trade_report:
+        for t in self.trade_report[:show_maxlines]:
             self.queue_game.put(t + self.nl)
-        self.welcome_back()
+
+        self.queue_game.put(Boxes.alert("Proxy done.", base="green"))
+        self.observer.load(self.save)
+        self.save = None
+        self.keepalive = None
+        self.prompt = None                    
+        # self.welcome_back()
 
     def player(self, chunk: bytes):
         """ Data from player (in bytes). """
@@ -1980,9 +2015,17 @@ class ProxyMenu(object):
         elif key == "D":
             self.queue_game.put(self.c + key + self.r + self.nl)
             # (Re) Display Trade Report
+            show_maxlines = self.get_display_maxlines()
+
             if self.trade_report:
-                for t in self.trade_report:
+                for t in self.trade_report[:show_maxlines]:
                     self.queue_game.put(t + self.nl)
+                self.queue_game.put(Boxes.alert("Proxy done.", base="green"))                    
+                self.observer.load(self.save)
+                self.save = None
+                self.keepalive = None
+                self.prompt = None                    
+                return
             else:
                 self.queue_game.put("Missing trade_report." + self.nl)
         elif key == "C":