|
@@ -2040,7 +2040,8 @@ class PlanetUpScript(object):
|
|
self.state = 5
|
|
self.state = 5
|
|
self.queue_player.put("C")
|
|
self.queue_player.put("C")
|
|
elif self.state == 5:
|
|
elif self.state == 5:
|
|
- if prompt.startswith('Do you wish to construct one? '):
|
|
|
|
|
|
+ if re.match(r'Do you wish to construct .+\?', prompt):
|
|
|
|
+ # 'Do you wish to construct a Combat Control Computer?'
|
|
# Have we met all the needs? If so, do it. ;)
|
|
# Have we met all the needs? If so, do it. ;)
|
|
# If not, xfer the cargo on the ship to the planet and get moving!
|
|
# If not, xfer the cargo on the ship to the planet and get moving!
|
|
ready = True
|
|
ready = True
|
|
@@ -2058,9 +2059,13 @@ class PlanetUpScript(object):
|
|
self.queue_player.put('YQ')
|
|
self.queue_player.put('YQ')
|
|
self.deactivate()
|
|
self.deactivate()
|
|
return
|
|
return
|
|
- self.queue_player.put("N")
|
|
|
|
|
|
+ if 'construct one' in prompt:
|
|
|
|
+ self.queue_player.put("N")
|
|
|
|
+ else:
|
|
|
|
+ self.queue_player.put("NQ")
|
|
# Xfer cargo, and get ready to travel...
|
|
# Xfer cargo, and get ready to travel...
|
|
-
|
|
|
|
|
|
+ elif prompt.startswith('Citadel command (?=help)'):
|
|
|
|
+ self.queue_player.put('U')
|
|
if prompt.startswith('Planet command (?=help) [D] '):
|
|
if prompt.startswith('Planet command (?=help) [D] '):
|
|
# self.queue_game.put(pformat(self.ship_cargo).replace("\n", self.nl) + self.nl)
|
|
# self.queue_game.put(pformat(self.ship_cargo).replace("\n", self.nl) + self.nl)
|
|
# self.queue_game.put(pformat(self.cargo).replace("\n", self.nl) + self.nl)
|
|
# self.queue_game.put(pformat(self.cargo).replace("\n", self.nl) + self.nl)
|
|
@@ -2327,7 +2332,7 @@ class PlanetUpScript(object):
|
|
""" Data from player (in bytes). """
|
|
""" Data from player (in bytes). """
|
|
chunk = chunk.decode("latin-1", "ignore")
|
|
chunk = chunk.decode("latin-1", "ignore")
|
|
key = chunk.upper()
|
|
key = chunk.upper()
|
|
- log.warn("PlanetUpScript.player({0}) : I AM stopping...".format(key))
|
|
|
|
|
|
+ log.warn("PlanetUpScript.player({0}) : I AM stopping...(user input)".format(key))
|
|
|
|
|
|
if not self.defer is None:
|
|
if not self.defer is None:
|
|
# We have something, so:
|
|
# We have something, so:
|