|
@@ -601,6 +601,12 @@ class ScriptPort(object):
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
self.state = 4
|
|
self.state = 4
|
|
log.debug("Ok, 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:
|
|
if self.sector2 is None:
|
|
# Ok, we need to prompt for this.
|
|
# Ok, we need to prompt for this.
|
|
self.queue_game.put(self.r + self.nl +
|
|
self.queue_game.put(self.r + self.nl +
|
|
@@ -658,8 +664,18 @@ class ScriptPort(object):
|
|
self.trade()
|
|
self.trade()
|
|
|
|
|
|
self.queue_game.put(self.r + self.nl)
|
|
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:
|
|
elif self.state == 6:
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
if self.fixable:
|
|
if self.fixable:
|
|
@@ -1841,7 +1857,7 @@ class ProxyMenu(object):
|
|
show_best = self.game.gamedata.get_config('Display_Best', 'Y').upper()[0] == 'Y'
|
|
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_ok = self.game.gamedata.get_config('Display_Ok', 'N').upper()[0] == 'Y'
|
|
show_limit = self.game.gamedata.get_config('Display_Percent', '90')
|
|
show_limit = self.game.gamedata.get_config('Display_Percent', '90')
|
|
-
|
|
|
|
|
|
+
|
|
update_config = False
|
|
update_config = False
|
|
|
|
|
|
try:
|
|
try:
|
|
@@ -1858,7 +1874,7 @@ class ProxyMenu(object):
|
|
update_config = True
|
|
update_config = True
|
|
|
|
|
|
if update_config:
|
|
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, pd in self.game.gamedata.ports.items():
|
|
for sector in sorted(self.game.gamedata.ports.keys()):
|
|
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("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)
|
|
# 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, *_):
|
|
def show_trade_report(self, *_):
|
|
|
|
+ show_maxlines = self.get_display_maxlines()
|
|
|
|
+
|
|
self.game.trade_report = self.trade_report
|
|
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.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):
|
|
def player(self, chunk: bytes):
|
|
""" Data from player (in bytes). """
|
|
""" Data from player (in bytes). """
|
|
@@ -1980,9 +2015,17 @@ class ProxyMenu(object):
|
|
elif key == "D":
|
|
elif key == "D":
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
# (Re) Display Trade Report
|
|
# (Re) Display Trade Report
|
|
|
|
+ show_maxlines = self.get_display_maxlines()
|
|
|
|
+
|
|
if self.trade_report:
|
|
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(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:
|
|
else:
|
|
self.queue_game.put("Missing trade_report." + self.nl)
|
|
self.queue_game.put("Missing trade_report." + self.nl)
|
|
elif key == "C":
|
|
elif key == "C":
|