From 44cc06875d70688d33fee23c7590319f9cc23f32 Mon Sep 17 00:00:00 2001 From: Joe R Date: Tue, 22 Nov 2022 18:07:31 -0500 Subject: [PATCH] Added Bobby game and refactoring of games in the same family. --- html-src/rules/bobby.html | 14 ++++++++ pysollib/gamedb.py | 2 +- pysollib/games/golf.py | 71 ++++++++++++++++++++------------------- 3 files changed, 52 insertions(+), 35 deletions(-) create mode 100644 html-src/rules/bobby.html diff --git a/html-src/rules/bobby.html b/html-src/rules/bobby.html new file mode 100644 index 00000000..80ef60f5 --- /dev/null +++ b/html-src/rules/bobby.html @@ -0,0 +1,14 @@ +

Bobby

+

+Golf type. 1 deck. 2 redeals. + +

Object

+

+Move all cards to the foundation stacks. + +

Quick Description

+

+Like Robert, +but with two foundations. A card is dealt to the +first one at the start of the game, and the second +one can be started with any card from the waste pile. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 33d560c4..87ad3763 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -546,7 +546,7 @@ class GI: tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), - ('dev', tuple(range(855, 868))) + ('dev', tuple(range(855, 869))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/golf.py b/pysollib/games/golf.py index ccd1ad98..b5d11bcd 100644 --- a/pysollib/games/golf.py +++ b/pysollib/games/golf.py @@ -514,20 +514,32 @@ class AllInARow(BlackHole): # ************************************************************************ # * Robert +# * Bobby # * Wasatch # ************************************************************************ class Robert(Game): + Foundation_Stack = BlackHole_Foundation - def createGame(self, max_rounds=3, num_deal=1): + def createGame(self, max_rounds=3, num_deal=1, num_foundations=1): layout, s = Layout(self), self.s - self.setSize(layout.XM+4*layout.XS, layout.YM+2*layout.YS) - x, y = layout.XM+3*layout.XS//2, layout.YM - stack = BlackHole_Foundation(x, y, self, ANY_SUIT, - dir=0, mod=13, max_move=0, max_cards=52) - s.foundations.append(stack) - layout.createText(stack, 'ne') - x, y = layout.XM+layout.XS, layout.YM+layout.YS + self.setSize(layout.XM + 4 * layout.XS, + layout.YM + layout.TEXT_HEIGHT + 2 * layout.YS) + x, y = layout.XM, layout.YM + if num_foundations == 1: + x += 3 * layout.XS // 2 + elif num_foundations == 2: + x += layout.XS + for f in range(num_foundations): + stack = self.Foundation_Stack(x, y, self, ANY_SUIT, + dir=0, mod=13, max_move=0, + max_cards=52, + base_rank=ANY_RANK) + s.foundations.append(stack) + layout.createText(stack, 's') + x += layout.XS + + x, y = layout.XM+layout.XS, layout.YM + layout.YS + layout.TEXT_HEIGHT s.talon = WasteTalonStack(x, y, self, max_rounds=max_rounds, num_deal=num_deal) layout.createText(s.talon, 'nw') @@ -546,13 +558,22 @@ class Robert(Game): self.s.talon.dealCards() +class Bobby(Robert): + + def createGame(self): + Robert.createGame(self, num_foundations=2) + + def startGame(self): + self.startDealSample() + self.s.talon.dealRow(rows=self.s.foundations[:1]) + self.s.talon.dealCards() + + class Wasatch(Robert): def createGame(self): Robert.createGame(self, max_rounds=UNLIMITED_REDEALS, num_deal=3) - def startGame(self): - Robert.startGame(self) # ************************************************************************ # * Uintah @@ -576,27 +597,12 @@ class Uintah_Foundation(AbstractFoundationStack): return _('Foundation. Build up or down by same color.') -class Uintah(Game): +class Uintah(Robert): + Foundation_Stack = Uintah_Foundation def createGame(self): - layout, s = Layout(self), self.s - self.setSize(layout.XM + 4 * layout.XS, layout.YM + 2 * layout.YS) - x, y = layout.XM, layout.YM - for i in range(4): - s.foundations.append(Uintah_Foundation(x, y, self, - suit=ANY_SUIT, dir=0, mod=13, - max_cards=52, max_move=0)) - x += layout.XS - x, y = layout.XM + layout.XS, layout.YM + layout.YS - s.talon = WasteTalonStack(x, y, self, - max_rounds=UNLIMITED_REDEALS, num_deal=3) - layout.createText(s.talon, 'nw') - x += layout.XS - s.waste = WasteStack(x, y, self) - layout.createText(s.waste, 'ne') - - # define stack-groups - layout.defaultStackGroups() + Robert.createGame(self, max_rounds=UNLIMITED_REDEALS, num_deal=3, + num_foundations=4) def _shuffleHook(self, cards): suits = [] @@ -611,11 +617,6 @@ class Uintah(Game): top_cards.sort(key=lambda x: -x.suit) # sort by suit return cards + top_cards - def startGame(self): - self.startDealSample() - self.s.talon.dealRow(rows=self.s.foundations) - self.s.talon.dealCards() - # ************************************************************************ # * Diamond Mine @@ -1333,3 +1334,5 @@ registerGame(GameInfo(783, Uintah, "Uintah", registerGame(GameInfo(812, Sticko, "Sticko", GI.GT_1DECK_TYPE | GI.GT_STRIPPED, 1, 0, GI.SL_BALANCED, ranks=(0, 6, 7, 8, 9, 10, 11, 12))) +registerGame(GameInfo(868, Bobby, "Bobby", + GI.GT_GOLF, 1, 2, GI.SL_LUCK))