975f6a79420033bec910c8c02eecd2d4f5f9e8bc
[progcomp2012.git] / agents / vixen / vixen.py
1 #!/usr/bin/python -u
2
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.
5
6 '''
7  vixen.py - A sample Stratego AI for the UCC Programming Competition 2012
8
9  Written in python, the slithery language 
10
11  author Sam Moore (matches) [SZM]
12  website http://matches.ucc.asn.au/stratego
13  email [email protected] or [email protected]
14  git git.ucc.asn.au/progcomp2012.git
15 '''
16
17 from basic_python import *
18 from path import *
19
20
21
22 class Vixen(BasicAI):
23         " Python based AI, improves upon Asmodeus by taking into account probabilities, and common paths "
24         def __init__(self):
25                 #sys.stderr.write("Vixen initialised...\n")
26                 BasicAI.__init__(self)
27                 
28                 
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}
34
35
36
37                         
38
39         def MakeMove(self):
40                 #sys.stderr.write("Vixen MakingMove...\n")
41                 " Over-rides the default BasicAI.MakeMove function "
42
43                 moveList = []
44                 for unit in self.units:
45                         if unit.mobile() == False:
46                                 continue
47
48                         scores = {"LEFT":0, "RIGHT":0, "UP":0, "DOWN":0}
49                         
50
51                         for target in self.enemyUnits:
52                                 if target == unit:
53                                         continue
54                                 path = PathFinder().pathFind((unit.x, unit.y), (target.x, target.y), self.board)
55                                 if path == False or len(path) == 0:
56                                         continue
57                                 #moveList.append({"unit":unit, "direction":path[0], "score":self.CalculateScore(unit, target, path)})
58                                 scores[path[0]] += self.CalculateScore(unit, target, path)
59
60                         bestScore = sorted(scores.items(), key = lambda e : e[1], reverse=True)[0]
61                         moveList.append({"unit":unit, "direction":bestScore[0], "score":bestScore[1]})
62                         
63
64                 if len(moveList) == 0:
65                         print "NO_MOVE"
66                         return True
67
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:
71                 #       print "NO_MOVE"
72                 #       return True
73
74                 
75                 print str(moveList[0]["unit"].x) + " " + str(moveList[0]["unit"].y) + " " + moveList[0]["direction"]
76                 return True
77                                 
78                         
79         def tailFactor(self, pathLength):
80                 #if pathLength >= len(self.tailFactors) or pathLength <= 0:
81                 #       return 0.0
82                 #return self.tailFactors[pathLength]
83                 #return 0.5 * (1.0 + pow(pathLength, 0.75))
84                 return 1.0 / pathLength
85
86
87         def CalculateScore(self, attacker, defender, path):
88                 p = move(attacker.x, attacker.y, path[0], 1)
89                 
90
91                 total = 0.0
92                 count = 0.0
93                 for rank in ranks:
94                         prob = self.rankProbability(defender, rank)                     
95                         if prob > 0.0:
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))
98                                 count += 1
99                                 
100                 
101                 #if count > 1:
102                 #       total = total / count + self.riskScore(attacker.rank)
103
104
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]:
108                         total = total / 100
109                 #sys.stderr.write("Total score for " + str(attacker) + " vs. " + str(defender) + " is " + str(total) + "\n")
110                 return total
111
112         def combatScore(self, attackerRank, defenderRank, pathLength):
113                 if defenderRank == 'F':
114                         return 1.0
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)
121
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)
127
128         def killScore(self, defenderRank):
129                 return self.killScores[defenderRank]
130
131         def bombScore(self, attackerRank):
132                 if attackerRank == '8':
133                         return 1.0
134                 else:
135                         return self.suicideScore(attackerRank)
136
137         def suicideScore(self, attackerRank):
138                 return self.suicideScores[attackerRank]
139
140         def riskScore(self, attackerRank):
141                 return self.riskScores[attackerRank]
142
143         def rankProbability(self, target, targetRank):
144                 if targetRank == '+' or targetRank == '?':
145                         return 0.0
146                 if target.rank == targetRank:
147                         return 1.0
148                 elif target.rank != '?':
149                         return 0.0
150
151                 total = 0.0
152                 for rank in ranks:
153                         if rank == '+' or rank == '?':
154                                 continue
155                         elif rank == 'F' or rank == 'B':
156                                 if target.lastMoved < 0:
157                                         total += self.hiddenEnemies[rank]
158                         else:
159                                 total += self.hiddenEnemies[rank]
160
161                 if total == 0.0:
162                         return 0.0
163                 return float(float(self.hiddenEnemies[targetRank]) / float(total))
164         
165
166         
167
168                                 
169                                 
170                 
171 if __name__ == "__main__":
172         vixen = Vixen()
173         if vixen.Setup():
174                 while vixen.MoveCycle():
175                         pass
176

UCC git Repository :: git.ucc.asn.au