浏览代码

ok_trades is working now.

Steve Thielemann 5 年之前
父节点
当前提交
19ff8f1660
共有 1 个文件被更改,包括 98 次插入37 次删除
  1. 98 37
      flexible.py

+ 98 - 37
flexible.py

@@ -466,10 +466,50 @@ class CIMPortReport(object):
 
 
 def port_burnt(port):
+    """ Is this port burned out? """
     if port['equ']['pct'] <= 20 or port['fuel']['pct'] <= 20 or port['org']['pct'] <= 20:
         return True
     return False
 
+def flip(port):
+    return port.replace('S', 'W').replace('B', 'S').replace('W', 'B')
+
+def port_trading(port1, port2):
+    """ Are there possible trades at these ports? """
+    if port1 == port2:
+        return False
+    p1 = [ c for c in port1]
+    p2 = [ c for c in port2]
+    # Any that are the same?  Remove them.
+    rem = False
+    for i in range(3):
+        if p1[i] == p2[i]:
+            p1[i] = 'X'
+            p2[i] = 'X'
+            rem = True
+    if rem:
+        j1 = "".join(p1).replace('X', '')
+        j2 = "".join(p2).replace('X', '')
+        if j1 == 'BS' and j2 == 'SB':
+            return True
+        if j1 == 'SB' and j2 == 'BS':
+            return True
+    # Matching 2 of them.
+    rport1 = flip(port1)
+    c = 0
+    match = []
+    for i in range(3):
+        if rport1[i] == port2[i]:
+            match.append(port2[i])
+            c += 1
+    if c > 1:
+        f = flip(match.pop(0))
+        if f in match:
+            return True
+        return False
+    return False
+
+
 class ScriptPort(object):
     """ Performs the Port script. 
     
@@ -750,7 +790,7 @@ class ScriptPort(object):
 
                     # BUG:  Sometimes links to another sector, don't link back!
                     # This causes the game to plot a course / autopilot.
-                    
+
                     if hasattr(self.game, 'warpdata'):
                         # Great!  verify that those warps link back to us!
                         possible = [ x for x in possible if self.this_sector in self.game.warpdata[x]]
@@ -763,12 +803,21 @@ class ScriptPort(object):
 
                     possible = [ x for x in possible if not port_burnt(self.game.portdata[x]) ]
                     log.msg("Possible:", possible)
-                    self.possible = possible
+
                     if len(possible) == 0:
                         self.state = 0
                         self.queue_game.put(self.r + self.nl + "I don't see any unburnt ports in [{0}].".format(self.warps) + self.nl)
                         self.deactivate()
                         return
+
+                    possible = [ x for x in possible if port_trading(self.game.portdata[self.this_sector]['port'], self.game.portdata[x]['port'])]
+                    self.possible = possible
+
+                    if len(possible) == 0:
+                        self.state = 0
+                        self.queue_game.put(self.r + self.nl + "I don't see any possible port trades in [{0}].".format(self.warps) + self.nl)
+                        self.deactivate()
+                        return
                     elif len(possible) == 1:
                         # Ok! there's only one!
                         self.sector2 = possible[0]
@@ -961,41 +1010,53 @@ class ProxyMenu(object):
 
         if key == "T":
             self.queue_game.put(self.c + key + self.r + self.nl)
-            # Ok, for each port
-            ok_trades = []
-            best_trades = []
-
-            # This is a very BAD idea to do something like this in twisted!
-            # (At least like this).  TO FIX. 
-            for sector, pd in self.game.portdata.items():
-                if not port_burnt(pd):
-                    pc = pd['class']
-
-                    # Ok, let's look into it.
-                    warps = self.game.warpdata[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]:
-                            # 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]):
-                                # it is > and has a port.
-                                wc = self.game.portdata[w]['class']
-
-                                # 1: "BBS",
-                                # 2: "BSB",
-                                # 3: "SBB",
-                                # 4: "SSB",
-                                # 5: "SBS",
-                                # 6: "BSS",
-                                # 7: "SSS",
-                                # 8: "BBB",
-
-                                if pc in (1,5) and wc in (2,4):
-                                    best_trades.append( "{0} -=- {1}".format(sector, w))
-                                elif pc in (2,4) and wc in (1,5):
-                                    best_trades.append( "{0} -=- {1}".format(sector, w))
-            self.queue_game.put("BEST TRADES:" + self.nl + self.nl.join(best_trades) + self.nl)
+
+            if not hasattr(self.game, 'portdata') or not hasattr(self.game, 'warpdata'):
+                self.queue_game.put("Missing portdata/warpdata." + self.nl)
+            else:
+                # Ok, for each port
+                ok_trades = []
+                best_trades = []
+
+                # This is a very BAD idea to do something like this in twisted!
+                # (At least like this).  TO FIX. 
+                for sector, pd in self.game.portdata.items():
+                    if not port_burnt(pd):
+                        pc = pd['class']
+
+                        # Ok, let's look into it.
+                        if not sector in self.game.warpdata:
+                            continue
+                            
+                        warps = self.game.warpdata[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]:
+                                # 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]):
+                                    # it is > and has a port.
+                                    wc = self.game.portdata[w]['class']
+
+                                    # 1: "BBS",
+                                    # 2: "BSB",
+                                    # 3: "SBB",
+                                    # 4: "SSB",
+                                    # 5: "SBS",
+                                    # 6: "BSS",
+                                    # 7: "SSS",
+                                    # 8: "BBB",
+
+                                    if pc in (1,5) and wc in (2,4):
+                                        best_trades.append( "{0:5} -=- {1:5}".format(sector, w))
+                                    elif pc in (2,4) and wc in (1,5):
+                                        best_trades.append( "{0:5} -=- {1:5}".format(sector, w))
+                                    elif port_trading(pd['port'], self.game.portdata[w]['port']):
+                                        ok_trades.append( "{0:5} -=- {1:5}".format(sector,w))
+
+                self.queue_game.put("BEST TRADES:" + self.nl + self.nl.join(best_trades) + self.nl)
+                self.queue_game.put("OK TRADES:" + self.nl + self.nl.join(ok_trades) + self.nl)
+                
 
         elif key == "P":
             self.queue_game.put(self.c + key + self.r + self.nl)