diff --git a/pysollib/games/threepeaks.py b/pysollib/games/threepeaks.py index ad3a7ac5..c516a87e 100644 --- a/pysollib/games/threepeaks.py +++ b/pysollib/games/threepeaks.py @@ -82,7 +82,15 @@ class ThreePeaks_RowStack(OpenStack): return True return False - clickHandler = OpenStack.doubleclickHandler + def clickHandler(self, event): + result = OpenStack.doubleclickHandler(self, event) + if result == 1 and not self.game.score_counted: + self.game.sequence += 1 + self.game.computeHandScore() + self.game.updateText() + elif self.game.score_counted: + self.game.score_counted = False + return result # ************************************************************************ @@ -115,8 +123,9 @@ class ThreePeaks(Game): self.setSize(w, h) # Extra settings - self.game_score = 52 + self.game_score = 0 self.hand_score = self.sequence = 0 + self.score_counted = False self.peaks = [0] * 3 # Create rows @@ -166,7 +175,7 @@ class ThreePeaks(Game): def startGame(self): assert len(self.s.talon.cards) == self.gameinfo.ncards - self.game_score = self.game_score + self.hand_score - 52 + self.game_score = self.game_score + self.hand_score self.hand_score = -52 self.peaks = [0] * 3 self.startDealSample() @@ -180,6 +189,8 @@ class ThreePeaks(Game): return False if self.sequence: self.hand_score = self.hand_score + len(self.s.talon.cards) * 10 + self.computeHandScore() + self.score_counted = True self.updateText() self.sequence = 0 return True @@ -187,7 +198,7 @@ class ThreePeaks(Game): def updateText(self): if self.preview > 1 or not self.texts.info or not self.SCORING: return - t = _('Score:\011This hand: ') + str(self.getHandScore()) + t = _('Score:\011This hand: ') + str(self.hand_score) t = t + _('\011This game: ') + str(self.game_score) self.texts.info.config(text=t) @@ -197,11 +208,8 @@ class ThreePeaks(Game): (card1.rank - 1) % 13 == card2.rank) return False - def getHandScore(self): - # FIXME: bug #2937253 + def computeHandScore(self): score, i = self.hand_score, 1 - if 0: # self.busy: - return score # First count the empty peaks for r in self.s.rows[:3]: if not r.cards: @@ -215,7 +223,6 @@ class ThreePeaks(Game): score = score + i * 2 ** int((self.sequence - 1) / 4) self.hand_score = score # print 'getHandScore: score:', score - return score def canUndo(self): return False