From d6b6eb6b98dcaa31cff2b87227aa440e4c45b594 Mon Sep 17 00:00:00 2001 From: Joe R Date: Wed, 23 Aug 2023 19:16:54 -0400 Subject: [PATCH] Added Deuces and Queens game. --- html-src/rules/deucesandqueens.html | 19 +++++++++++++ pysollib/gamedb.py | 31 +++++++++++----------- pysollib/games/acesandkings.py | 41 ++++++++++++++++++++++++----- 3 files changed, 69 insertions(+), 22 deletions(-) create mode 100644 html-src/rules/deucesandqueens.html diff --git a/html-src/rules/deucesandqueens.html b/html-src/rules/deucesandqueens.html new file mode 100644 index 00000000..17cef41f --- /dev/null +++ b/html-src/rules/deucesandqueens.html @@ -0,0 +1,19 @@ +

Deuces and Queens

+

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

Object

+

+Move all the cards to the foundations. + +

Quick Description

+

+Like Aces and Kings, but with +three reserves, and one set of foundations builds up from two to ace, +and the other builds down from queen to king, both wrapping between +king and ace as necessary. +

+Additionally, building on the tableau piles is allowed. Tableau +piles are built up or down by rank, regardless of suit, also wrapping +between king and ace as necessary. But once the talon is empty, empty +tableau piles can no longer be filled. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 8c760fde..71f5ed64 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -411,19 +411,18 @@ class GI: # Ace of Hearts, Agnes Three, Antares, Avenue, Baker's Fan, # Baker's Spider, Bedeviled, Binding, Black Holes, # Black Spider, California, Cascade, Club, Color Cell, - # Cornelius, Desert Fox, Deuces and Queens, Double Antares, - # Double Antarctica, Double Arctica, Double Baker's Spider, - # Double Cascade, Double Line 8, Double Majesty, - # Double Spidercells, Doublet Cell 5, Doubt, Dream Fan, - # Dumfries Cell, Falcon Wing, Fan Nine, Fanny 6, Four By Ten, - # FreeCell AK, Gaps Alter, Gaps Diff, George V, - # Grandmother's Clock, In a Frame, Inverted FreeCell, Kings, - # Klondike FreeCell, La Cabane, La Double Entente, - # Little Gazette, Magic FreeCell, Mini Gaps, Montreal, - # Napoleon at Iena, Napoleon at Waterloo, Napoleon's Guards, - # Nationale, Oasis, Opera, Ordered Suits, Osmotic FreeCell, - # Pair FreeCell, Pairs 2, Petal, Reserved Thirteens, - # Sea Spider, Sept Piles 0, Short Solitaire, + # Cornelius, Desert Fox, Double Antares, Double Antarctica, + # Double Arctica, Double Baker's Spider, Double Cascade, + # Double Line 8, Double Majesty, Double Spidercells, + # Doublet Cell 5, Doubt, Dream Fan, Dumfries Cell, Falcon Wing, + # Fan Nine, Fanny 6, Four By Ten, FreeCell AK, Gaps Alter, + # Gaps Diff, George V, Grandmother's Clock, In a Frame, + # Inverted FreeCell, Kings, Klondike FreeCell, La Cabane, + # La Double Entente, Little Gazette, Magic FreeCell, Mini Gaps, + # Montreal, Napoleon at Iena, Napoleon at Waterloo, + # Napoleon's Guards, Nationale, Oasis, Opera, Ordered Suits, + # Osmotic FreeCell, Pair FreeCell, Pairs 2, Petal, + # Reserved Thirteens, Sea Spider, Sept Piles 0, Short Solitaire, # Simple Alternations, Smart Osmosis, Step By Step, # Stripped FreeCell, Tarantula, Triple Dispute, Trusty Twenty, # Two Ways 3, Up Or Down, Versailles, Vertical FreeCell, @@ -438,7 +437,7 @@ class GI: 405, 415, 416, 425, 451, 453, 461, 464, 466, 467, 476, 480, 484, 511, 512, 513, 516, 561, 610, 625, 629, 631, 638, 641, 647, 650, 655, 678, 684, 734, 751, 784, 825, 829, 834, 837, - 844, 862, 867, 880, 889, 901, + 844, 862, 867, 880, 889, 901, 911, )), # xpat2 1.06 (we have 14 out of 16 games) @@ -482,7 +481,7 @@ class GI: ("Peter Voke", (876,)), ("Thomas Warfield", (189, 264, 300, 320, 336, 337, 359, 415, 427, 458, 495, 496, 497, 508, - 800, 814, 820, 825, 889,)), + 800, 814, 820, 825, 889, 911,)), ("Mary Whitmore Jones", (421, 624,)), ) @@ -566,7 +565,7 @@ class GI: ('fc-2.20', tuple(range(855, 897))), ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + tuple(range(13160, 13163)) + (16682,)), - ('dev', tuple(range(906, 911)) + tuple(range(11017, 11020))), + ('dev', tuple(range(906, 912)) + tuple(range(11017, 11020))), ) # 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 c485b7ff..769a22c6 100644 --- a/pysollib/games/acesandkings.py +++ b/pysollib/games/acesandkings.py @@ -29,9 +29,13 @@ from pysollib.stack import \ BasicRowStack, \ OpenStack, \ RK_FoundationStack, \ + StackWrapper, \ + UD_RK_RowStack, \ WasteStack, \ WasteTalonStack -from pysollib.util import ACE, KING, RANKS +from pysollib.util import ACE, KING, NO_RANK, QUEEN, RANKS, \ + UNLIMITED_ACCEPTS, \ + UNLIMITED_CARDS # ************************************************************************ @@ -40,11 +44,14 @@ from pysollib.util import ACE, KING, RANKS class AcesAndKings(Game): RowStack_Class = BasicRowStack + Foundation_Class = RK_FoundationStack NUM_RESERVES = 2 NUM_TABLEAU = 4 FOUNDATION_SETS = ((ACE, KING),) + PLAYCARDS = 0 + # # game layout # @@ -54,7 +61,8 @@ class AcesAndKings(Game): # set window self.setSize(l.XM + (8.5 * l.XS), l.YM + - ((2 + len(self.FOUNDATION_SETS)) * l.YS)) + ((2 + len(self.FOUNDATION_SETS)) * l.YS) + + (self.PLAYCARDS * l.YOFFSET)) # create stacks x, y = 2 * l.XM, l.YM @@ -76,8 +84,10 @@ class AcesAndKings(Game): for i in self.FOUNDATION_SETS: for j in range(4): - stack = RK_FoundationStack(x, y, self, suit=j, base_rank=i[0], - dir=1, max_cards=(13 - i[0])) + stack = self.Foundation_Class(x, y, self, suit=j, + base_rank=i[0], dir=1, + max_cards=(13 - i[0]), + mod=13) stack.getBottomImage = stack._getReserveBottomImage if self.preview <= 1: stack.texts.misc = MfxCanvasText(self.canvas, @@ -91,8 +101,10 @@ class AcesAndKings(Game): x = x + l.XS x = x + (l.XS / 2) for j in range(4): - stack = RK_FoundationStack(x, y, self, suit=j, base_rank=i[1], - dir=-1, max_cards=(i[1] + 1)) + stack = self.Foundation_Class(x, y, self, suit=j, + base_rank=i[1], dir=-1, + max_cards=(i[1] + 1), + mod=13) stack.getBottomImage = stack._getReserveBottomImage if self.preview <= 1: stack.texts.misc = MfxCanvasText(self.canvas, @@ -161,6 +173,21 @@ class RacingAces(AcesAndKings): FOUNDATION_SETS = ((ACE, KING), (6, 5)) +# ************************************************************************ +# * Deuces and Queens +# ************************************************************************ + +class DeucesAndQueens(AcesAndKings): + RowStack_Class = StackWrapper(UD_RK_RowStack, max_accept=UNLIMITED_ACCEPTS, + max_cards=UNLIMITED_CARDS, mod=13, + base_rank=NO_RANK) + Foundation_Class = StackWrapper(RK_FoundationStack, max_cards=13) + + NUM_RESERVES = 3 + FOUNDATION_SETS = ((1, QUEEN),) + PLAYCARDS = 12 + + # register the game registerGame(GameInfo(800, AcesAndKings, "Aces and Kings", GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED)) @@ -168,3 +195,5 @@ registerGame(GameInfo(814, AceyAndKingsley, "Acey and Kingsley", GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(820, RacingAces, "Racing Aces", GI.GT_3DECK_TYPE, 3, 0, GI.SL_BALANCED)) +registerGame(GameInfo(911, DeucesAndQueens, "Deuces and Queens", + GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))