mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
FIxed demo and stuck indicator getting stuck too early in Hit or Miss.
This commit is contained in:
parent
b5a305340d
commit
ed811016de
2 changed files with 10 additions and 2 deletions
|
@ -1110,7 +1110,7 @@ class Game(object):
|
|||
def leaveState(self, old_state):
|
||||
self.moves.state = old_state
|
||||
|
||||
def getSnapshot(self):
|
||||
def getSnapshotHash(self):
|
||||
# generate hash (unique string) of current move
|
||||
sn = []
|
||||
for stack in self.allstacks:
|
||||
|
@ -1119,8 +1119,11 @@ class Game(object):
|
|||
s.append('%d%03d%d' % (card.suit, card.rank, card.face_up))
|
||||
sn.append(''.join(s))
|
||||
sn = '-'.join(sn)
|
||||
return sn
|
||||
|
||||
def getSnapshot(self):
|
||||
# optimisation
|
||||
sn = hash(sn)
|
||||
sn = hash(self.getSnapshotHash())
|
||||
return sn
|
||||
|
||||
def createSnGroups(self):
|
||||
|
|
|
@ -154,6 +154,11 @@ class HitOrMiss(Game):
|
|||
# save vars (for undo/redo)
|
||||
return [self.rank, self.deadDeals]
|
||||
|
||||
def getSnapshotHash(self):
|
||||
# Takes the chosen rank into account when determining
|
||||
# if the game is stuck.
|
||||
return Game.getSnapshotHash(self) + str(self.rank)
|
||||
|
||||
|
||||
# register the game
|
||||
registerGame(GameInfo(774, HitOrMiss, "Hit or Miss",
|
||||
|
|
Loading…
Add table
Reference in a new issue