From 6cfd8d351ea3b480584af1d7f735178bd52ef649 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Thu, 9 Nov 2017 21:40:42 +0200 Subject: [PATCH] Extract more common methods. --- pysollib/game.py | 4 ++++ pysollib/games/curdsandwhey.py | 4 +--- pysollib/games/diplomat.py | 4 +--- pysollib/games/eiffeltower.py | 4 +--- pysollib/games/fortythieves.py | 12 +++--------- pysollib/games/golf.py | 4 +--- pysollib/games/grandfathersclock.py | 4 +--- pysollib/games/harp.py | 12 +++--------- pysollib/games/klondike.py | 12 +++--------- pysollib/games/royalcotillion.py | 4 +--- pysollib/games/royaleast.py | 4 +--- pysollib/games/simplex.py | 4 +--- pysollib/games/spider.py | 4 +--- pysollib/games/sultan.py | 8 ++------ pysollib/games/unionsquare.py | 4 +--- pysollib/games/windmill.py | 4 +--- 16 files changed, 26 insertions(+), 66 deletions(-) diff --git a/pysollib/game.py b/pysollib/game.py index e264a950..fde28ab8 100644 --- a/pysollib/game.py +++ b/pysollib/game.py @@ -3411,3 +3411,7 @@ in the current implementation.''') % version) def _startAndDealRow(self): self._startDealNumRowsAndDealSingleRow(0) + + def _startAndDealRowAndCards(self): + self._startAndDealRow() + self.s.talon.dealCards() diff --git a/pysollib/games/curdsandwhey.py b/pysollib/games/curdsandwhey.py index eeccdfeb..13fcd7c3 100644 --- a/pysollib/games/curdsandwhey.py +++ b/pysollib/games/curdsandwhey.py @@ -458,9 +458,7 @@ class Glacier(Game): l.defaultStackGroups() def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() shallHighlightMatch = Game._shallHighlightMatch_RKW diff --git a/pysollib/games/diplomat.py b/pysollib/games/diplomat.py index 01b796cb..d64275a5 100644 --- a/pysollib/games/diplomat.py +++ b/pysollib/games/diplomat.py @@ -243,9 +243,7 @@ class LittleNapoleon(Diplomat): def startGame(self): for i in range(3): self.s.talon.dealRow(frames=0, flip=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() getQuickPlayScore = Game._getSpiderQuickPlayScore diff --git a/pysollib/games/eiffeltower.py b/pysollib/games/eiffeltower.py index f3a47856..e8130d38 100644 --- a/pysollib/games/eiffeltower.py +++ b/pysollib/games/eiffeltower.py @@ -91,9 +91,7 @@ class EiffelTower(Game): # def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def isGameWon(self): return len(self.s.talon.cards) == 0 and len(self.s.waste.cards) == 0 diff --git a/pysollib/games/fortythieves.py b/pysollib/games/fortythieves.py index 99ec9631..c8d58077 100644 --- a/pysollib/games/fortythieves.py +++ b/pysollib/games/fortythieves.py @@ -144,9 +144,7 @@ class FortyThieves(Game): self.s.talon.dealRow(flip=0, frames=0) for i in range(self.DEAL[1] - 1): self.s.talon.dealRow(frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def fillStack(self, stack): if self.FILL_EMPTY_ROWS and stack in self.s.rows and not stack.cards: @@ -691,9 +689,7 @@ class FortunesFavor(Game): def startGame(self): self.s.talon.dealRow(rows=self.s.foundations, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def fillStack(self, stack): if len(stack.cards) == 0: @@ -964,9 +960,7 @@ class TheSpark(Game): def startGame(self): self.s.talon.dealRow(rows=self.s.foundations, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() shallHighlightMatch = Game._shallHighlightMatch_SS diff --git a/pysollib/games/golf.py b/pysollib/games/golf.py index 248e8a2a..8b3b7bd1 100644 --- a/pysollib/games/golf.py +++ b/pysollib/games/golf.py @@ -290,9 +290,7 @@ class Elevator(RelaxedGolf): class Escalator(Elevator): def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************ diff --git a/pysollib/games/grandfathersclock.py b/pysollib/games/grandfathersclock.py index c61c97ec..e168dd93 100644 --- a/pysollib/games/grandfathersclock.py +++ b/pysollib/games/grandfathersclock.py @@ -347,9 +347,7 @@ class Hemispheres(Game): def startGame(self): self.s.talon.dealRow(rows=self.s.foundations, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def fillStack(self, stack): if stack in self.s.rows[4:] and not stack.cards: diff --git a/pysollib/games/harp.py b/pysollib/games/harp.py index b3dbcb15..52a6cba5 100644 --- a/pysollib/games/harp.py +++ b/pysollib/games/harp.py @@ -86,9 +86,7 @@ class DoubleKlondike(Game): def startGame(self, flip=0): for i in range(len(self.s.rows)): self.s.talon.dealRow(rows=self.s.rows[i+1:], flip=flip, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() shallHighlightMatch = Game._shallHighlightMatch_AC @@ -138,9 +136,7 @@ class BigHarp(DoubleKlondike): def startGame(self): for i in range(len(self.s.rows)): self.s.talon.dealRow(rows=self.s.rows[:i], flip=0, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************ @@ -309,9 +305,7 @@ class ThievesOfEgypt(DoubleKlondike): for j in range(i): self.s.talon.dealRow(rows=[self.s.rows[row]], frames=0) row += 1 - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************ diff --git a/pysollib/games/klondike.py b/pysollib/games/klondike.py index 12185329..b293c3ca 100644 --- a/pysollib/games/klondike.py +++ b/pysollib/games/klondike.py @@ -216,9 +216,7 @@ class SmallHarp(Klondike): def startGame(self): for i in range(len(self.s.rows)): self.s.talon.dealRow(rows=self.s.rows[:i], flip=0, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************ @@ -286,9 +284,7 @@ class PasSeul(Eastcliff): Klondike.createGame(self, max_rounds=1, rows=6) def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************ @@ -509,9 +505,7 @@ class Jumbo(Klondike): def startGame(self, flip=0): for i in range(9): self.s.talon.dealRow(rows=self.s.rows[:i], flip=flip, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() class OpenJumbo(Jumbo): diff --git a/pysollib/games/royalcotillion.py b/pysollib/games/royalcotillion.py index f218a383..7bc45486 100644 --- a/pysollib/games/royalcotillion.py +++ b/pysollib/games/royalcotillion.py @@ -561,9 +561,7 @@ class BritishConstitution(Game): def startGame(self): self.s.talon.dealRow(rows=self.s.foundations, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def _shuffleHook(self, cards): # move Aces to top of the Talon (i.e. first cards to be dealt) diff --git a/pysollib/games/royaleast.py b/pysollib/games/royaleast.py index 8738ac5f..8139d17b 100644 --- a/pysollib/games/royaleast.py +++ b/pysollib/games/royaleast.py @@ -94,9 +94,7 @@ class RoyalEast(Game): self.flipMove(self.s.talon) self.moveMove(1, self.s.talon, to_stack, frames=0) # deal rows - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def _restoreGameHook(self, game): self.base_card = self.cards[game.loadinfo.base_card_id] diff --git a/pysollib/games/simplex.py b/pysollib/games/simplex.py index f4a396fb..7df00552 100644 --- a/pysollib/games/simplex.py +++ b/pysollib/games/simplex.py @@ -102,9 +102,7 @@ class Simplex(Game): l.defaultStackGroups() def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def shallHighlightMatch(self, stack1, card1, stack2, card2): return card1.rank == card2.rank diff --git a/pysollib/games/spider.py b/pysollib/games/spider.py index 5bccaf02..1cd6bfa7 100644 --- a/pysollib/games/spider.py +++ b/pysollib/games/spider.py @@ -323,9 +323,7 @@ class Rachel(RelaxedSpider): RelaxedSpider.createGame(self, waste=1, rows=6, texts=1) def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************ diff --git a/pysollib/games/sultan.py b/pysollib/games/sultan.py index f8601f45..51352213 100644 --- a/pysollib/games/sultan.py +++ b/pysollib/games/sultan.py @@ -127,9 +127,7 @@ class Sultan(Game): def startGame(self): self.s.talon.dealRow(rows=self.s.foundations, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def getAutoStacks(self, event=None): return (self.sg.dropstacks, (), self.sg.dropstacks) @@ -1340,9 +1338,7 @@ class CatherineTheGreat(Game): def startGame(self): self.s.talon.dealRow(rows=self.s.foundations, frames=0) - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() def fillStack(self, stack): if stack in self.s.rows and not stack.cards: diff --git a/pysollib/games/unionsquare.py b/pysollib/games/unionsquare.py index 8e20c749..ec51bf38 100644 --- a/pysollib/games/unionsquare.py +++ b/pysollib/games/unionsquare.py @@ -135,9 +135,7 @@ class UnionSquare(Game): # def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() shallHighlightMatch = Game._shallHighlightMatch_SS diff --git a/pysollib/games/windmill.py b/pysollib/games/windmill.py index e556c595..92d2de77 100644 --- a/pysollib/games/windmill.py +++ b/pysollib/games/windmill.py @@ -243,9 +243,7 @@ class NapoleonsTomb(Game): # def startGame(self): - self.startDealSample() - self.s.talon.dealRow() - self.s.talon.dealCards() # deal first card to WasteStack + self._startAndDealRowAndCards() # ************************************************************************