home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
- from random import randrange, shuffle, choice
-
- class PiecePicker(object):
-
- def __init__(self, numpieces, config):
- self.config = config
- self.numpieces = numpieces
- self.interests = [
- range(numpieces)]
- self.pos_in_interests = range(numpieces)
- self.numinterests = [
- 0] * numpieces
- self.have = [
- False] * numpieces
- self.crosscount = [
- numpieces]
- self.started = []
- self.seedstarted = []
- self.numgot = 0
- self.scrambled = range(numpieces)
- shuffle(self.scrambled)
-
-
- def got_have(self, piece):
- numint = self.numinterests[piece]
- self.crosscount[numint + self.have[piece]] -= 1
- self.numinterests[piece] += 1
-
- try:
- self.crosscount[numint + 1 + self.have[piece]] += 1
- except IndexError:
- self.crosscount.append(1)
-
- if self.have[piece]:
- return None
-
- if numint == len(self.interests) - 1:
- self.interests.append([])
-
- self._shift_over(piece, self.interests[numint], self.interests[numint + 1])
-
-
- def lost_have(self, piece):
- numint = self.numinterests[piece]
- self.crosscount[numint + self.have[piece]] -= 1
- self.numinterests[piece] -= 1
- self.crosscount[(numint - 1) + self.have[piece]] += 1
- if self.have[piece]:
- return None
-
- self._shift_over(piece, self.interests[numint], self.interests[numint - 1])
-
-
- def _shift_over(self, piece, l1, l2):
- p = self.pos_in_interests[piece]
- l1[p] = l1[-1]
- self.pos_in_interests[l1[-1]] = p
- del l1[-1]
- newp = randrange(len(l2) + 1)
- if newp == len(l2):
- self.pos_in_interests[piece] = len(l2)
- l2.append(piece)
- else:
- old = l2[newp]
- self.pos_in_interests[old] = len(l2)
- l2.append(old)
- l2[newp] = piece
- self.pos_in_interests[piece] = newp
-
-
- def requested(self, piece, seed = False):
- if piece not in self.started:
- self.started.append(piece)
-
- if seed and piece not in self.seedstarted:
- self.seedstarted.append(piece)
-
-
-
- def complete(self, piece):
- if not not self.have[piece]:
- raise AssertionError
- self.have[piece] = True
- self.crosscount[self.numinterests[piece]] -= 1
-
- try:
- self.crosscount[self.numinterests[piece] + 1] += 1
- except IndexError:
- self.crosscount.append(1)
-
- self.numgot += 1
- l = self.interests[self.numinterests[piece]]
- p = self.pos_in_interests[piece]
- l[p] = l[-1]
- self.pos_in_interests[l[-1]] = p
- del l[-1]
-
- try:
- self.started.remove(piece)
- self.seedstarted.remove(piece)
- except ValueError:
- self
- self
- except:
- self
-
-
-
- def next(self, havefunc, seed = False):
- bests = None
- bestnum = 2 ** 30
- if seed:
- s = self.seedstarted
- else:
- s = self.started
- for i in s:
- if havefunc(i):
- if self.numinterests[i] < bestnum:
- bests = [
- i]
- bestnum = self.numinterests[i]
- elif self.numinterests[i] == bestnum:
- bests.append(i)
-
- self.numinterests[i] < bestnum
-
- if bests:
- return choice(bests)
-
- if self.numgot < self.config['rarest_first_cutoff']:
- for i in self.scrambled:
- if havefunc(i):
- return i
- continue
-
- return None
-
- for i in xrange(1, min(bestnum, len(self.interests))):
- for j in self.interests[i]:
- if havefunc(j):
- return j
- continue
-
-
-
-
- def am_I_complete(self):
- return self.numgot == self.numpieces
-
-
- def bump(self, piece):
- l = self.interests[self.numinterests[piece]]
- pos = self.pos_in_interests[piece]
- del l[pos]
- l.append(piece)
- for i in range(pos, len(l)):
- self.pos_in_interests[l[i]] = i
-
-
- try:
- self.started.remove(piece)
- self.seedstarted.remove(piece)
- except ValueError:
- pass
-
-
-
-