|
@@ -210,6 +210,9 @@ PORT_CLASSES = {
|
|
|
CLASSES_PORT = {v: k for k, v in PORT_CLASSES.items()}
|
|
|
import re
|
|
|
|
|
|
+# The CIMWarpReport -- is only needed if the json file gets damaged in some way.
|
|
|
+# or needs to be reset. The warps should automatically update themselves now.
|
|
|
+
|
|
|
class CIMWarpReport(object):
|
|
|
def __init__(self, game):
|
|
|
self.game = game
|
|
@@ -235,7 +238,7 @@ class CIMWarpReport(object):
|
|
|
|
|
|
self.queue_player.put("^") # Activate CIM
|
|
|
self.state = 1
|
|
|
- self.warpdata = {}
|
|
|
+ # self.warpdata = {}
|
|
|
self.warpcycle = cycle(["/", "-", "\\", "|"])
|
|
|
|
|
|
def game_prompt(self, prompt):
|
|
@@ -255,11 +258,11 @@ class CIMWarpReport(object):
|
|
|
self.game.to_player = self.to_player
|
|
|
self.observer.load(self.save)
|
|
|
self.save = None
|
|
|
- self.game.warpdata = self.warpdata
|
|
|
+ # self.game.warpdata = self.warpdata
|
|
|
self.queue_game.put("\b \b\r\n")
|
|
|
|
|
|
if not self.defer is None:
|
|
|
- self.defer.callback(self.warpdata)
|
|
|
+ self.defer.callback(self.game.gamedata.warps)
|
|
|
self.defer = None
|
|
|
|
|
|
def game_line(self, line):
|
|
@@ -272,7 +275,7 @@ class CIMWarpReport(object):
|
|
|
|
|
|
# This should be the CIM Report Data -- parse it
|
|
|
if self.warpcycle:
|
|
|
- if len(self.warpdata) % 10 == 0:
|
|
|
+ if len(self.game.gamedata.warp) % 10 == 0:
|
|
|
self.queue_game.put("\b" + next(self.warpcycle))
|
|
|
|
|
|
work = line.strip()
|
|
@@ -280,7 +283,7 @@ class CIMWarpReport(object):
|
|
|
parts = [int(x) for x in parts]
|
|
|
sector = parts.pop(0)
|
|
|
# tuples are nicer on memory, and the warpdata map isn't going to be changing.
|
|
|
- self.warpdata[sector] = tuple(parts)
|
|
|
+ # self.warpdata[sector] = tuple(parts)
|
|
|
self.game.gamedata.warp_to(sector, *parts)
|
|
|
|
|
|
def __del__(self):
|
|
@@ -315,6 +318,8 @@ class CIMWarpReport(object):
|
|
|
self.game.to_player = self.to_player
|
|
|
self.observer.load(self.save)
|
|
|
|
|
|
+# the CIMPortReport will still be needed.
|
|
|
+# We can't get fresh report data (that changes) any other way.
|
|
|
|
|
|
class CIMPortReport(object):
|
|
|
""" Parse data from CIM Port Report
|
|
@@ -361,7 +366,7 @@ class CIMPortReport(object):
|
|
|
|
|
|
self.queue_player.put("^") # Activate CIM
|
|
|
self.state = 1
|
|
|
- self.portdata = {}
|
|
|
+ # self.portdata = {}
|
|
|
self.portcycle = cycle(["/", "-", "\\", "|"])
|
|
|
|
|
|
def game_prompt(self, prompt):
|
|
@@ -381,11 +386,11 @@ class CIMPortReport(object):
|
|
|
self.game.to_player = self.to_player
|
|
|
self.observer.load(self.save)
|
|
|
self.save = None
|
|
|
- self.game.portdata = self.portdata
|
|
|
+ # self.game.portdata = self.portdata
|
|
|
self.queue_game.put("\b \b\r\n")
|
|
|
|
|
|
if not self.defer is None:
|
|
|
- self.defer.callback(self.portdata)
|
|
|
+ self.defer.callback(self.game.gamedata.ports)
|
|
|
self.defer = None
|
|
|
|
|
|
def game_line(self, line):
|
|
@@ -396,7 +401,7 @@ class CIMPortReport(object):
|
|
|
|
|
|
# This should be the CIM Report Data -- parse it
|
|
|
if self.portcycle:
|
|
|
- if len(self.portdata) % 10 == 0:
|
|
|
+ if len(self.game.gamedata.ports) % 10 == 0:
|
|
|
self.queue_game.put("\b" + next(self.portcycle))
|
|
|
|
|
|
work = line.replace("%", "")
|
|
@@ -431,7 +436,8 @@ class CIMPortReport(object):
|
|
|
|
|
|
# Convert BBS/SBB to Class number 1-8
|
|
|
data["class"] = CLASSES_PORT[data["port"]]
|
|
|
- self.portdata[port] = data
|
|
|
+ self.game.gamedata.set_port(port, data)
|
|
|
+ # self.portdata[port] = data
|
|
|
else:
|
|
|
log.msg("CIMPortReport:", line, "???")
|
|
|
|
|
@@ -601,10 +607,10 @@ class ScriptPort(object):
|
|
|
if self.sector2 is None:
|
|
|
# Ok, we need to prompt for this.
|
|
|
self.queue_game.put(self.r + self.nl +
|
|
|
- "Which sector to trade with? {0}".format(port_show_part(self.this_sector, self.game.portdata[self.this_sector])) +
|
|
|
+ "Which sector to trade with? {0}".format(port_show_part(self.this_sector, self.game.gamedata.ports[self.this_sector])) +
|
|
|
self.nl + Fore.CYAN)
|
|
|
for i, p in enumerate(self.possible):
|
|
|
- self.queue_game.put(" " + str(i + 1) + " : " + port_show_part(p, self.game.portdata[p]) + self.nl)
|
|
|
+ self.queue_game.put(" " + str(i + 1) + " : " + port_show_part(p, self.game.gamedata.ports[p]) + self.nl)
|
|
|
|
|
|
pi = PlayerInput(self.game)
|
|
|
def got_need1(*_):
|
|
@@ -634,19 +640,19 @@ class ScriptPort(object):
|
|
|
|
|
|
self.queue_game.put(self.r + self.nl + "Trading from {0} ({1}) to default {2} ({3}).".format(
|
|
|
self.this_sector,
|
|
|
- self.game.portdata[self.this_sector]['port'],
|
|
|
- self.sector2, self.game.portdata[self.sector2]['port']) + self.nl
|
|
|
+ self.game.gamedata.ports[self.this_sector]['port'],
|
|
|
+ self.sector2, self.game.gamedata.ports[self.sector2]['port']) + self.nl
|
|
|
)
|
|
|
|
|
|
self.queue_game.put(self.r + self.nl + "Trading {0}".format(
|
|
|
port_show(self.this_sector,
|
|
|
- self.game.portdata[self.this_sector],
|
|
|
+ self.game.gamedata.ports[self.this_sector],
|
|
|
self.sector2,
|
|
|
- self.game.portdata[self.sector2])
|
|
|
+ self.game.gamedata.ports[self.sector2])
|
|
|
))
|
|
|
|
|
|
# The code is smart enough now, that this can't happen. :( Drat!
|
|
|
- if self.game.portdata[self.this_sector]['port'] == self.game.portdata[self.sector2]['port']:
|
|
|
+ if self.game.gamedata.ports[self.this_sector]['port'] == self.game.gamedata.ports[self.sector2]['port']:
|
|
|
self.queue_game.put("Hey dummy! Look out the window! These ports are the same class!" + nl)
|
|
|
self.deactivate()
|
|
|
return
|
|
@@ -789,11 +795,11 @@ class ScriptPort(object):
|
|
|
log.msg("trade!")
|
|
|
self.queue_player.put("pt") # Port Trade
|
|
|
|
|
|
- self.this_port = self.game.portdata[self.this_sector]
|
|
|
+ self.this_port = self.game.gamedata.ports[self.this_sector]
|
|
|
if self.this_sector == self.sector1:
|
|
|
- self.other_port = self.game.portdata[self.sector2]
|
|
|
+ self.other_port = self.game.gamedata.ports[self.sector2]
|
|
|
else:
|
|
|
- self.other_port = self.game.portdata[self.sector1]
|
|
|
+ self.other_port = self.game.gamedata.ports[self.sector1]
|
|
|
|
|
|
# Ok, perform some calculations
|
|
|
self.tpc = self.this_port['class']
|
|
@@ -842,8 +848,9 @@ class ScriptPort(object):
|
|
|
# Ok, we're done
|
|
|
self.state = 3
|
|
|
# Check to see if we have information on any possible ports
|
|
|
- if hasattr(self.game, 'portdata'):
|
|
|
- if not self.this_sector in self.game.portdata:
|
|
|
+ # if hasattr(self.game, 'portdata'):
|
|
|
+ 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))
|
|
|
self.queue_game.put(self.r + self.nl + "I can't find the current sector in the portdata." + self.nl)
|
|
@@ -851,22 +858,23 @@ class ScriptPort(object):
|
|
|
return
|
|
|
else:
|
|
|
# Ok, we are in the portdata
|
|
|
- pd = self.game.portdata[self.this_sector]
|
|
|
+ pd = self.game.gamedata.ports[self.this_sector]
|
|
|
if port_burnt(pd):
|
|
|
log.msg("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.portdata ]
|
|
|
+ possible = [ x for x in self.warps if x in self.game.gamedata.ports ]
|
|
|
log.msg("Possible:", possible)
|
|
|
|
|
|
# BUG: Sometimes links to another sector, don't link back!
|
|
|
# This causes the game to plot a course / autopilot.
|
|
|
|
|
|
- if hasattr(self.game, 'warpdata'):
|
|
|
+ # if hasattr(self.game, 'warpdata'):
|
|
|
+ if True:
|
|
|
# Great! verify that those warps link back to us!
|
|
|
- possible = [ x for x in possible if self.this_sector in self.game.warpdata[x]]
|
|
|
+ possible = [ x for x in possible if x in self.game.gamedata.warps and self.this_sector in self.game.gamedata.warps[x]]
|
|
|
|
|
|
if len(possible) == 0:
|
|
|
self.state = 0
|
|
@@ -874,7 +882,7 @@ class ScriptPort(object):
|
|
|
self.deactivate()
|
|
|
return
|
|
|
|
|
|
- possible = [ x for x in possible if not port_burnt(self.game.portdata[x]) ]
|
|
|
+ possible = [ x for x in possible if not port_burnt(self.game.gamedata.ports[x]) ]
|
|
|
log.msg("Possible:", possible)
|
|
|
|
|
|
if len(possible) == 0:
|
|
@@ -883,7 +891,7 @@ class ScriptPort(object):
|
|
|
self.deactivate()
|
|
|
return
|
|
|
|
|
|
- possible = [ x for x in possible if port_trading(self.game.portdata[self.this_sector]['port'], self.game.portdata[x]['port'])]
|
|
|
+ possible = [ x for x in possible if port_trading(self.game.gamedata.ports[self.this_sector]['port'], self.game.gamedata.ports[x]['port'])]
|
|
|
self.possible = possible
|
|
|
|
|
|
if len(possible) == 0:
|
|
@@ -1037,21 +1045,21 @@ class ProxyMenu(object):
|
|
|
self.r = Style.RESET_ALL
|
|
|
self.c1 = merge(Style.BRIGHT + Fore.BLUE)
|
|
|
self.c2 = merge(Style.NORMAL + Fore.CYAN)
|
|
|
- self.portdata = None
|
|
|
+ # self.portdata = None
|
|
|
self.game = game
|
|
|
self.queue_game = game.queue_game
|
|
|
self.observer = game.observer
|
|
|
|
|
|
# Am I using self or game? (I think I want game, not self.)
|
|
|
- if hasattr(self.game, "portdata"):
|
|
|
- self.portdata = self.game.portdata
|
|
|
- else:
|
|
|
- self.portdata = {}
|
|
|
+ # if hasattr(self.game, "portdata"):
|
|
|
+ # self.portdata = self.game.portdata
|
|
|
+ # else:
|
|
|
+ # self.portdata = {}
|
|
|
|
|
|
- if hasattr(self.game, 'warpdata'):
|
|
|
- self.warpdata = self.game.warpdata
|
|
|
- else:
|
|
|
- self.warpdata = {}
|
|
|
+ # if hasattr(self.game, 'warpdata'):
|
|
|
+ # self.warpdata = self.game.warpdata
|
|
|
+ # else:
|
|
|
+ # self.warpdata = {}
|
|
|
|
|
|
if hasattr(self.game, 'trade_report'):
|
|
|
self.trade_report = self.game.trade_report
|
|
@@ -1090,16 +1098,16 @@ class ProxyMenu(object):
|
|
|
|
|
|
menu_item("D", "Display Report again")
|
|
|
# menu_item("Q", "Quest")
|
|
|
- if hasattr(self.game, 'portdata'):
|
|
|
- ports = len(self.game.portdata)
|
|
|
- else:
|
|
|
- ports = '?'
|
|
|
- menu_item("P", "Port CIM Report ({0})".format(ports))
|
|
|
- if hasattr(self.game, 'warpdata'):
|
|
|
- warps = len(self.game.warpdata)
|
|
|
- else:
|
|
|
- warps = '?'
|
|
|
- menu_item("W", "Warp CIM Report ({0})".format(warps))
|
|
|
+ # if hasattr(self.game, 'portdata'):
|
|
|
+ # ports = len(self.game.portdata)
|
|
|
+ # else:
|
|
|
+ # ports = '?'
|
|
|
+ menu_item("P", "Port CIM Report ({0})".format(len(self.game.gamedata.ports)))
|
|
|
+ # if hasattr(self.game, 'warpdata'):
|
|
|
+ # warps = len(self.game.warpdata)
|
|
|
+ # else:
|
|
|
+ # warps = '?'
|
|
|
+ menu_item("W", "Warp CIM Report ({0})".format(len(self.game.gamedata.warps)))
|
|
|
menu_item("T", "Trading Report")
|
|
|
menu_item("S", "Scripts")
|
|
|
menu_item("X", "eXit")
|
|
@@ -1110,14 +1118,14 @@ class ProxyMenu(object):
|
|
|
self.game.queue_player.put(" ")
|
|
|
|
|
|
def port_report(self, portdata: dict):
|
|
|
- self.portdata = portdata
|
|
|
- self.game.portdata = portdata
|
|
|
+ # self.portdata = portdata
|
|
|
+ # self.game.portdata = portdata
|
|
|
self.queue_game.put("Loaded {0} ports.".format(len(portdata)) + self.nl)
|
|
|
self.welcome_back()
|
|
|
|
|
|
def warp_report(self, warpdata: dict):
|
|
|
- self.warpdata = warpdata
|
|
|
- self.game.warpdata = warpdata
|
|
|
+ # self.warpdata = warpdata
|
|
|
+ # self.game.warpdata = warpdata
|
|
|
self.queue_game.put("Loaded {0} sectors.".format(len(warpdata)) + self.nl)
|
|
|
self.welcome_back()
|
|
|
|
|
@@ -1127,23 +1135,23 @@ class ProxyMenu(object):
|
|
|
best_trades = []
|
|
|
|
|
|
|
|
|
- for sector, pd in self.game.portdata.items():
|
|
|
+ for sector, pd in self.game.gamedata.ports.items():
|
|
|
if not port_burnt(pd):
|
|
|
pc = pd['class']
|
|
|
|
|
|
# Ok, let's look into it.
|
|
|
- if not sector in self.game.warpdata:
|
|
|
+ if not sector in self.game.gamedata.warps:
|
|
|
continue
|
|
|
|
|
|
- warps = self.game.warpdata[sector]
|
|
|
+ warps = self.game.gamedata.warps[sector]
|
|
|
for w in warps:
|
|
|
# Verify that we have that warp's info, and that the sector is in it.
|
|
|
# (We can get back from it)
|
|
|
- if w in self.game.warpdata and sector in self.game.warpdata[w]:
|
|
|
+ if w in self.game.gamedata.warps and sector in self.game.gamedata.warps[w]:
|
|
|
# Ok, we can get there -- and get back!
|
|
|
- if w > sector and w in self.game.portdata and not port_burnt(self.game.portdata[w]):
|
|
|
+ if w > sector and w in self.game.gamedata.ports and not port_burnt(self.game.gamedata.ports[w]):
|
|
|
# it is > and has a port.
|
|
|
- wd = self.game.portdata[w]
|
|
|
+ wd = self.game.gamedata.ports[w]
|
|
|
wc = wd['class']
|
|
|
|
|
|
# 1: "BBS",
|
|
@@ -1161,7 +1169,7 @@ class ProxyMenu(object):
|
|
|
elif pc in (2,4) and wc in (1,5):
|
|
|
best_trades.append(port_show(sector, pd, w, wd))
|
|
|
# best_trades.append( "{0:5} -=- {1:5}".format(sector, w))
|
|
|
- elif port_trading(pd['port'], self.game.portdata[w]['port']):
|
|
|
+ elif port_trading(pd['port'], self.game.gamedata.ports[w]['port']):
|
|
|
# ok_trades.append( "{0:5} -=- {1:5}".format(sector,w))
|
|
|
ok_trades.append(port_show(sector, pd, w, wd))
|
|
|
yield
|
|
@@ -1194,13 +1202,14 @@ class ProxyMenu(object):
|
|
|
# Trade Report
|
|
|
# do we have enough information to do this?
|
|
|
|
|
|
- if not hasattr(self.game, 'portdata') and not hasattr(self.game, 'warpdata'):
|
|
|
- self.queue_game.put("Missing portdata and warpdata." + self.nl)
|
|
|
- elif not hasattr(self.game, 'portdata'):
|
|
|
- self.queue_game.put("Missing portdata." + self.nl)
|
|
|
- elif not hasattr(self.game, 'warpdata'):
|
|
|
- self.queue_game.put("Missing warpdata." + self.nl)
|
|
|
- else:
|
|
|
+ # if not hasattr(self.game, 'portdata') and not hasattr(self.game, 'warpdata'):
|
|
|
+ # self.queue_game.put("Missing portdata and warpdata." + self.nl)
|
|
|
+ # elif not hasattr(self.game, 'portdata'):
|
|
|
+ # self.queue_game.put("Missing portdata." + self.nl)
|
|
|
+ # elif not hasattr(self.game, 'warpdata'):
|
|
|
+ # self.queue_game.put("Missing warpdata." + self.nl)
|
|
|
+ # else:
|
|
|
+ if True:
|
|
|
# Yes, so let's start!
|
|
|
self.trade_report = []
|
|
|
d = coiterate(self.make_trade_report())
|