|
@@ -2,7 +2,7 @@ from twisted.internet import reactor
|
|
|
from twisted.internet import task
|
|
|
from twisted.internet import defer
|
|
|
from colorama import Fore, Back, Style
|
|
|
-from twisted.python import log
|
|
|
+# from twisted.python import log
|
|
|
from twisted.internet.task import coiterate
|
|
|
from twisted.internet.defer import gatherResults
|
|
|
|
|
@@ -11,6 +11,9 @@ import pendulum
|
|
|
from pprint import pformat
|
|
|
from galaxy import GameData, PORT_CLASSES, CLASSES_PORT
|
|
|
from boxes import Boxes
|
|
|
+import logging
|
|
|
+
|
|
|
+log = logging.getLogger(__name__)
|
|
|
|
|
|
class SpinningCursor(object):
|
|
|
""" Spinner class, that handles every so many clicks
|
|
@@ -71,7 +74,7 @@ class PlayerInput(object):
|
|
|
d.addCallback(ask.output)
|
|
|
|
|
|
def show_values(show):
|
|
|
- log.msg(show)
|
|
|
+ log.debug(show)
|
|
|
self.queue_game.put(pformat(show).replace("\n", "\n\r") + self.nl)
|
|
|
|
|
|
d.addCallback(lambda ignore: show_values(ask.keep))
|
|
@@ -107,7 +110,7 @@ class PlayerInput(object):
|
|
|
self.cp = cp
|
|
|
|
|
|
def alive(self):
|
|
|
- log.msg("PlayerInput.alive()")
|
|
|
+ log.debug("PlayerInput.alive()")
|
|
|
self.game.queue_player.put(" ")
|
|
|
|
|
|
def prompt(self, user_prompt, limit, **kw):
|
|
@@ -125,7 +128,7 @@ class PlayerInput(object):
|
|
|
digits : Only allow 0-9 to be entered.
|
|
|
|
|
|
"""
|
|
|
- log.msg("PlayerInput({0}, {1}, {2}".format(user_prompt, limit, kw))
|
|
|
+ log.debug("PlayerInput({0}, {1}, {2}".format(user_prompt, limit, kw))
|
|
|
self.limit = limit
|
|
|
self.input = ""
|
|
|
self.kw = kw
|
|
@@ -153,7 +156,7 @@ class PlayerInput(object):
|
|
|
assert self.deferred is None
|
|
|
d = defer.Deferred()
|
|
|
self.deferred = d
|
|
|
- log.msg("Return deferred ...", self.deferred)
|
|
|
+ log.debug("Return deferred ...", self.deferred)
|
|
|
return d
|
|
|
|
|
|
def get_input(self, chunk):
|
|
@@ -169,11 +172,11 @@ class PlayerInput(object):
|
|
|
self.queue_game.put("\a")
|
|
|
elif ch == "\r":
|
|
|
self.queue_game.put(self.r + self.nl)
|
|
|
- log.msg("Restore observer dispatch", self.save)
|
|
|
+ log.debug("Restore observer dispatch", self.save)
|
|
|
assert not self.save is None
|
|
|
self.observer.load(self.save)
|
|
|
self.save = None
|
|
|
- log.msg("Disable keepalive")
|
|
|
+ log.debug("Disable keepalive")
|
|
|
self.keepalive.stop()
|
|
|
self.keepalive = None
|
|
|
line = self.input
|
|
@@ -189,7 +192,7 @@ class PlayerInput(object):
|
|
|
# Abort on blank input
|
|
|
if line.strip() == "":
|
|
|
# Yes, input is blank, abort.
|
|
|
- log.msg("errback, abort_blank")
|
|
|
+ log.info("errback, abort_blank")
|
|
|
reactor.callLater(
|
|
|
0, self.deferred.errback, Exception("abort_blank")
|
|
|
)
|
|
@@ -216,7 +219,7 @@ class PlayerInput(object):
|
|
|
|
|
|
def output(self, line):
|
|
|
""" A default display of what they just input. """
|
|
|
- log.msg("PlayerInput.output({0})".format(line))
|
|
|
+ log.debug("PlayerInput.output({0})".format(line))
|
|
|
self.game.queue_game.put(self.r + "[{0}]".format(line) + self.nl)
|
|
|
return line
|
|
|
|
|
@@ -300,7 +303,7 @@ class CIMWarpReport(object):
|
|
|
self.game.gamedata.warp_to(sector, *parts)
|
|
|
|
|
|
def __del__(self):
|
|
|
- log.msg("CIMWarpReport {0} RIP".format(self))
|
|
|
+ log.debug("CIMWarpReport {0} RIP".format(self))
|
|
|
|
|
|
def whenDone(self):
|
|
|
self.defer = defer.Deferred()
|
|
@@ -311,7 +314,7 @@ class CIMWarpReport(object):
|
|
|
""" Data from player (in bytes). """
|
|
|
chunk = chunk.decode("latin-1", "ignore")
|
|
|
key = chunk.upper()
|
|
|
- log.msg("CIMWarpReport.player({0}) : I AM stopping...".format(key))
|
|
|
+ log.warn("CIMWarpReport.player({0}) : I AM stopping...".format(key))
|
|
|
|
|
|
# Stop the keepalive if we are activating something else
|
|
|
# or leaving...
|
|
@@ -372,7 +375,7 @@ class CIMPortReport(object):
|
|
|
# If we want it, it's here.
|
|
|
self.defer = None
|
|
|
self.to_player = self.game.to_player
|
|
|
- log.msg("to_player (stored)", self.to_player)
|
|
|
+ log.debug("to_player (stored)", self.to_player)
|
|
|
|
|
|
# Hide what's happening from the player
|
|
|
self.game.to_player = False
|
|
@@ -452,10 +455,10 @@ class CIMPortReport(object):
|
|
|
self.game.gamedata.set_port(port, data)
|
|
|
# self.portdata[port] = data
|
|
|
else:
|
|
|
- log.msg("CIMPortReport:", line, "???")
|
|
|
+ log.error("CIMPortReport:", line, "???")
|
|
|
|
|
|
def __del__(self):
|
|
|
- log.msg("CIMPortReport {0} RIP".format(self))
|
|
|
+ log.debug("CIMPortReport {0} RIP".format(self))
|
|
|
|
|
|
def whenDone(self):
|
|
|
self.defer = defer.Deferred()
|
|
@@ -466,7 +469,7 @@ class CIMPortReport(object):
|
|
|
""" Data from player (in bytes). """
|
|
|
chunk = chunk.decode("latin-1", "ignore")
|
|
|
key = chunk.upper()
|
|
|
- log.msg("CIMPortReport.player({0}) : I AM stopping...".format(key))
|
|
|
+ log.warn("CIMPortReport.player({0}) : I AM stopping...".format(key))
|
|
|
|
|
|
# Stop the keepalive if we are activating something else
|
|
|
# or leaving...
|
|
@@ -549,7 +552,7 @@ class ScriptPort(object):
|
|
|
|
|
|
def deactivate(self):
|
|
|
self.state = 0
|
|
|
- log.msg("ScriptPort.deactivate ({0})".format(self.times_left))
|
|
|
+ log.debug("ScriptPort.deactivate ({0})".format(self.times_left))
|
|
|
assert(not self.save is None)
|
|
|
self.observer.load(self.save)
|
|
|
self.save = None
|
|
@@ -562,12 +565,12 @@ class ScriptPort(object):
|
|
|
self.deactivate()
|
|
|
|
|
|
def game_prompt(self, prompt: str):
|
|
|
- log.msg("{0} : {1}".format(self.state, prompt))
|
|
|
+ log.debug("{0} : {1}".format(self.state, prompt))
|
|
|
if self.state == 3:
|
|
|
- log.msg("game_prompt: ", prompt)
|
|
|
+ # log.("game_prompt: ", prompt)
|
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
self.state = 4
|
|
|
- log.msg("Ok, state 4")
|
|
|
+ log.debug("Ok, state 4")
|
|
|
if self.sector2 is None:
|
|
|
# Ok, we need to prompt for this.
|
|
|
self.queue_game.put(self.r + self.nl +
|
|
@@ -578,7 +581,7 @@ class ScriptPort(object):
|
|
|
|
|
|
pi = PlayerInput(self.game)
|
|
|
def got_need1(*_):
|
|
|
- log.msg("Ok, I have:", pi.keep)
|
|
|
+ log.debug("Ok, I have:", pi.keep)
|
|
|
if pi.keep['count'].strip() == '':
|
|
|
self.deactivate()
|
|
|
return
|
|
@@ -625,7 +628,7 @@ class ScriptPort(object):
|
|
|
self.deactivate()
|
|
|
return
|
|
|
self.times_left = int(pi.keep['count'])
|
|
|
- log.msg("Ok, I have:", pi.keep)
|
|
|
+ log.debug("Ok, I have:", pi.keep)
|
|
|
# self.queue_game.put(pformat(pi.keep).replace("\n", "\n\r"))
|
|
|
self.state = 5
|
|
|
self.trade()
|
|
@@ -637,7 +640,7 @@ class ScriptPort(object):
|
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
if self.fixable:
|
|
|
self.queue_game.put("Ok! Let's fix this by going to the other sector..." + self.nl)
|
|
|
- log.msg("Fixing...")
|
|
|
+ log.debug("Fixing...")
|
|
|
if self.this_sector == self.sector1:
|
|
|
self.this_sector = self.sector2
|
|
|
self.queue_player.put("{0}\r".format(self.sector2))
|
|
@@ -665,7 +668,7 @@ class ScriptPort(object):
|
|
|
self.last_credits = self.credits
|
|
|
else:
|
|
|
if self.credits <= self.last_credits:
|
|
|
- log.msg("We don't seem to be making any money here...")
|
|
|
+ log.warn("We don't seem to be making any money here...")
|
|
|
self.queue_game.put(self.r + self.nl + "We don't seem to be making any money here. I'm stopping!" + self.nl)
|
|
|
self.deactivate()
|
|
|
return
|
|
@@ -684,7 +687,7 @@ class ScriptPort(object):
|
|
|
else:
|
|
|
self.sell_pct += 1
|
|
|
price = amount * self.sell_pct // 100
|
|
|
- log.msg("start: {0} % {1} price {2}".format(amount, self.sell_perc, price))
|
|
|
+ log.debug("start: {0} % {1} price {2}".format(amount, self.sell_perc, price))
|
|
|
if self.sell_pct > 100:
|
|
|
self.sell_pct -= 1
|
|
|
else:
|
|
@@ -743,7 +746,7 @@ class ScriptPort(object):
|
|
|
self.last_credits = self.credits
|
|
|
else:
|
|
|
if self.credits <= self.last_credits:
|
|
|
- log.msg("We don't seem to be making any money here...")
|
|
|
+ log.warn("We don't seem to be making any money here...")
|
|
|
self.deactivate()
|
|
|
return
|
|
|
self.this_sector = self.sector1
|
|
@@ -755,7 +758,7 @@ class ScriptPort(object):
|
|
|
|
|
|
def trade(self, *_):
|
|
|
# state 5
|
|
|
- log.msg("trade!")
|
|
|
+ log.debug("trade!")
|
|
|
self.queue_player.put("pt") # Port Trade
|
|
|
|
|
|
self.this_port = self.game.gamedata.ports[self.this_sector]
|
|
@@ -787,7 +790,7 @@ class ScriptPort(object):
|
|
|
if line.startswith("You have ") and 'credits and' in line:
|
|
|
parts = line.replace(',', '').split()
|
|
|
credits = int(parts[2])
|
|
|
- log.msg("Credits: {0}".format(credits))
|
|
|
+ log.debug("Credits: {0}".format(credits))
|
|
|
self.credits = credits
|
|
|
|
|
|
if self.state == 1:
|
|
@@ -802,9 +805,9 @@ class ScriptPort(object):
|
|
|
# Warps to Sector(s) : 397 - (562) - (639)
|
|
|
_, _, warps = line.partition(':')
|
|
|
warps = warps.replace('-', '').replace('(', '').replace(')', '').strip()
|
|
|
- log.msg("Warps: [{0}]".format(warps))
|
|
|
+ log.debug("Warps: [{0}]".format(warps))
|
|
|
self.warps = [ int(x) for x in re.split("\s+", warps)]
|
|
|
- log.msg("Warps: [{0}]".format(self.warps))
|
|
|
+ log.debug("Warps: [{0}]".format(self.warps))
|
|
|
self.state = 2
|
|
|
elif self.state == 2:
|
|
|
if line == "":
|
|
@@ -815,7 +818,7 @@ class ScriptPort(object):
|
|
|
if True:
|
|
|
if not self.this_sector in self.game.gamedata.ports:
|
|
|
self.state = 0
|
|
|
- log.msg("Current sector {0} not in portdata.".format(self.this_sector))
|
|
|
+ log.debug("Current sector {0} not in portdata.".format(self.this_sector))
|
|
|
self.queue_game.put(self.r + self.nl + "I can't find the current sector in the portdata." + self.nl)
|
|
|
self.deactivate()
|
|
|
return
|
|
@@ -823,13 +826,13 @@ class ScriptPort(object):
|
|
|
# Ok, we are in the portdata
|
|
|
pd = self.game.gamedata.ports[self.this_sector]
|
|
|
if GameData.port_burnt(pd):
|
|
|
- log.msg("Current sector {0} port is burnt (<= 20%).".format(self.this_sector))
|
|
|
+ log.debug("Current sector {0} port is burnt (<= 20%).".format(self.this_sector))
|
|
|
self.queue_game.put(self.r + self.nl + "Current sector port is burnt out. <= 20%." + self.nl)
|
|
|
self.deactivate()
|
|
|
return
|
|
|
|
|
|
possible = [ x for x in self.warps if x in self.game.gamedata.ports ]
|
|
|
- log.msg("Possible:", possible)
|
|
|
+ log.debug("Possible:", possible)
|
|
|
|
|
|
# BUG: Sometimes links to another sector, don't link back!
|
|
|
# This causes the game to plot a course / autopilot.
|
|
@@ -846,7 +849,7 @@ class ScriptPort(object):
|
|
|
return
|
|
|
|
|
|
possible = [ x for x in possible if not GameData.port_burnt(self.game.gamedata.ports[x]) ]
|
|
|
- log.msg("Possible:", possible)
|
|
|
+ log.debug("Possible:", possible)
|
|
|
|
|
|
if len(possible) == 0:
|
|
|
self.state = 0
|
|
@@ -873,7 +876,7 @@ class ScriptPort(object):
|
|
|
return
|
|
|
else:
|
|
|
self.state = 0
|
|
|
- log.msg("We don't have any portdata!")
|
|
|
+ log.warn("We don't have any portdata!")
|
|
|
self.queue_game.put(self.r + self.nl + "I have no portdata. Please run CIM Port Report." + self.nl)
|
|
|
self.deactivate()
|
|
|
return
|
|
@@ -893,10 +896,10 @@ class ScriptPort(object):
|
|
|
if line.startswith('Fuel Ore') or line.startswith('Organics') or line.startswith('Equipment'):
|
|
|
work = line.replace('Fuel Ore', 'Fuel')
|
|
|
parts = re.split(r"\s+", work)
|
|
|
- # log.msg(parts)
|
|
|
+ # log.debug(parts)
|
|
|
# Equipment, Selling xxx x% xxx
|
|
|
if parts[-1] != '0' and parts[2] != '0' and parts[1] != 'Buying':
|
|
|
- log.msg("We have a problem -- they aren't buying what we have in stock!")
|
|
|
+ log.warn("We have a problem -- they aren't buying what we have in stock!")
|
|
|
stuff = line[0] # F O or E.
|
|
|
if stuff == 'F':
|
|
|
spos = 0
|
|
@@ -914,7 +917,7 @@ class ScriptPort(object):
|
|
|
self.deactivate()
|
|
|
return
|
|
|
if "We're not interested." in line:
|
|
|
- log.msg("Try, try again. :(")
|
|
|
+ log.warn("Try, try again. :(")
|
|
|
self.state = 5
|
|
|
self.trade()
|
|
|
|
|
@@ -926,7 +929,7 @@ class ScriptPort(object):
|
|
|
parts = line.replace(',', '').split()
|
|
|
start_price = int(parts[4])
|
|
|
price = start_price * self.sell_perc // 100
|
|
|
- log.msg("start: {0} % {1} price {2}".format(start_price, self.sell_perc, price))
|
|
|
+ log.debug("start: {0} % {1} price {2}".format(start_price, self.sell_perc, price))
|
|
|
self.sell_perc -= 1
|
|
|
self.queue_player.put("{0}\r".format(price))
|
|
|
if "We are selling up to" in line:
|
|
@@ -934,17 +937,17 @@ class ScriptPort(object):
|
|
|
self.state = 8
|
|
|
self.sell_perc = 100 - self.percent
|
|
|
if "We're not interested." in line:
|
|
|
- log.msg("Try, try again. :(")
|
|
|
+ log.info("Try, try again. :(")
|
|
|
self.state = 5
|
|
|
self.trade()
|
|
|
if "WHAT?!@!? you must be crazy!" in line:
|
|
|
- log.msg("fix offer")
|
|
|
+ log.warn("fix offer")
|
|
|
self.fix_offer = 1
|
|
|
if "So, you think I'm as stupid as you look?" in line:
|
|
|
- log.msg("fix offer")
|
|
|
+ log.warn("fix offer")
|
|
|
self.fix_offer = 1
|
|
|
if "Quit playing around, you're wasting my time!" in line:
|
|
|
- log.msg("fix offer")
|
|
|
+ log.warn("fix offer")
|
|
|
self.fix_offer = 1
|
|
|
|
|
|
elif self.state == 8:
|
|
@@ -955,11 +958,11 @@ class ScriptPort(object):
|
|
|
parts = line.replace(',', '').split()
|
|
|
start_price = int(parts[4])
|
|
|
price = start_price * self.sell_perc // 100
|
|
|
- log.msg("start: {0} % {1} price {2}".format(start_price, self.sell_perc, price))
|
|
|
+ log.debug("start: {0} % {1} price {2}".format(start_price, self.sell_perc, price))
|
|
|
self.sell_perc += 1
|
|
|
self.queue_player.put("{0}\r".format(price))
|
|
|
if "We're not interested." in line:
|
|
|
- log.msg("Try, try again. :(")
|
|
|
+ log.info("Try, try again. :(")
|
|
|
self.state = 5
|
|
|
self.trade()
|
|
|
|
|
@@ -971,7 +974,7 @@ class ScriptPort(object):
|
|
|
# self.trade()
|
|
|
|
|
|
# elif self.state == 3:
|
|
|
- # log.msg("At state 3 [{0}]".format(line))
|
|
|
+ # log.debug("At state 3 [{0}]".format(line))
|
|
|
# self.queue_game.put("At state 3.")
|
|
|
# self.deactivate()
|
|
|
# return
|
|
@@ -983,7 +986,7 @@ class ScriptExplore(object):
|
|
|
WARNINGS:
|
|
|
We assume the player has a Holo-Scanner!
|
|
|
We assume the player has lots o turns, or unlimited turns!
|
|
|
- We assume the player is aware we run infinitly until we can't find new sectors to move to!
|
|
|
+ We assume the player is aware we run infinitely until we can't find new sectors to move to!
|
|
|
"""
|
|
|
def __init__(self, game):
|
|
|
self.game = game
|
|
@@ -1021,7 +1024,7 @@ class ScriptExplore(object):
|
|
|
|
|
|
def settimes(*_):
|
|
|
times = ask.keep['times'].strip()
|
|
|
- log.msg("settimes got '{0}'".format(times))
|
|
|
+ log.debug("settimes got '{0}'".format(times))
|
|
|
if times == '':
|
|
|
self.deactivate()
|
|
|
else:
|
|
@@ -1044,7 +1047,7 @@ class ScriptExplore(object):
|
|
|
|
|
|
def deactivate(self):
|
|
|
self.state = 0
|
|
|
- log.msg("ScriptExplore.deactivate()")
|
|
|
+ log.debug("ScriptExplore.deactivate()")
|
|
|
assert(not self.save is None)
|
|
|
self.observer.load(self.save)
|
|
|
self.save = None
|
|
@@ -1071,7 +1074,7 @@ class ScriptExplore(object):
|
|
|
self.clear = []
|
|
|
self.highwarp = 0
|
|
|
self.highsector = 0
|
|
|
- log.msg("ScriptExplore.resetStuff()")
|
|
|
+ log.debug("ScriptExplore.resetStuff()")
|
|
|
|
|
|
def dead_end(self):
|
|
|
""" We've reached a dead end.
|
|
@@ -1096,13 +1099,13 @@ class ScriptExplore(object):
|
|
|
self.deactivate()
|
|
|
|
|
|
def game_prompt(self, prompt: str):
|
|
|
- # log.msg("{0} : {1}".format(self.state, prompt))
|
|
|
+ log.debug("{0} : {1}".format(self.state, prompt))
|
|
|
if self.state == 2:
|
|
|
if "Select (H)olo Scan or (D)ensity Scan or (Q)uit" in prompt:
|
|
|
self.send2game("D")
|
|
|
# self.state += 1
|
|
|
elif self.state == 5:
|
|
|
- log.msg("dense is {0} sectors big".format(len(self.dense)))
|
|
|
+ log.debug("dense is {0} sectors big".format(len(self.dense)))
|
|
|
self.state += 1
|
|
|
self.send2game("SH")
|
|
|
elif self.state == 12:
|
|
@@ -1115,7 +1118,7 @@ class ScriptExplore(object):
|
|
|
self.state += 1
|
|
|
# Arriving sector :1691 Autopilot disengaging.
|
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- log.msg("We made it to where we wanted to go!")
|
|
|
+ log.info("We made it to where we wanted to go!")
|
|
|
# can't init state 1, because we're at a prompt, so...
|
|
|
self.send2game("S")
|
|
|
self.state = 2
|
|
@@ -1126,7 +1129,7 @@ class ScriptExplore(object):
|
|
|
self.travel_path.pop(0)
|
|
|
self.state = 12
|
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
- log.msg("We made it to where we wanted to go!")
|
|
|
+ log.info("We made it to where we wanted to go!")
|
|
|
# can't init state 1, because we're at a prompt, so...
|
|
|
self.send2game("S")
|
|
|
self.state = 2
|
|
@@ -1139,7 +1142,7 @@ class ScriptExplore(object):
|
|
|
# this should re-trigger a scan
|
|
|
|
|
|
def game_line(self, line: str):
|
|
|
- log.msg("{0} | {1}".format(self.state, line))
|
|
|
+ log.debug("{0} | {1}".format(self.state, line))
|
|
|
#if "Mine Control" in line: # If we don't have a Holo-Scanner and we attempted to do a Holo-scan, abort
|
|
|
# self.deactivate()
|
|
|
|
|
@@ -1150,7 +1153,7 @@ class ScriptExplore(object):
|
|
|
if "Relative Density Scan" in line:
|
|
|
self.state = 3
|
|
|
elif "You don't have a long range scanner." in line:
|
|
|
- log.msg("FATAL: No Long Range Scanner Installed!")
|
|
|
+ log.warn("FATAL: No Long Range Scanner Installed!")
|
|
|
self.send2player(Boxes.alert("You need a Long Range Scanner!"))
|
|
|
self.deactivate()
|
|
|
return
|
|
@@ -1163,7 +1166,7 @@ class ScriptExplore(object):
|
|
|
new_sector = '(' in line
|
|
|
work = line.replace(':', '').replace(')', '').replace('(', '').replace('%', '').replace('==>', '')
|
|
|
work = re.split(r"\s+", work)
|
|
|
- log.msg(work)
|
|
|
+ log.debug(work)
|
|
|
# 'Sector', '8192', '0', 'Warps', '4', 'NavHaz', '0', 'Anom', 'No'
|
|
|
# 'Sector', '(', '8192)', '0', 'Warps', '4', 'NavHaz', '0', 'Anom', 'No'
|
|
|
|
|
@@ -1177,7 +1180,7 @@ class ScriptExplore(object):
|
|
|
#self.dense.append( {'sector': int(work[1]), 'density': int(work[2]), 'warps': int(work[4]), 'navhaz': int(work[6]), 'anom': temp} )
|
|
|
|
|
|
self.dense.append( {'sector': int(work[1]), 'density': int(work[2]), 'warps': int(work[4]), 'navhaz': int(work[6]), 'anom': work[8] == 'Yes'} )
|
|
|
- log.msg(self.dense)
|
|
|
+ log.debug(self.dense)
|
|
|
# {'sector': 8192, 'density': 0, 'warps': 4, 'navhaz': 0, 'anom': False}
|
|
|
|
|
|
elif line == "":
|
|
@@ -1190,11 +1193,11 @@ class ScriptExplore(object):
|
|
|
if self.state == 4:
|
|
|
# Begin Processing our data we got from density scan and find highest warp count in what sectors
|
|
|
# Remove sectors with one warp
|
|
|
- log.msg("state 4: {0}".format(self.dense))
|
|
|
+ log.debug("state 4: {0}".format(self.dense))
|
|
|
|
|
|
# Do we have a new place to go? (That is also worth going to)
|
|
|
if not self.dense: # Dense contains no new sectors, abort
|
|
|
- log.msg("No New Sectors Found!")
|
|
|
+ log.info("No New Sectors Found!")
|
|
|
self.dead_end()
|
|
|
return
|
|
|
|
|
@@ -1222,7 +1225,7 @@ class ScriptExplore(object):
|
|
|
|
|
|
# if not any( w['warps'] > 1 for w in self.dense):
|
|
|
# # If there are no sectors with more that 1 warp, abort
|
|
|
- # log.msg("No Sectors Found except one move sector!")
|
|
|
+ # log.debug("No Sectors Found except one move sector!")
|
|
|
# self.dead_end()
|
|
|
# return
|
|
|
|
|
@@ -1248,7 +1251,7 @@ class ScriptExplore(object):
|
|
|
# self.clear.append(d['sector'])
|
|
|
|
|
|
if self.clear: # We have sector(s) we can move to!
|
|
|
- log.msg("Clear Sectors: {0}".format(len(self.clear)))
|
|
|
+ log.debug("Clear Sectors: {0}".format(len(self.clear)))
|
|
|
# This was state 5 but why can't we reduce number of states? ( Yeah let's kick California and New York out of the US, oh wrong states :P )
|
|
|
# Sort to find greatest warp count
|
|
|
|
|
@@ -1265,10 +1268,10 @@ class ScriptExplore(object):
|
|
|
# self.highsector = d['sector']
|
|
|
|
|
|
# if self.highwarp and self.highsector:
|
|
|
- log.msg("Sector: {0:5d} Warps: {1}".format(self.highsector, self.highwarp))
|
|
|
+ log.info("Sector: {0:5d} Warps: {1}".format(self.highsector, self.highwarp))
|
|
|
self.state += 1
|
|
|
else:
|
|
|
- log.msg("No (safe) sectors to move to!")
|
|
|
+ log.warn("No (safe) sectors to move to!")
|
|
|
# Let's try this?!
|
|
|
# self.dead_end() # NO!
|
|
|
self.game_over("No SAFE moves.")
|
|
@@ -1292,7 +1295,7 @@ class ScriptExplore(object):
|
|
|
# Warning! Yes we can and will eat all the turns! :P
|
|
|
if self.times == 0:
|
|
|
self.send2player(Boxes.alert("Completed {0}".format(self.maxtimes), base="green"))
|
|
|
- log.msg("Completed {0}".format(self.maxtimes))
|
|
|
+ log.info("Completed {0}".format(self.maxtimes))
|
|
|
self.deactivate()
|
|
|
return
|
|
|
|
|
@@ -1306,11 +1309,11 @@ class ScriptExplore(object):
|
|
|
|
|
|
elif self.state == 10:
|
|
|
if line.startswith("You are already in that sector!"):
|
|
|
- log.msg("Already here. (Whoops!)")
|
|
|
+ log.info("Already here. (Whoops!)")
|
|
|
self.state = 1
|
|
|
return
|
|
|
if line.startswith("Sector : {0}".format(self.highsector)):
|
|
|
- log.msg("We're here!")
|
|
|
+ log.info("We're here!")
|
|
|
# Ok, we're already there! no autopilot needed!
|
|
|
self.state = 1
|
|
|
return
|
|
@@ -1320,8 +1323,9 @@ class ScriptExplore(object):
|
|
|
# Ok, we've got a path.
|
|
|
self.state += 1
|
|
|
elif self.state == 11:
|
|
|
+ # TOFIX: This can be multiple lines
|
|
|
self.travel_path = line.replace('(', '').replace(')', '').split(' > ')
|
|
|
- log.msg("Travel path: {0}".format(self.travel_path))
|
|
|
+ log.debug("Travel path: {0}".format(self.travel_path))
|
|
|
self.state += 1
|
|
|
self.travel_path.pop(0) # First sector is one we're in.
|
|
|
self.stophere = False
|
|
@@ -1329,7 +1333,7 @@ class ScriptExplore(object):
|
|
|
elif self.state == 12:
|
|
|
# Arriving sector :1691 Autopilot disengaging.
|
|
|
if 'Autopilot disengaging.' in line:
|
|
|
- log.msg("We made it to where we wanted to go!")
|
|
|
+ log.info("We made it to where we wanted to go!")
|
|
|
self.state = 1
|
|
|
return
|
|
|
elif self.state == 13:
|
|
@@ -1337,22 +1341,22 @@ class ScriptExplore(object):
|
|
|
self.state += 1
|
|
|
elif self.state == 14:
|
|
|
if line == "":
|
|
|
- log.msg("PATH: {0}".format(self.travel_path))
|
|
|
+ log.debug("PATH: {0}".format(self.travel_path))
|
|
|
|
|
|
# end of the scan, decision time
|
|
|
if self.stophere:
|
|
|
- log.msg("STOPHERE")
|
|
|
+ log.info("STOPHERE")
|
|
|
# Ok, let's stop here!
|
|
|
# Re-save the sector we were trying to get to. (we didn't make it there)
|
|
|
self.stacksector.add(self.highsector)
|
|
|
self.state = 20
|
|
|
else:
|
|
|
if self.go_on:
|
|
|
- log.msg("GO ON")
|
|
|
+ log.info("GO ON")
|
|
|
# Ok, carry on!
|
|
|
self.state = 15
|
|
|
else:
|
|
|
- log.msg("Our way is blocked...")
|
|
|
+ log.warn("Our way is blocked...")
|
|
|
self.stacksector.add(self.highsector)
|
|
|
self.state = 20
|
|
|
|
|
@@ -1375,10 +1379,10 @@ class ScriptExplore(object):
|
|
|
self.stophere = True
|
|
|
|
|
|
next_stop = self.travel_path[0]
|
|
|
- log.msg("next_stop {0} from {1}".format(next_stop, self.travel_path))
|
|
|
- log.msg("parts: {0}".format(parts))
|
|
|
+ log.debug("next_stop {0} from {1}".format(next_stop, self.travel_path))
|
|
|
+ log.debug("parts: {0}".format(parts))
|
|
|
if parts[1] == next_stop:
|
|
|
- log.msg("next_stop {0} found...".format(next_stop))
|
|
|
+ log.info("next_stop {0} found...".format(next_stop))
|
|
|
# Ok, this is our next stop. Is it safe to travel to?
|
|
|
if parts[2] not in ('100', '0', '1', '101'):
|
|
|
# Ok, it's not safe to go on.
|
|
@@ -1444,7 +1448,7 @@ class ScriptSpace(object):
|
|
|
|
|
|
def deactivate(self):
|
|
|
self.state = 0
|
|
|
- log.msg("ScriptPort.deactivate ({0})".format(self.times_left))
|
|
|
+ log.debug("ScriptPort.deactivate ({0})".format(self.times_left))
|
|
|
assert(not self.save is None)
|
|
|
self.observer.load(self.save)
|
|
|
self.save = None
|
|
@@ -1472,7 +1476,7 @@ class ScriptSpace(object):
|
|
|
if pos not in seen:
|
|
|
next_possible.add(pos)
|
|
|
else:
|
|
|
- log.msg("unknown found:", s)
|
|
|
+ log.debug("unknown found:", s)
|
|
|
self.unknown = s
|
|
|
done = True
|
|
|
break
|
|
@@ -1480,12 +1484,12 @@ class ScriptSpace(object):
|
|
|
seen.add(s)
|
|
|
|
|
|
if self.unknown is None:
|
|
|
- log.msg("possible:", next_possible)
|
|
|
+ log.debug("possible:", next_possible)
|
|
|
possible = next_possible
|
|
|
yield
|
|
|
|
|
|
def find_unknown(self, starting_sector):
|
|
|
- log.msg("find_unknown( {0})".format(starting_sector))
|
|
|
+ log.debug("find_unknown( {0})".format(starting_sector))
|
|
|
d = defer.Deferred()
|
|
|
# Process things
|
|
|
|
|
@@ -1499,11 +1503,11 @@ class ScriptSpace(object):
|
|
|
if sector is None:
|
|
|
self.deactivate()
|
|
|
return
|
|
|
- log.msg("Travel to {0}...".format(sector))
|
|
|
+ log.debug("Travel to {0}...".format(sector))
|
|
|
self.queue_player.put("{0}\r".format(sector))
|
|
|
|
|
|
def game_prompt(self, prompt: str):
|
|
|
- log.msg("{0} : {1}".format(self.state, prompt))
|
|
|
+ log.debug("{0} : {1}".format(self.state, prompt))
|
|
|
if self.state == 3:
|
|
|
if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
|
# this_sector code isn't working -- so! Get sector from prompt
|
|
@@ -1512,7 +1516,7 @@ class ScriptSpace(object):
|
|
|
sector, _, _ = sector.partition(']')
|
|
|
self.this_sector = int(sector)
|
|
|
# Ok, we're done with Density Scan, and we're back at the command prompt
|
|
|
- log.msg("Go find the nearest unknown...")
|
|
|
+ log.debug("Go find the nearest unknown...")
|
|
|
d = self.find_unknown(sector)
|
|
|
d.addCallback(self.show_unknown)
|
|
|
elif self.state == 6:
|
|
@@ -1526,11 +1530,11 @@ class ScriptSpace(object):
|
|
|
self.queue_player.put("S")
|
|
|
self.this_sector = sector
|
|
|
else:
|
|
|
- log.msg("FATAL: Density for {0} is {1}".format(sector, self.density[sector]))
|
|
|
+ log.warn("FATAL: Density for {0} is {1}".format(sector, self.density[sector]))
|
|
|
self.deactivate()
|
|
|
return
|
|
|
else:
|
|
|
- log.msg("{0} not in density scan? (how's that possible?)".format(sector))
|
|
|
+ log.error("{0} not in density scan? (how's that possible?)".format(sector))
|
|
|
self.deactivate()
|
|
|
return
|
|
|
elif self.state == 7:
|
|
@@ -1555,32 +1559,32 @@ class ScriptSpace(object):
|
|
|
self.state = 7
|
|
|
self.this_sector = sector
|
|
|
else:
|
|
|
- log.msg("FATAL: Density for {0} is {1}".format(sector, self.density[sector]))
|
|
|
+ log.warn("FATAL: Density for {0} is {1}".format(sector, self.density[sector]))
|
|
|
self.deactivate()
|
|
|
return
|
|
|
else:
|
|
|
- log.msg("{0} not in density scane? (how's that possible...)".format(sector))
|
|
|
+ log.error("{0} not in density scane? (how's that possible...)".format(sector))
|
|
|
self.deactivate()
|
|
|
return
|
|
|
|
|
|
def next_unknown(self, sector):
|
|
|
- log.msg("Unknown is :", sector)
|
|
|
+ log.info("Unknown is :", sector)
|
|
|
self.deactivate()
|
|
|
|
|
|
def game_line(self, line: str):
|
|
|
- log.msg("line {0} : {1}".format(self.state, line))
|
|
|
+ log.debug("line {0} : {1}".format(self.state, line))
|
|
|
|
|
|
if line.startswith('Sector : '):
|
|
|
work = line.strip()
|
|
|
parts = re.split(r"\s+", work)
|
|
|
self.this_sector = int(parts[2])
|
|
|
- log.msg("game_line sector", self.this_sector)
|
|
|
+ log.debug("game_line sector", self.this_sector)
|
|
|
elif line.startswith("Command [TL=]"):
|
|
|
# Ok, get the current sector from this
|
|
|
_, _, sector = line.partition("]:[")
|
|
|
sector, _, _ = sector.partition("]")
|
|
|
self.this_sector = int(sector)
|
|
|
- log.msg("current sector: {0}".format(self.this_sector))
|
|
|
+ log.debug("current sector: {0}".format(self.this_sector))
|
|
|
elif line.startswith('Warps to Sector(s) :'):
|
|
|
# Warps to Sector(s) : 5468
|
|
|
_, _, work = line.partition(':')
|
|
@@ -1598,20 +1602,20 @@ class ScriptSpace(object):
|
|
|
if line == '':
|
|
|
# End of Density Scan
|
|
|
self.state += 1
|
|
|
- log.msg("Density: {0}".format(self.density))
|
|
|
+ log.debug("Density: {0}".format(self.density))
|
|
|
# self.deactivate()
|
|
|
elif line.startswith('Sector'):
|
|
|
# Parse Density Scan values
|
|
|
work = line.replace('(', '').replace(')', '').replace(':', '').replace('%', '').replace(',', '')
|
|
|
parts = re.split(r'\s+', work)
|
|
|
- log.msg("Sector", parts)
|
|
|
+ log.debug("Sector", parts)
|
|
|
sector = int(parts[1])
|
|
|
self.density[sector] = int(parts[3])
|
|
|
if parts[7] != '0':
|
|
|
- log.msg("NavHaz {0} : {1}".format(parts[7], work))
|
|
|
+ log.warn("NavHaz {0} : {1}".format(parts[7], work))
|
|
|
self.density[sector] += 99
|
|
|
if parts[9] != 'No':
|
|
|
- log.msg("Anom {0} : {1}".format(parts[9], work))
|
|
|
+ log.warn("Anom {0} : {1}".format(parts[9], work))
|
|
|
self.density[sector] += 990
|
|
|
elif self.state == 4:
|
|
|
# Looking for shortest path message / warp info
|
|
@@ -1631,18 +1635,18 @@ class ScriptSpace(object):
|
|
|
else:
|
|
|
work = line.replace("(", "").replace(")", "").replace(">", "").strip()
|
|
|
self.path = [int(x) for x in work.split()]
|
|
|
- log.msg("Path:", self.path)
|
|
|
+ log.debug("Path:", self.path)
|
|
|
|
|
|
# Verify
|
|
|
current = self.path.pop(0)
|
|
|
if current != self.this_sector:
|
|
|
- log.msg("Failed: {0} != {1}".format(current, self.this_sector))
|
|
|
+ log.warn("Failed: {0} != {1}".format(current, self.this_sector))
|
|
|
self.deactivate()
|
|
|
return
|
|
|
elif self.state == 7:
|
|
|
if self.unknown == self.this_sector:
|
|
|
# We have arrived!
|
|
|
- log.msg("We're here!")
|
|
|
+ log.info("We're here!")
|
|
|
self.deactivate()
|
|
|
|
|
|
|
|
@@ -1698,7 +1702,7 @@ class ProxyMenu(object):
|
|
|
self.menu()
|
|
|
|
|
|
def __del__(self):
|
|
|
- log.msg("ProxyMenu {0} RIP".format(self))
|
|
|
+ log.debug("ProxyMenu {0} RIP".format(self))
|
|
|
|
|
|
def whenDone(self):
|
|
|
self.defer = defer.Deferred()
|
|
@@ -1742,7 +1746,7 @@ class ProxyMenu(object):
|
|
|
self.queue_game.put(" " + self.c + "-=>" + self.r + " ")
|
|
|
|
|
|
def awake(self):
|
|
|
- log.msg("ProxyMenu.awake()")
|
|
|
+ log.info("ProxyMenu.awake()")
|
|
|
self.game.queue_player.put(" ")
|
|
|
|
|
|
def port_report(self, portdata: dict):
|
|
@@ -1758,7 +1762,7 @@ class ProxyMenu(object):
|
|
|
self.welcome_back()
|
|
|
|
|
|
def make_trade_report(self):
|
|
|
- log.msg("make_trade_report()")
|
|
|
+ log.debug("make_trade_report()")
|
|
|
ok_trades = []
|
|
|
best_trades = []
|
|
|
|
|
@@ -1820,7 +1824,7 @@ class ProxyMenu(object):
|
|
|
""" Data from player (in bytes). """
|
|
|
chunk = chunk.decode("latin-1", "ignore")
|
|
|
key = chunk.upper()
|
|
|
- log.msg("ProxyMenu.player({0})".format(key))
|
|
|
+ log.debug("ProxyMenu.player({0})".format(key))
|
|
|
|
|
|
# Stop the keepalive if we are activating something else
|
|
|
# or leaving...
|
|
@@ -1906,7 +1910,7 @@ class ProxyMenu(object):
|
|
|
d.addCallback(ask.output)
|
|
|
|
|
|
def show_values(show):
|
|
|
- log.msg(show)
|
|
|
+ log.debug(show)
|
|
|
self.queue_game.put(pformat(show).replace("\n", "\n\r") + self.nl)
|
|
|
|
|
|
d.addCallback(lambda ignore: show_values(ask.keep))
|
|
@@ -2019,7 +2023,7 @@ class ProxyMenu(object):
|
|
|
|
|
|
|
|
|
def welcome_back(self, *_):
|
|
|
- log.msg("welcome_back")
|
|
|
+ log.debug("welcome_back")
|
|
|
self.keepalive.start(30, True)
|
|
|
self.menu()
|
|
|
|