3 #NOTE: The -u option is required for unbuffered stdin/stdout.
4 # If stdin/stdout are buffered, the manager program will not recieve any messages and assume that the agent has timed out.
7 vixen.py - A sample Stratego AI for the UCC Programming Competition 2012
9 Written in python, the slithery language
11 author Sam Moore (matches) [SZM]
12 website http://matches.ucc.asn.au/stratego
13 email progcomp@ucc.asn.au or matches@ucc.asn.au
14 git git.ucc.asn.au/progcomp2012.git
17 from basic_python import *
23 " Python based AI, improves upon Asmodeus by taking into account probabilities, and common paths "
25 #sys.stderr.write("Vixen initialised...\n")
26 BasicAI.__init__(self)
29 #self.bombScores = {'1' : -0.9 , '2' : -0.8 , '3' : -0.5 , '4' : 0.1, '5' : 0.1, '6' : 0.3, '7' : 0.7, '8' : 1 , '9' : 0.6, 's' : 0}
30 #self.bombScores = {'1' : -0.9 , '2' : -0.8 , '3' : -0.5 , '4' : -0.5, '5' : -0.4, '6' : -0.5, '7' : -0.2, '8' : 1.0 , '9' : -0.1, 's' : -0.2}
31 self.suicideScores = {'1' : -0.8 , '2' : -0.6 , '3' : -0.5, '4' : -0.25, '5' : -0.2, '6' : 0.0, '7' : 0.1, '8' : -1.0 , '9' : 0.0, 's' : -0.4}
32 self.killScores = {'1' : 1.0 , '2' : 0.9 , '3' : 0.9 , '4' : 0.8, '5' : 0.8, '6' : 0.8, '7' : 0.8, '8' : 0.9 , '9' : 0.7, 's' : 1.0}
33 self.riskScores = {'1' : -0.3, '2' : -0.3, '3' : 0.0, '4': 0.4, '5': 0.6, '6': 0.7, '7':0.8, '8': 0.0, '9' : 1.0, 's' : 0.1}
40 #sys.stderr.write("Vixen MakingMove...\n")
41 " Over-rides the default BasicAI.MakeMove function "
44 for unit in self.units:
45 if unit.mobile() == False:
48 scores = {"LEFT":0, "RIGHT":0, "UP":0, "DOWN":0}
51 for target in self.enemyUnits:
54 path = PathFinder().pathFind((unit.x, unit.y), (target.x, target.y), self.board)
55 if path == False or len(path) == 0:
57 #moveList.append({"unit":unit, "direction":path[0], "score":self.CalculateScore(unit, target, path)})
58 scores[path[0]] += self.CalculateScore(unit, target, path)
60 bestScore = sorted(scores.items(), key = lambda e : e[1], reverse=True)[0]
61 moveList.append({"unit":unit, "direction":bestScore[0], "score":bestScore[1]})
64 if len(moveList) == 0:
68 moveList.sort(key = lambda e : e["score"], reverse=True)
69 #sys.stderr.write("vixen - best move: " + str(moveList[0]["unit"].x) + " " + str(moveList[0]["unit"].y) + " " + moveList[0]["direction"] + " [ score = " + str(moveList[0]["score"]) + " ]\n")
70 #if moveList[0]["score"] == 0:
75 print str(moveList[0]["unit"].x) + " " + str(moveList[0]["unit"].y) + " " + moveList[0]["direction"]
79 def tailFactor(self, pathLength):
80 #if pathLength >= len(self.tailFactors) or pathLength <= 0:
82 #return self.tailFactors[pathLength]
83 #return 0.5 * (1.0 + pow(pathLength, 0.75))
84 return 1.0 / pathLength
87 def CalculateScore(self, attacker, defender, path):
88 p = move(attacker.x, attacker.y, path[0], 1)
94 prob = self.rankProbability(defender, rank)
96 #sys.stderr.write(" " + str(attacker.rank) + " vs. " + str(rank) + " [" + str(prob) + "] score " + str(self.combatScore(attacker.rank, rank, len(path))) + "\n")
97 total += prob * self.combatScore(attacker.rank, rank, len(path))
102 # total = total / count + self.riskScore(attacker.rank)
105 total = total * self.tailFactor(len(path))
106 #HACK - Prevent "oscillating" by decreasing the value of backtracks
107 if len(path) > 1 and len(attacker.positions) > 1 and attacker.positions[1][0] == p[0] and attacker.positions[1][1] == p[1]:
109 #sys.stderr.write("Total score for " + str(attacker) + " vs. " + str(defender) + " is " + str(total) + "\n")
112 def combatScore(self, attackerRank, defenderRank, pathLength):
113 if defenderRank == 'F':
115 elif defenderRank == 'B':
116 return self.bombScore(attackerRank)
117 elif defenderRank == 's' and attackerRank == '1' and pathLength == 2:
118 return self.suicideScore(attackerRank)
119 elif defenderRank == '1' and attackerRank == 's' and pathLength != 2:
120 return self.killScore(attackerRank)
122 if valuedRank(attackerRank) > valuedRank(defenderRank):
123 return self.killScore(defenderRank)
124 elif valuedRank(attackerRank) < valuedRank(defenderRank):
125 return self.suicideScore(attackerRank)
126 return self.killScore(defenderRank) + self.suicideScore(attackerRank)
128 def killScore(self, defenderRank):
129 return self.killScores[defenderRank]
131 def bombScore(self, attackerRank):
132 if attackerRank == '8':
135 return self.suicideScore(attackerRank)
137 def suicideScore(self, attackerRank):
138 return self.suicideScores[attackerRank]
140 def riskScore(self, attackerRank):
141 return self.riskScores[attackerRank]
143 def rankProbability(self, target, targetRank):
144 if targetRank == '+' or targetRank == '?':
146 if target.rank == targetRank:
148 elif target.rank != '?':
153 if rank == '+' or rank == '?':
155 elif rank == 'F' or rank == 'B':
156 if target.lastMoved < 0:
157 total += self.hiddenEnemies[rank]
159 total += self.hiddenEnemies[rank]
163 return float(float(self.hiddenEnemies[targetRank]) / float(total))
171 if __name__ == "__main__":
174 while vixen.MoveCycle():