From c9275edb26c146b66b037e78ea73b9897eaf3864 Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 26 Jul 2021 18:31:09 -0400 Subject: [PATCH] Acey and Kingsley game. --- html-src/rules/aceyandkingsley.html | 13 +++++++++++++ pysollib/gamedb.py | 4 ++-- pysollib/games/acesandkings.py | 23 +++++++++++++++++++++++ 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 html-src/rules/aceyandkingsley.html diff --git a/html-src/rules/aceyandkingsley.html b/html-src/rules/aceyandkingsley.html new file mode 100644 index 00000000..553648d2 --- /dev/null +++ b/html-src/rules/aceyandkingsley.html @@ -0,0 +1,13 @@ +

Acey and Kingsley

+

+Two-Deck game type. 2 decks. No redeal. + +

Object

+

+Move all the cards to the foundations. + +

Quick Description

+

+Like Aces and Kings, +but the aces and kings are dealt to the foundations at +the start of the game. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 292802bf..0c22b910 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -331,7 +331,7 @@ class GI: ("Bill Taylor", (349,)), ("Thomas Warfield", (189, 264, 300, 320, 336, 337, 359, 415, 427, 458, 495, 496, 497, 508, - 800)), + 800, 814)), ) GAMES_BY_PYSOL_VERSION = ( @@ -406,7 +406,7 @@ class GI: ('fc-2.8', (343001,)), ('fc-2.12', tuple(range(774, 811)) + (16681,) + tuple(range(22217, 22219))), - ('fc-2.14', tuple(range(811, 814))) + ('fc-2.14', tuple(range(811, 815))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/acesandkings.py b/pysollib/games/acesandkings.py index 39b123af..b19c6fd2 100644 --- a/pysollib/games/acesandkings.py +++ b/pysollib/games/acesandkings.py @@ -55,6 +55,11 @@ class AcesAndKings(Game): # create stacks x, y = l.XM, l.YM + + w1, w2 = 4 * l.XS + l.XM, 2 * l.XS + if w2 + 13 * l.XOFFSET > w1: + l.XOFFSET = int((w1 - w2) / 13) + for i in range(2): stack = OpenStack(x, y, self) stack.CARD_XOFFSET = l.XOFFSET @@ -99,6 +104,24 @@ class AcesAndKings(Game): self.s.talon.moveMove(1, stack) +# ************************************************************************ +# * Acey and Kingsley +# ************************************************************************ + +class AceyAndKingsley(AcesAndKings): + def _shuffleHook(self, cards): + return self._shuffleHookMoveToTop( + cards, + lambda c: (c.rank in (ACE, KING) and c.deck == 0, + (c.rank, c.suit))) + + def startGame(self): + self.s.talon.dealRow(rows=self.s.foundations, frames=0) + AcesAndKings.startGame(self) + + # register the game registerGame(GameInfo(800, AcesAndKings, "Aces and Kings", GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED)) +registerGame(GameInfo(814, AceyAndKingsley, "Acey and Kingsley", + GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))