-
Notifications
You must be signed in to change notification settings - Fork 36
/
competition.py
261 lines (212 loc) · 8.79 KB
/
competition.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import multiprocessing
import collections
import itertools
import importlib
import random
import math
import sys
import os
from player import Bot
from game import Game
from util import Variable
class CompetitionStatistics:
def __init__(self):
self.resWins = Variable()
self.spyWins = Variable()
self.resVotesRes = Variable()
self.resVotesSpy = Variable()
self.spyVotesRes = Variable()
self.spyVotesSpy = Variable()
self.spyVoted = Variable()
self.resVoted = Variable()
self.spySelected = Variable()
self.resSelected = Variable()
self.spySelection = Variable()
self.resSelection = Variable()
def total(self):
return Variable(
self.resWins.total + self.spyWins.total,
self.resWins.samples + self.spyWins.samples
)
def __iadd__(self, other):
for k, v in self.__dict__.items():
v += other.__dict__[k]
return self
class CompetitionRound(Game):
def __init__(self, *args):
super(CompetitionRound, self).__init__(*args)
self.statistics = collections.defaultdict(CompetitionStatistics)
def onPlayerVoted(self, player, vote, leader, team):
s = self.statistics[player.name]
spies = [t for t in team if t.spy]
if player.spy:
# When there are spies, we expect support.
if spies:
s.spyVotesRes.sample(int(vote))
# For missions without spies, we expect down vote.
else:
s.spyVotesSpy.sample(int(not vote))
return
# When there are no spies, we expect support.
if not spies:
s.resVotesRes.sample(int(vote))
# For missions with spies, we expect down vote.
else:
s.resVotesSpy.sample(int(not vote))
# Everyone on the mission hopes to be approved.
for p in team:
s = self.statistics[p.name]
if p.spy:
s.spyVoted.sample(int(vote))
else:
s.resVoted.sample(int(vote))
def onPlayerSelected(self, player, team):
# TODO: Detailed statistics indicating selection by each other
# player, and whether or not the other is playing as spy.
spies = [t for t in team if t.spy]
s = self.statistics[player.name]
if player.spy:
s.spySelection.sample(int(len(spies) > 0))
else:
s.resSelection.sample(int(len(spies) == 0))
for bot in self.bots:
s = self.statistics[bot.name]
if bot.spy:
s.spySelected.sample(int(bot in team))
else:
s.resSelected.sample(int(bot in team))
def setup():
import signal
signal.signal(signal.SIGINT, signal.SIG_IGN)
def play(args):
(players, roles) = args
g = CompetitionRound(players, roles)
g.channel = None
g.run()
for b in g.bots:
s = g.statistics.get(b.name)
if b.spy:
s.spyWins.sample(int(not g.won))
else:
s.resWins.sample(int(g.won))
return g.statistics
class CompetitionRunner(object):
def __init__(self, competitors, rounds, quiet = False):
self.rounds = rounds
self.quiet = quiet
self.statistics = collections.defaultdict(CompetitionStatistics)
# Make sure there are sufficient entrants if necessary.
# WARNING: Results in multiple bot instances per game!
self.competitors = competitors
while competitors and len(self.competitors) < 5:
self.competitors.extend(competitors)
def listGameSelections(self):
"""Evaluate all bots in all possible permutations! If there are more
games requested, randomly fill up from a next round of permutations."""
if not self.competitors: raise StopIteration
p = []
r = set(itertools.permutations([True, True, False, False, False]))
for players in itertools.permutations(self.competitors, 5):
for roles in r:
p.append((players, roles))
permutations = []
while len(permutations) < self.rounds:
random.shuffle(p)
permutations.extend(p)
for players, roles in permutations[:self.rounds]:
yield (players, roles)
def main(self):
names = [bot.__name__ for bot in self.competitors]
for bot in self.competitors:
if hasattr(bot, 'onCompetitionStarting'):
bot.onCompetitionStarting(names)
if not self.quiet:
print("Running competition with %i bots." % (len(self.competitors)), file=sys.stderr)
def output(text):
sys.stdout.write(text)
sys.stdout.flush()
pool = multiprocessing.Pool(multiprocessing.cpu_count(), setup)
# pool = itertools
for i, stats in enumerate(pool.imap(play, self.listGameSelections())):
for p, s in stats.items():
self.statistics[p] += s
if not self.quiet:
if (i+1) % 500 == 0: output('(%02i%%)\n' % (100*(i+1)/self.rounds))
elif (i+1) % 125 == 0: output('O')
elif (i+1) % 25 == 0: output('o')
elif (i+1) % 5 == 0: output('.')
def echo(self, *args):
print(' '.join([str(a) for a in args]))
def score(self, name):
return (self.statistics[name].spyWins.estimate(),
self.statistics[name].resWins.estimate(),
self.statistics[name].total())
def rank(self, name):
results = sorted(self.statistics.items(), key = lambda x: x[1].total().estimate(), reverse=True)
for i in range(len(results)):
if results[i][0] == name:
return i
return None
def last(self):
results = sorted(self.statistics, key=lambda x: self.statistics[x].total().estimate(), reverse=True)
bot = [c for c in self.competitors if c.__name__ == results[-1]][0]
other = [c for c in self.competitors if c.__name__ == results[-2]][0]
return (bot, self.statistics[results[-1]].total()), \
(other, self.statistics[results[-2]].total())
def show(self, summary = False):
print("")
for bot in self.competitors:
if hasattr(bot, 'onCompetitionFinished'):
bot.onCompetitionFinished()
if len(self.statistics) == 0:
return
if not summary:
self.echo("SPIES\t\t\t\t(vote,\t\t voted,\t\t selected,\t selection)")
for s in sorted(self.statistics.items(), key = lambda x: x[1].spyWins.estimate(), reverse = True):
self.echo(" ", '{0:<16s}'.format(s[0]), s[1].spyWins, "\t", s[1].spyVotesRes, s[1].spyVotesSpy, "\t", s[1].spyVoted, "\t\t", s[1].spySelected, "\t\t", s[1].spySelection)
self.echo("RESISTANCE\t\t\t(vote,\t\t voted,\t\t selected,\t selection)")
for s in sorted(self.statistics.items(), key = lambda x: x[1].resWins.estimate(), reverse = True):
self.echo(" ", '{0:<16s}'.format(s[0]), s[1].resWins, "\t", s[1].resVotesRes, s[1].resVotesSpy, "\t", s[1].resVoted, "\t\t", s[1].resSelected, "\t\t", s[1].resSelection)
self.echo("TOTAL")
for s in sorted(self.statistics.items(), key = lambda x: x[1].total().estimate(), reverse = True):
self.echo(" ", '{0:<16s}'.format(s[0]), s[1].total().detail())
self.echo("")
def getCompetitors(argv):
competitors = []
for request in argv:
if os.path.exists(request):
sys.path.insert(0, os.path.dirname(request))
request = os.path.splitext(os.path.basename(request))[0]
if '.' in request:
filename, classname = request.split('.')
else:
filename, classname = request, None
module = importlib.import_module(filename)
if classname:
competitors.append(getattr(module, classname))
else:
for b in dir(module):
if hasattr(module, '__all__') and not b in module.__all__: continue
if b.startswith('__') or b == 'Bot': continue
cls = getattr(module, b)
try:
if issubclass(cls, Bot):
competitors.append(cls)
except TypeError:
pass
return competitors
if __name__ == '__main__':
if len(sys.argv) <= 2:
print('USAGE: competition.py 10000 (filename|module.BotName) [...]')
sys.exit(-1)
competitors = getCompetitors(sys.argv[2:])
runner = CompetitionRunner(competitors, int(sys.argv[1]))
try:
runner.main()
except (KeyboardInterrupt, SystemExit):
pass
finally:
runner.show()