From a8c34cd380d7277c6123ebf933c9803de783414e Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 12 Aug 2023 20:08:29 -0400 Subject: [PATCH] Added Stewart game. --- html-src/rules/martha.html | 5 +++++ html-src/rules/stewart.html | 12 ++++++++++++ pysollib/gamedb.py | 20 ++++++++++---------- pysollib/games/bakersdozen.py | 7 +++++++ 4 files changed, 34 insertions(+), 10 deletions(-) create mode 100644 html-src/rules/stewart.html diff --git a/html-src/rules/martha.html b/html-src/rules/martha.html index 43ea4ae8..4bc0413f 100644 --- a/html-src/rules/martha.html +++ b/html-src/rules/martha.html @@ -9,7 +9,12 @@ Move all cards to the foundations.

Rules

The four Aces are dealt to the foundations at game start. +The remaining cards are dealt to twelve piles of four cards +each, with alternating cards face-down.

The piles build down by alternate color. Sequences may be moved, but an empty pile can be only be filled with a single card. +

+The foundations are built up by same suit. The game is +won when all cards are moved to the foundations. diff --git a/html-src/rules/stewart.html b/html-src/rules/stewart.html new file mode 100644 index 00000000..04691dc3 --- /dev/null +++ b/html-src/rules/stewart.html @@ -0,0 +1,12 @@ +

Stewart

+

+Baker's Dozen type. 1 deck. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Just like Martha, +but only single cards can be moved. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index e3c6c1e4..c28ca924 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -424,21 +424,21 @@ class GI: # 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, Strategy 7, + # Simple Alternations, Smart Osmosis, Step By Step, # Stripped FreeCell, Tarantula, Triple Dispute, Trusty Twenty, # Two Ways 3, Up Or Down, Versailles, Vertical FreeCell, # Wasp Baby, Yukon FreeCell ("XM Solitaire", ( 2, 8, 9, 13, 15, 18, 19, 20, 29, 30, 31, 34, 36, 38, 41, 42, 45, 46, 50, 53, 54, 56, 57, 64, 77, 78, 86, 96, 97, 98, 105, - 110, 112, 124, 145, 220, 222, 223, 224, 228, 231, 233, 234, - 235, 236, 257, 258, 264, 265, 267, 270, 271, 290, 291, 292, - 303, 309, 314, 318, 320, 322, 324, 325, 336, 338, 341, 363, - 364, 372, 376, 383, 384, 385, 386, 390, 391, 393, 398, 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, + 110, 112, 124, 145, 173, 220, 222, 223, 224, 228, 231, 233, + 234, 235, 236, 257, 258, 264, 265, 267, 270, 271, 290, 291, + 292, 303, 309, 314, 318, 320, 322, 324, 325, 336, 338, 341, + 363, 364, 372, 376, 383, 384, 385, 386, 390, 391, 393, 398, + 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, )), # xpat2 1.06 (we have 14 out of 16 games) @@ -565,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, 907))), + ('dev', tuple(range(906, 908))), ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/bakersdozen.py b/pysollib/games/bakersdozen.py index 21621dd1..6d473827 100644 --- a/pysollib/games/bakersdozen.py +++ b/pysollib/games/bakersdozen.py @@ -91,6 +91,7 @@ class CastlesInSpain(Game): # ************************************************************************ # * Martha +# * Stewart # ************************************************************************ class Martha_RowStack(AC_RowStack): @@ -118,6 +119,10 @@ class Martha(CastlesInSpain): self.s.talon.dealRow(rows=self.s.foundations) +class Stewart(Martha): + RowStack_Class = StackWrapper(AC_RowStack, max_move=1, max_accept=1) + + # ************************************************************************ # * Baker's Dozen # ************************************************************************ @@ -446,3 +451,5 @@ registerGame(GameInfo(860, BakersDozen2Decks, "Baker's Dozen (2 Decks)", registerGame(GameInfo(876, Vineyard, "Vineyard", GI.GT_BAKERS_DOZEN | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(907, Martha, "Stewart", + GI.GT_BAKERS_DOZEN, 1, 0, GI.SL_BALANCED))