|
@@ -869,7 +869,7 @@ class ScriptPort(object):
|
|
|
|
|
|
self.queue_player.put("{0}\r".format(self.this_sector))
|
|
self.queue_player.put("{0}\r".format(self.this_sector))
|
|
self.state = 10
|
|
self.state = 10
|
|
-
|
|
|
|
|
|
+
|
|
elif self.state == 10:
|
|
elif self.state == 10:
|
|
# DANGER! You have marked sector X to be avoided!
|
|
# DANGER! You have marked sector X to be avoided!
|
|
if prompt.startswith('Do you really want to warp there? (Y/N) '):
|
|
if prompt.startswith('Do you really want to warp there? (Y/N) '):
|
|
@@ -2555,9 +2555,23 @@ class ProxyMenu(object):
|
|
self.game.queue_player.put(" ")
|
|
self.game.queue_player.put(" ")
|
|
|
|
|
|
def port_report(self, portdata: dict):
|
|
def port_report(self, portdata: dict):
|
|
|
|
+ # Check to see if the old data is close to the new data.
|
|
|
|
+ # If so, don't toss out the special!
|
|
|
|
+ matches = 0
|
|
|
|
+ for k, v in self.old_ports.items():
|
|
|
|
+ if k in self.game.gamedata.ports:
|
|
|
|
+ # Ok, key exists. Is the class the same
|
|
|
|
+ if self.game.gamedata.ports[k]['class'] == v['class']:
|
|
|
|
+ matches += 1
|
|
|
|
+ log.info("Got {0} matches old ports to new.".format( matches))
|
|
|
|
+ if matches > 12:
|
|
|
|
+ self.queue_game.put("Restoring (SPECIAL) class ports ({0}).".format(len(self.specials)) + self.nl)
|
|
|
|
+ for p in self.specials.keys():
|
|
|
|
+ self.game.gamedata.ports[int(p)] = self.specials[p]
|
|
|
|
+
|
|
# self.portdata = portdata
|
|
# self.portdata = portdata
|
|
# self.game.portdata = portdata
|
|
# self.game.portdata = portdata
|
|
- self.queue_game.put("Loaded {0} ports.".format(len(portdata)) + self.nl)
|
|
|
|
|
|
+ self.queue_game.put("Loaded {0} ports.".format(len(self.game.ports)) + self.nl)
|
|
self.welcome_back()
|
|
self.welcome_back()
|
|
|
|
|
|
def warp_report(self, warpdata: dict):
|
|
def warp_report(self, warpdata: dict):
|
|
@@ -2714,6 +2728,10 @@ class ProxyMenu(object):
|
|
return
|
|
return
|
|
elif key == "P":
|
|
elif key == "P":
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
|
|
+ # Save specials, save 10 ports
|
|
|
|
+ self.specials = self.game.gamedata.special_ports()
|
|
|
|
+ # Save 20 ports. https://stackoverflow.com/questions/7971618/python-return-first-n-keyvalue-pairs-from-dict#7971655
|
|
|
|
+ self.old_ports = {k: self.game.gamedata.ports[k] for k in list(self.game.gamedata.ports)[:20]}
|
|
self.game.gamedata.reset_ports()
|
|
self.game.gamedata.reset_ports()
|
|
# Activate CIM Port Report
|
|
# Activate CIM Port Report
|
|
report = CIMPortReport(self.game)
|
|
report = CIMPortReport(self.game)
|