diff --git a/html-src/rules/allinarow.html b/html-src/rules/allinarow.html index ac92fbc0..d2f7ea0f 100644 --- a/html-src/rules/allinarow.html +++ b/html-src/rules/allinarow.html @@ -1,6 +1,6 @@

All in a Row

-Fan game type. 1 deck. No redeal. +Golf game type. 1 deck. No redeal.

Object

@@ -8,13 +8,14 @@ Move all cards to the bottom in a single row.

Rules

+The tableau is arranged in thirteen piles of four cards each. The row builds up or down by rank ignoring color and suit, wrapping around from King to Ace and from Ace to King.

There is no building on the tableau piles, and spaces are not filled. Only top cards from reach pile can be moved.

-The first card the bottom row can be arbitrarily selected from the +The first card in the bottom row can be arbitrarily selected from the top of any pile.

Notes

@@ -25,3 +26,11 @@ top of any pile.

Plan carefully - one wrong move and you may never be able to untangle the mess. + +

History

+

+This version of All in a Row is a Black Hole +variant that is actually a misinterpretation of the original game's rules. +This variant is also known as Quasar to better distinguish it from the +original game. In PySol, the original game can be found as +All in a Row II. diff --git a/html-src/rules/allinarowii.html b/html-src/rules/allinarowii.html new file mode 100644 index 00000000..ebab074f --- /dev/null +++ b/html-src/rules/allinarowii.html @@ -0,0 +1,31 @@ +

All in a Row II

+

+Golf game type. 1 deck. No redeal. + +

Object

+

+Move all cards to the foundation. + +

Rules

+

+The tableau is arranged in thirteen piles of four cards each. +Cards can be moved from the tableau to a reserve, which is built +up by rank, regardless of suit. A sequence of cards can then be +moved from the reserve to the foundation (single cards can't be +moved). +

+There is no building on the tableau piles, and spaces +are not filled. Only top cards from reach pile can be moved. +

+The first card of each sequence in the reserve can be arbitrarily +selected from the top of any pile. + +

Notes

+

+Autodrop is disabled for this game. + +

History

+

+This is the correct, original variant of the game All in a Row. +The other game is based on a common +misinterpretation of the game's rules. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 7a829b0b..bb3d12d9 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -551,7 +551,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, 891))) + ('dev', tuple(range(855, 892))) ) # 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 7fd83b61..06ee4197 100644 --- a/pysollib/games/golf.py +++ b/pysollib/games/golf.py @@ -512,6 +512,77 @@ class AllInARow(BlackHole): self._startDealNumRowsAndDealSingleRow(3) +# ************************************************************************ +# * All in a Row II +# ************************************************************************ + +class AllInARowII_Reserve(RK_RowStack): + getBottomImage = RK_RowStack._getReserveBottomImage + + def getHelp(self): + return _('Reserve. Build down regardless of suit.') + + +class AllInARowII_Foundation(AbstractFoundationStack): + def acceptsCards(self, from_stack, cards): + if from_stack not in self.game.s.reserves: + return False + if len(cards) == 1 or len(cards) != len(from_stack.cards): + return False + return True + + +class AllInARowII(Game): + + def createGame(self): + # create layout + layout, s = Layout(self), self.s + + # set window + h = layout.YM+layout.YS + 4 * layout.YOFFSET + self.setSize(layout.XM + 7 * layout.XS, + 3 * layout.YM + 3 * h + layout.YS) + + # create stacks + x, y = layout.XM, layout.YM + for i in range(7): + s.rows.append(OpenStack(x, y, self, max_accept=0)) + x += layout.XS + x, y = layout.XM, layout.YM+h + for i in range(6): + s.rows.append(OpenStack(x, y, self, max_accept=0)) + x += layout.XS + for r in s.rows: + r.CARD_XOFFSET, r.CARD_YOFFSET = 0, layout.YOFFSET + + x, y = layout.XM, self.height-layout.YS + stack = AllInARowII_Foundation( + 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, 'se') + + y -= layout.YS + stack = AllInARowII_Reserve( + x, y, self, dir=1, mod=13, max_cards=52, base_rank=ANY_RANK) + s.reserves.append(stack) + stack.CARD_XOFFSET, stack.CARD_YOFFSET = ((self.width - layout.XS) + // 51, 0) + x = self.width-layout.XS + s.talon = InitialDealTalonStack(x, y, self) + + # define stack-groups + layout.defaultStackGroups() + + def startGame(self): + self._startDealNumRowsAndDealSingleRow(3) + + def getStuck(self): + if len(self.s.reserves[0].cards) > 1: + return True + return Game.getStuck(self) + + # ************************************************************************ # * Robert # * Bobby @@ -1348,7 +1419,8 @@ registerGame(GameInfo(267, FourLeafClovers, "Four Leaf Clovers", registerGame(GameInfo(281, Escalator, "Escalator", GI.GT_GOLF, 1, 0, GI.SL_BALANCED)) registerGame(GameInfo(405, AllInARow, "All in a Row", - GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) + GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL, + altnames=("Quasar",))) registerGame(GameInfo(432, Robert, "Robert", GI.GT_GOLF, 1, 2, GI.SL_LUCK)) registerGame(GameInfo(551, DiamondMine, "Diamond Mine", @@ -1402,3 +1474,5 @@ registerGame(GameInfo(868, Bobby, "Bobby", GI.GT_GOLF, 1, 2, GI.SL_LUCK)) registerGame(GameInfo(880, Carcassonne, "Carcassonne", GI.GT_NAPOLEON | GI.GT_OPEN, 2, 0, GI.SL_BALANCED)) +registerGame(GameInfo(891, AllInARowII, "All in a Row II", + GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))