|
@@ -3765,6 +3765,198 @@ class MaxFighterMake(object):
|
|
|
self.deactivate(True)
|
|
|
|
|
|
|
|
|
+class evilTrade(object):
|
|
|
+ """
|
|
|
+ A little bit on playing evil,
|
|
|
+
|
|
|
+ Doing SSM, a bust will cause some holds and any cargo to be removed!
|
|
|
+ You must move to different ports to reduce the chance of a bust
|
|
|
+
|
|
|
+ SSM rewards you -10 Alignment and +5 Experiece if you are sucessful
|
|
|
+ in robbing back your cargo you just sold.
|
|
|
+
|
|
|
+ States:
|
|
|
+ 0 = Pre-State, Asks the user how many times to run
|
|
|
+ 1 = Gather max holds value, also see if the user already has
|
|
|
+ Equ in holds... if not go buy some.
|
|
|
+ 2 = Find 2 "evil pairs" of ports to do SSM
|
|
|
+ 3 = Move to first port pair
|
|
|
+ (SSM: Sell-Steal-Move)
|
|
|
+ 4 = Port and Sell Equ
|
|
|
+ 5 = Port and Steal Equ
|
|
|
+ 6 = Move to 2nd port
|
|
|
+ 7 = Port and Sell Equ
|
|
|
+ 8 = Port and Steal Equ
|
|
|
+ 9 = Move to 1st Port
|
|
|
+ 10 = Decide to loop, if so we jump back to state 4, else exit
|
|
|
+ """
|
|
|
+
|
|
|
+ def __init__(self, game):
|
|
|
+ self.game = game
|
|
|
+ self.queue_game = game.queue_game
|
|
|
+ self.queue_player = game.queue_player
|
|
|
+ self.observer = game.observer
|
|
|
+ self.r = Style.RESET_ALL
|
|
|
+ self.c = merge(Style.BRIGHT + Fore.YELLOW)
|
|
|
+ self.nl = "\n\r"
|
|
|
+
|
|
|
+ self.state = 0 # Pre-state
|
|
|
+ self.holds = 0 # Total holds empty
|
|
|
+ self.cargo = {
|
|
|
+ "Ore": 0,
|
|
|
+ "Org": 0,
|
|
|
+ "Equ": 0,
|
|
|
+ "Colo": 0,
|
|
|
+ "Empty": 0,
|
|
|
+ }
|
|
|
+ self.maxHolds = 0 # Total holds
|
|
|
+ self.maxLoops = 0 # So when we display done show the total loops asked to do
|
|
|
+ self.loops = 0 # Current number of loops left to do
|
|
|
+ self.completeINFO = False # Collected all INFO needed
|
|
|
+ self.exp = 0 # Experience Points the player has
|
|
|
+ self.alignment = (
|
|
|
+ 0 # Alignment the player has, negative is evil and positive is good
|
|
|
+ )
|
|
|
+ self.credits = 0 # Credits player has
|
|
|
+ self.turns = 0 # Turns the player has
|
|
|
+
|
|
|
+ self.prompt = game.buffer
|
|
|
+ self.save = self.observer.save()
|
|
|
+ self.observer.connect("player", self.player)
|
|
|
+ self.observer.connect("prompt", self.game_prompt)
|
|
|
+ self.observer.connect("game-line", self.game_line)
|
|
|
+
|
|
|
+ self.defer = None
|
|
|
+ self.to_player = self.game.to_player
|
|
|
+ self.game.to_player = False
|
|
|
+ self.send2game("D")
|
|
|
+
|
|
|
+ def whenDone(self):
|
|
|
+ self.defer = defer.Deferred()
|
|
|
+ return self.defer
|
|
|
+
|
|
|
+ def deactivate(self, andExit=False):
|
|
|
+ self.state = 0
|
|
|
+ log.debug("ColoScript2.deactivate()")
|
|
|
+ self.game.to_player = True
|
|
|
+ assert not self.save is None
|
|
|
+ self.observer.load(self.save)
|
|
|
+ self.save = None
|
|
|
+ if self.defer:
|
|
|
+ if andExit:
|
|
|
+ self.defer.callback({"exit": True})
|
|
|
+ else:
|
|
|
+ self.defer.callback("done")
|
|
|
+ self.defer = None
|
|
|
+
|
|
|
+ def player(self, chunk: bytes):
|
|
|
+ self.deactivate(True)
|
|
|
+
|
|
|
+ def send2game(self, txt):
|
|
|
+ self.queue_player.put(txt)
|
|
|
+
|
|
|
+ def send2player(self, txt):
|
|
|
+ self.queue_game.put(txt)
|
|
|
+
|
|
|
+ def loops_chosen(self, choice: str):
|
|
|
+ if choice.strip() == "":
|
|
|
+ self.deactivate(True)
|
|
|
+ else:
|
|
|
+ self.loops = int(choice)
|
|
|
+ self.maxLoops = self.loops
|
|
|
+ self.state = 1
|
|
|
+ self.send2game("I")
|
|
|
+
|
|
|
+ def game_prompt(self, prompt: str):
|
|
|
+ log.debug("P {0} | {1}".format(self.state, prompt))
|
|
|
+ if self.state == 0:
|
|
|
+ if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
+ ask = PlayerInput(self.game)
|
|
|
+ d = ask.prompt("How many times: ", 3, name="times", digits=True)
|
|
|
+ d.addCallback(self.loops_chosen)
|
|
|
+ if self.state == 1:
|
|
|
+ if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
+ if self.completeINFO: # We have all our info
|
|
|
+ self.send2player(
|
|
|
+ self.nl
|
|
|
+ + "Experience: {0} Alignment: {1}".format(
|
|
|
+ self.exp, self.alignment
|
|
|
+ )
|
|
|
+ + self.nl
|
|
|
+ + "Turns: {0} Credits: {1}".format(self.turns, self.credits)
|
|
|
+ + self.nl
|
|
|
+ + "Ore: {0} Org: {1} Equ: {2} Colo: {3} Empty: {4}".format(
|
|
|
+ self.cargo["Ore"],
|
|
|
+ self.cargo["Org"],
|
|
|
+ self.cargo["Equ"],
|
|
|
+ self.cargo["Colo"],
|
|
|
+ self.cargo["Empty"],
|
|
|
+ )
|
|
|
+ )
|
|
|
+ self.state = 2
|
|
|
+ self.deactivate(True)
|
|
|
+
|
|
|
+ def game_line(self, line: str):
|
|
|
+ log.debug("L {0} | {1}".format(self.state, line))
|
|
|
+ if self.state == 1:
|
|
|
+ if line.startswith("Rank and Exp"):
|
|
|
+ work = line.replace("Rank and Exp :", "").split()
|
|
|
+ # Rank and Exp : 110 points, Alignment=-116 Crass
|
|
|
+ self.exp = work[0]
|
|
|
+ self.alignment = work[2].replace("Alignment=", "")
|
|
|
+ elif line.startswith("Turns left"):
|
|
|
+ work = line.replace("Turns left : ", "")
|
|
|
+ self.turns = int(work)
|
|
|
+ elif line.startswith("Total Holds"):
|
|
|
+ work = (
|
|
|
+ line[16:]
|
|
|
+ .replace("-", "")
|
|
|
+ .replace("=", " ")
|
|
|
+ .replace("Fuel Ore", "Fuel")
|
|
|
+ .split()
|
|
|
+ )
|
|
|
+ self.maxHolds = int(work[0])
|
|
|
+ self.holds = self.maxHolds
|
|
|
+ # Total Holds : 53 - Empty=53
|
|
|
+ # Total Holds : 53 - Fuel Ore=1 Organics=2 Equipment=3 Colonists=4 Empty=43
|
|
|
+ # log.debug(work)
|
|
|
+ # '53', 'Fuel', '1', 'Organics', '2', 'Equipment', '3', 'Colonists', '4', 'Empty', '43'
|
|
|
+ count = 0
|
|
|
+ for w in work:
|
|
|
+ if w == "Fuel":
|
|
|
+ try:
|
|
|
+ self.cargo["Ore"] = int(work[count + 1])
|
|
|
+ except ValueError: # The next value is not a number!
|
|
|
+ self.cargo["Ore"] = 0
|
|
|
+ elif w == "Organics":
|
|
|
+ try:
|
|
|
+ self.cargo["Org"] = int(work[count + 1])
|
|
|
+ except ValueError: # The next value is not a number!
|
|
|
+ self.cargo["Org"] = 0
|
|
|
+ elif w == "Equipment":
|
|
|
+ try:
|
|
|
+ self.cargo["Equ"] = int(work[count + 1])
|
|
|
+ except ValueError: # The next value is not a number!
|
|
|
+ self.cargo["Equ"] = 0
|
|
|
+ elif w == "Colonists":
|
|
|
+ try:
|
|
|
+ self.cargo["Colo"] = int(work[count + 1])
|
|
|
+ except ValueError: # The next value is not a number!
|
|
|
+ self.cargo["Colo"] = 0
|
|
|
+ elif w == "Empty":
|
|
|
+ try:
|
|
|
+ self.cargo["Empty"] = int(work[count + 1])
|
|
|
+ except ValueError: # The next value is not a number!
|
|
|
+ self.cargo["Empty"] = 0
|
|
|
+ count += 1
|
|
|
+ if self.cargo["Empty"] == 0:
|
|
|
+ self.send2player(self.nl + Boxes.alert("No Empty Holds!"))
|
|
|
+ elif line.startswith("Credits"):
|
|
|
+ work = line.replace("Credits : ", "").replace(",", "")
|
|
|
+ self.credits = int(work)
|
|
|
+ self.completeINFO = True
|
|
|
+
|
|
|
+
|
|
|
class ProxyMenu(object):
|
|
|
""" Display ProxyMenu
|
|
|
|
|
@@ -4438,6 +4630,7 @@ class ProxyMenu(object):
|
|
|
# menu_item("5", "Colonize Planet")
|
|
|
menu_item("5", "Colonize Planet v2.0")
|
|
|
menu_item("%", "Maxumize Fighter Production")
|
|
|
+ menu_item("6", "Trade Evil (Does SSM)")
|
|
|
menu_item("X", "eXit")
|
|
|
self.queue_game.put(box.bottom())
|
|
|
self.queue_game.put(" " + c1 + "-=>" + self.r + " ")
|
|
@@ -4521,6 +4714,13 @@ class ProxyMenu(object):
|
|
|
d.addCallback(self.deactivate_scripts_menu)
|
|
|
d.addErrback(self.deactivate_scripts_menu)
|
|
|
return
|
|
|
+ elif key == "6":
|
|
|
+ self.queue_game.put(self.c + key + self.r + self.nl)
|
|
|
+ evil = evilTrade(self.game)
|
|
|
+ d = evil.whenDone()
|
|
|
+ d.addCallback(self.deactivate_scripts_menu)
|
|
|
+ d.addErrback(self.deactivate_scripts_menu)
|
|
|
+ return
|
|
|
elif key == "X":
|
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
|
self.deactivate_scripts_menu()
|