diff --git a/html-src/rules/relaxedaccordion.html b/html-src/rules/relaxedaccordion.html index 35f3611f..2c53872c 100644 --- a/html-src/rules/relaxedaccordion.html +++ b/html-src/rules/relaxedaccordion.html @@ -1,4 +1,4 @@ -
One deck type. 1 deck. No redeal. diff --git a/html-src/rules/relaxedpileon.html b/html-src/rules/relaxedpileon.html new file mode 100644 index 00000000..f365e26d --- /dev/null +++ b/html-src/rules/relaxedpileon.html @@ -0,0 +1,14 @@ +
+One-Deck game type. 1 deck. No redeal. + +
+Rearrange the cards so that each pile contains four cards with the +same rank. + +
+Like PileOn, +but with a single reserve cell added - a single card can +be moved to or from this reserve at any time. diff --git a/html-src/rules/relaxedthreefirtrees.html b/html-src/rules/relaxedthreefirtrees.html new file mode 100644 index 00000000..556943ad --- /dev/null +++ b/html-src/rules/relaxedthreefirtrees.html @@ -0,0 +1,14 @@ +
+Golf type. 2 decks. No redeal. + +
+Move all cards to the waste stack. + +
+Like Three fir-trees, +but sequences do wrap around, +i.e. Twos and Kings may be placed on Aces +and Queens and Aces may be placed on Kings. diff --git a/html-src/rules/threefirtrees.html b/html-src/rules/threefirtrees.html new file mode 100644 index 00000000..d30c52c8 --- /dev/null +++ b/html-src/rules/threefirtrees.html @@ -0,0 +1,14 @@ +
+Golf type. 2 decks. No redeal. + +
+Move all cards to the waste stack. + +
+Like Golf, +but with a different layout. Cards from the fir-trees +can only be moved to the waste if all their covered cards +are gone. diff --git a/pysollib/games/golf.py b/pysollib/games/golf.py index f9120f80..3ed36806 100644 --- a/pysollib/games/golf.py +++ b/pysollib/games/golf.py @@ -1266,7 +1266,7 @@ registerGame(GameInfo(764, Beacon, "Beacon", GI.GT_1DECK_TYPE | GI.GT_ORIGINAL, 1, 0, GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(768, RelaxedThreeFirTrees, "Relaxed Three Fir-trees", - GI.GT_GOLF, 2, 0, GI.SL_BALANCED)) + GI.GT_GOLF | GI.GT_RELAXED, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(777, DoubleGolf, "Double Golf", GI.GT_GOLF, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(783, Uintah, "Uintah", diff --git a/pysollib/games/pileon.py b/pysollib/games/pileon.py index b28537a4..c90b89a6 100644 --- a/pysollib/games/pileon.py +++ b/pysollib/games/pileon.py @@ -66,6 +66,7 @@ class PileOn(Game): TWIDTH = 4 NSTACKS = 15 PLAYCARDS = 4 + EXTRACELL = False # # game layout @@ -80,12 +81,21 @@ class PileOn(Game): # w = max(2*l.XS, l.XS+(self.PLAYCARDS-1)*l.XOFFSET+2*l.XM) w = l.XS+(self.PLAYCARDS-1)*l.XOFFSET+3*l.XOFFSET twidth, theight = self.TWIDTH, int((self.NSTACKS-1)/self.TWIDTH+1) - self.setSize(l.XM+twidth*w, l.YM+theight*l.YS) + exw = 0 + if self.EXTRACELL: + exw = l.XS + l.XM + self.setSize((l.XM + twidth * w) + exw, l.YM + theight * l.YS) # create stacks y = l.YM + + if self.EXTRACELL: + ex, ey = l.XM, ((l.YM + theight * l.YS) / 2) - (l.YS / 2) + s.reserves.append(ReserveStack(ex, ey, self)) for i in range(theight): x = l.XM + if (self.EXTRACELL): + x += exw for j in range(twidth): if i*twidth+j >= self.NSTACKS: break @@ -99,9 +109,9 @@ class PileOn(Game): s.talon = InitialDealTalonStack(x, y, self) # define stack-groups - self.sg.openstacks = s.rows + self.sg.openstacks = s.rows + s.reserves self.sg.talonstacks = [s.talon] - self.sg.dropstacks = s.rows + self.sg.dropstacks = s.rows + s.reserves # # game overrides @@ -130,6 +140,10 @@ class SmallPileOn(PileOn): PLAYCARDS = 4 +class RelaxedPileOn(PileOn): + EXTRACELL = True + + # class PileOn2Decks(PileOn): # TWIDTH = 4 # NSTACKS = 15 @@ -400,3 +414,6 @@ registerGame(GameInfo(740, Footling, "Footling", registerGame(GameInfo(741, DoubleFootling, "Double Footling", GI.GT_FREECELL | GI.GT_OPEN | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(793, RelaxedPileOn, "Relaxed PileOn", + GI.GT_1DECK_TYPE | GI.GT_OPEN | GI.GT_RELAXED, 1, 0, + GI.SL_MOSTLY_SKILL)) diff --git a/pysollib/games/pushpin.py b/pysollib/games/pushpin.py index b8beca43..c9c90431 100644 --- a/pysollib/games/pushpin.py +++ b/pysollib/games/pushpin.py @@ -334,4 +334,4 @@ registerGame(GameInfo(772, Accordion2, "Accordion", GI.GT_1DECK_TYPE, 1, 0, GI.SL_BALANCED, altnames=('Idle Year', 'Methuselah', 'Tower of Babel'))) registerGame(GameInfo(773, RelaxedAccordion, "Relaxed Accordion", - GI.GT_1DECK_TYPE, 1, 0, GI.SL_BALANCED)) + GI.GT_1DECK_TYPE | GI.GT_RELAXED, 1, 0, GI.SL_BALANCED))