|
@@ -2490,324 +2490,12 @@ class PlanetUpScript(object):
|
|
|
self.game.to_player = self.to_player
|
|
|
self.observer.load(self.save)
|
|
|
|
|
|
-class ColoScript(object):
|
|
|
- """ Colonise Script 1.0
|
|
|
-
|
|
|
- Macro:
|
|
|
- ntel^^n1els^^1^q
|
|
|
-
|
|
|
- Ask what planet we want to load up on,
|
|
|
- Then Move to Terra,
|
|
|
- load up,
|
|
|
- Move to target planet,
|
|
|
- unload,
|
|
|
- repeat x times! \o/
|
|
|
-
|
|
|
- States:
|
|
|
- 1 = Talk to computer, find planets of corp and personal
|
|
|
- 2 = Grab planets from list, ask user which planet to populate
|
|
|
- 3 = Move to Sector 1
|
|
|
- 4 = load people, then move to sector with planet
|
|
|
- 5 = init land
|
|
|
- 6 = Decide to loop (jump to 3), Unload people
|
|
|
-
|
|
|
- TODO:
|
|
|
- * Make it compatable so we can also pull people from other planets,
|
|
|
- besides Terra (sector 1).
|
|
|
- """
|
|
|
- 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"
|
|
|
-
|
|
|
- # My Stuff
|
|
|
- self.state = 1
|
|
|
- self.corp = True
|
|
|
- self.planets = {}
|
|
|
- self.loops = 0
|
|
|
- self.maxloops = 0
|
|
|
-
|
|
|
- # Activate
|
|
|
- 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("TLQ")
|
|
|
-
|
|
|
- def whenDone(self):
|
|
|
- self.defer = defer.Deferred()
|
|
|
- # Call this to chain something after we exit.
|
|
|
- return self.defer
|
|
|
-
|
|
|
- def deactivate(self, andExit=False):
|
|
|
- self.state = 0
|
|
|
- log.debug("ColoScript.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):
|
|
|
- # If we receive anything -- ABORT!
|
|
|
- self.deactivate(True)
|
|
|
-
|
|
|
- def send2game(self, txt):
|
|
|
- log.debug("ColoScript.send2game({0})".format(txt))
|
|
|
- self.queue_player.put(txt)
|
|
|
-
|
|
|
- def send2player(self, txt):
|
|
|
- log.debug("ColoScript.send2player({0})".format(txt))
|
|
|
- self.queue_game.put(txt)
|
|
|
-
|
|
|
- def planet_chosen(self, choice: str):
|
|
|
- if choice.strip() == '':
|
|
|
- self.deactivate(True)
|
|
|
- else:
|
|
|
- self.planet_number = int(choice)
|
|
|
- if self.planet_number in self.planets:
|
|
|
- # Ok, this'll work
|
|
|
- self.planet_sector = self.planets[self.planet_number]['sector']
|
|
|
- self.planet_name = self.planets[self.planet_number]['name']
|
|
|
- # Are we really getting this? Yup
|
|
|
- #log.debug("Planet Number: {0} Sector: {1}".format(self.planet_number, self.planet_sector))
|
|
|
- ask1 = PlayerInput(self.game)
|
|
|
- d1 = ask1.prompt("How many times ", 5, name="rolls", digits=True)
|
|
|
- d1.addCallback(self.loop_chosen)
|
|
|
- else:
|
|
|
- self.deactivate(True)
|
|
|
-
|
|
|
- def loop_chosen(self, choice: str):
|
|
|
- if choice.strip() == '':
|
|
|
- self.deactivate(True)
|
|
|
- else:
|
|
|
- self.loops = abs(int(choice))
|
|
|
- if self.loops == 0:
|
|
|
- self.loops = 1
|
|
|
- self.maxloops = self.loops
|
|
|
- #ask2 = PlayerInput(self.game)
|
|
|
- #d2 = ask2.prompt("From? ", 5, name="from", digits=True)
|
|
|
- #d2.addCallback(self.from_chosen)
|
|
|
- self.state = 3
|
|
|
- self.game.to_player = False
|
|
|
- self.send2game("I")
|
|
|
-
|
|
|
- def game_prompt(self, prompt: str):
|
|
|
- log.debug("P {0} | {1}".format(self.state, prompt))
|
|
|
- if self.state == 1 and re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- # Ok, you're not on a team. :P
|
|
|
- self.queue_player.put("CYQ")
|
|
|
- if self.state == 2 and re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- if self.corp:
|
|
|
- self.corp = False
|
|
|
- self.state = 1
|
|
|
- self.queue_player.put("CYQ")
|
|
|
- return
|
|
|
- self.game.to_player = True
|
|
|
- # For now we output the information, and exit
|
|
|
- # self.queue_game.put("{0}\r\n".format(self.planets))
|
|
|
- # self.queue_game.put(pformat(self.planets).replace("\n", self.nl) + self.nl)
|
|
|
-
|
|
|
- if len(self.planets) == 0:
|
|
|
- # Ok, this is easy.
|
|
|
- self.queue_game.put(self.nl + Boxes.alert("You don't have any planets? You poor, poor dear.", base="red"))
|
|
|
- self.deactivate()
|
|
|
- return
|
|
|
-
|
|
|
- # I need this to know if I can just land, or need to move to the planet.
|
|
|
- # Get current sector from the prompt
|
|
|
- # Command [TL=00:00:00]:[10202] (?=Help)? :
|
|
|
- _, _, part = prompt.partition(']:[')
|
|
|
- sector, _, _ = part.partition(']')
|
|
|
- self.current_sector = int(sector)
|
|
|
-
|
|
|
- # A better default is to ask which planet to upgrade.
|
|
|
-
|
|
|
- tc = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
|
|
|
- c1 = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)
|
|
|
- c2 = merge(Style.BRIGHT + Fore.CYAN + Back.BLUE)
|
|
|
-
|
|
|
- box = Boxes(44, color=tc)
|
|
|
- self.queue_game.put(box.top())
|
|
|
- self.queue_game.put(box.row(tc + "{0:3} {1:6} {2:33}".format(" # ", "Sector", "Planet Name")))
|
|
|
- self.queue_game.put(box.middle())
|
|
|
-
|
|
|
- def planet_output(number, sector, name):
|
|
|
- row = "{0}{1:^3} {2:6} {3}{4:33}".format(c1, number, sector, c2, name)
|
|
|
- self.queue_game.put(box.row(row))
|
|
|
-
|
|
|
- for s in sorted(self.planets.keys()):
|
|
|
- planet_output(s, self.planets[s]['sector'], self.planets[s]['name'])
|
|
|
-
|
|
|
- self.queue_game.put(box.bottom())
|
|
|
-
|
|
|
- ask = PlayerInput(self.game)
|
|
|
- d = ask.prompt("Choose a planet", 3, name="planet", digits=True)
|
|
|
- d.addCallback(self.planet_chosen)
|
|
|
- elif self.state == 3:
|
|
|
- # Initalize moving to sector 1, Terra
|
|
|
- if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
|
- self.queue_player.put("N")
|
|
|
- elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
- self.queue_player.put("E")
|
|
|
- elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
- self.queue_player.put("N")
|
|
|
- elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- self.state = 4
|
|
|
- self.game.to_player = True
|
|
|
- self.send2game("1\r")
|
|
|
- # Move to sector 1, Terra
|
|
|
- elif self.state == 4:
|
|
|
- # Moving to Terra
|
|
|
- if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
|
- self.queue_player.put("N")
|
|
|
- elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
- self.queue_player.put("E")
|
|
|
- elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
- self.queue_player.put("N")
|
|
|
- elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- self.state = 5
|
|
|
- self.send2game("L")
|
|
|
- # Begin Landing on Terra
|
|
|
- elif self.state == 5:
|
|
|
- if prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
|
- self.send2game("1\r\r\r{0}\r".format(self.planet_sector))
|
|
|
- self.state = 6
|
|
|
- # Planetary Scanner Detected, Move to sector with planet
|
|
|
- elif prompt.startswith('Do you wish to (L)eave or (T)ake Colonists? [T] (Q to leave)'):
|
|
|
- self.send2game("\r\r{0}\r".format(self.planet_sector))
|
|
|
- self.state = 6
|
|
|
- # No Planetary Scanner Detected, Move to sector with planet
|
|
|
- elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
- self.send2game("E")
|
|
|
- self.state = 4
|
|
|
- # We are not at terra, go back
|
|
|
- elif self.state == 6:
|
|
|
- # Moving from Terra to planet_sector
|
|
|
- if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
|
- self.queue_player.put("N")
|
|
|
- elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
- self.queue_player.put("E")
|
|
|
- elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
- self.queue_player.put("N")
|
|
|
- elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- self.state = 6
|
|
|
- self.send2game("L")
|
|
|
- # Begin Landing on planet
|
|
|
- elif prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
|
- self.state = 7
|
|
|
- self.send2game("{0}\r".format(self.planet_number))
|
|
|
- # Planetary Scanner Detected selecting planet number
|
|
|
- elif prompt.startswith('Planet command (?=help) [D] '):
|
|
|
- self.state = 7
|
|
|
- self.send2game("D")
|
|
|
- # No Planetary Scaner skip on
|
|
|
- elif self.state == 7:
|
|
|
- if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
|
- self.state = 6
|
|
|
- self.send2game("E")
|
|
|
- # Missed moving jump back to state 6
|
|
|
- if prompt.startswith('Land on which planet <Q to abort> ?'):
|
|
|
- self.queue_player.put("{0}\r".format(self.planet_number))
|
|
|
- # Planetary Scanner Detected selecting planet number
|
|
|
- if prompt.startswith('Planet command (?=help) [D] '):
|
|
|
- # Unload people and process the loop
|
|
|
- self.loops -= 1
|
|
|
- if self.loops:
|
|
|
- self.state = 3
|
|
|
- self.send2game("S\r\r1\rQ")
|
|
|
- # Jump to state 3 we are not done
|
|
|
- else:
|
|
|
- self.send2game("S\r\r1\rQ")
|
|
|
- self.send2player("\r" + Boxes.alert("Completed ({0})".format(self.maxloops)))
|
|
|
- self.deactivate(True)
|
|
|
- # Ok we are done
|
|
|
-
|
|
|
-
|
|
|
- def game_line(self, line: str):
|
|
|
- log.debug("L {0} | {1}".format(self.state, line))
|
|
|
- # IF at any state we see turns left lets grab it
|
|
|
- if 'turns left' in line:
|
|
|
- work = line[19:].replace(' turns left.', '').strip()
|
|
|
- self.turns = work
|
|
|
- log.debug("TURNS LEFT: {0}".format(self.turns))
|
|
|
- if int(self.turns) < 200:
|
|
|
- self.send2player("\r" + Boxes.alert("Low Turns! ({0})".format(self.turns)))
|
|
|
- self.deactivate(True)
|
|
|
- # IF at any state we see how many holds avalible let's get that
|
|
|
- if 'Total Holds' in line:
|
|
|
- work = line[16:].replace('-', '').replace('=', ' ').split()
|
|
|
- self.total_holds = int(work[0])
|
|
|
- count = 0
|
|
|
- for w in work:
|
|
|
- if(w != 'Empty'):
|
|
|
- count += 1
|
|
|
- elif(w == 'Empty'):
|
|
|
- count += 1
|
|
|
- self.holds = int(work[count])
|
|
|
- log.debug("EMPTY HOLDS = {0}".format(self.holds))
|
|
|
- self.holds_percent = int((self.holds / self.total_holds) * 100.0)
|
|
|
- log.debug("HOLDS PERCENT = {0}%".format(self.holds_percent))
|
|
|
- if(self.holds < self.total_holds):
|
|
|
- self.send2player("\r" + Boxes.alert("You need {0} holds empty! ({1} Empty)".format(self.total_holds, self.holds)))
|
|
|
- self.deactivate(True)
|
|
|
- # Now back to our scheduled program
|
|
|
- if self.state == 1:
|
|
|
- if 'Personal Planet Scan' in line or 'Corporate Planet Scan' in line:
|
|
|
- self.state = 2
|
|
|
- elif self.state == 2:
|
|
|
- # Ok, we're in the planet scan part of this
|
|
|
- # 10202 #3 Home of Bugz Class M, Earth Type No Citadel]
|
|
|
- if '#' in line:
|
|
|
- # Ok, we have a planet detail line.
|
|
|
- # There's an extra T when the planet is maxed out.
|
|
|
- if line[7] == 'T':
|
|
|
- line = line[:7] + ' ' + line[8:]
|
|
|
-
|
|
|
- detail, _, _ = line.partition('Class')
|
|
|
- detail = detail.strip() # Sector #X Name of planet
|
|
|
- sector, number, name = re.split(r'\s+', detail, 2)
|
|
|
- sector = int(sector)
|
|
|
- number = int(number[1:])
|
|
|
- self.last_seen = number
|
|
|
- self.planets[number] = {"sector": sector, "name": name}
|
|
|
- log.info("Planet # {0} in {1} called {2}".format( number, sector, name))
|
|
|
- if '---' in line:
|
|
|
- number = self.last_seen
|
|
|
- # Ok, take the last_seen number, and use it for this line
|
|
|
- # [ Sector Planet Name Ore Org Equ Ore Org Equ Fighters Citadel]
|
|
|
- # [ Shields Population -=Productions=- -=-=-=-=-On Hands-=-=-=-=- Credits]
|
|
|
- # [ 10202 #3 Home of Bugz Class M, Earth Type No Citadel]
|
|
|
- # [ --- (1M) 144 49 26 145 75 12 10 0]
|
|
|
- details = re.split(r"\s+", line.strip())
|
|
|
- # OK: Likely, I'm not going to use these numbers AT ALL.
|
|
|
- self.planets[number]['population'] = details[1].replace('(', '').replace(')', '')
|
|
|
- # Ok, there's going to have to be some sort of modifier (K, M, etc.)
|
|
|
- # to these numbers. Beware!
|
|
|
- self.planets[number]['ore'] = details[5]
|
|
|
- self.planets[number]['org'] = details[6]
|
|
|
- self.planets[number]['equ'] = details[7]
|
|
|
|
|
|
class ColoScript2(object):
|
|
|
""" ColoScript 2.0
|
|
|
|
|
|
Goal:
|
|
|
- * Allow a player to move people from anywhere to anywhere,
|
|
|
- only planets of course. (Acheived!)
|
|
|
+ * Allow a player to move people from anywhere to anywhere. (Acheived!)
|
|
|
|
|
|
States:
|
|
|
1 = Computer talks with us giving corp and personal planet info
|
|
@@ -2827,14 +2515,20 @@ class ColoScript2(object):
|
|
|
self.c = merge(Style.BRIGHT + Fore.YELLOW)
|
|
|
self.nl = "\n\r"
|
|
|
|
|
|
- # My Pants
|
|
|
+ # My "stuff" in my pants!
|
|
|
self.state = 1
|
|
|
self.corp = True
|
|
|
self.planets = {}
|
|
|
self.loops = 0
|
|
|
self.maxloops = 0
|
|
|
+
|
|
|
+ # Sector Numbers of Planets TO and FROM
|
|
|
self.TO = 0
|
|
|
self.FROM = 0
|
|
|
+
|
|
|
+ # Planet Numbers of Planets TO and FROM
|
|
|
+ self.to_number = 0
|
|
|
+ self.from_number = 0
|
|
|
|
|
|
# Activate
|
|
|
self.prompt = game.buffer
|
|
@@ -2870,9 +2564,11 @@ class ColoScript2(object):
|
|
|
self.deactivate(True)
|
|
|
|
|
|
def send2game(self, txt):
|
|
|
+ # Removed debug info since I use this to also display Boxes.alert
|
|
|
self.queue_player.put(txt)
|
|
|
|
|
|
def send2player(self, txt):
|
|
|
+ # Removed debug since it really doesn't help with anything
|
|
|
self.queue_game.put(txt)
|
|
|
|
|
|
def to_chosen(self, choice: str):
|
|
@@ -2885,7 +2581,7 @@ class ColoScript2(object):
|
|
|
self.TO = self.planets[self.to_number]['sector']
|
|
|
self.planet_name = self.planets[self.to_number]['name']
|
|
|
# Are we really getting this? Yup
|
|
|
- #log.debug("Planet Number: {0} Sector: {1}".format(self.planet_number, self.planet_sector))
|
|
|
+ #log.debug("TO Planet Number: {0} Sector: {1}".format(self.to_number, self.TO))
|
|
|
ask1 = PlayerInput(self.game)
|
|
|
d1 = ask1.prompt("From: (1 = Terra) ", 3, name="from", digits=True)
|
|
|
d1.addCallback(self.from_chosen)
|
|
@@ -2901,8 +2597,8 @@ class ColoScript2(object):
|
|
|
# Ok, this'll work
|
|
|
self.FROM = self.planets[self.from_number]['sector']
|
|
|
self.planet_name = self.planets[self.from_number]['name']
|
|
|
- # Are we really getting this? Yup
|
|
|
- #log.debug("Planet Number: {0} Sector: {1}".format(self.planet_number, self.planet_sector))
|
|
|
+ # Are we really getting this? Yup Yup
|
|
|
+ #log.debug("FROM Planet Number: {0} Sector: {1}".format(self.from_number, self.FROM))
|
|
|
ask1 = PlayerInput(self.game)
|
|
|
d1 = ask1.prompt("How many times ", 3, name="rolls", digits=True)
|
|
|
d1.addCallback(self.loop_chosen)
|