From 9f78391e0d2425ab0d3b9a766d578a599002028c Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 28 Mar 2024 20:31:27 -0400 Subject: [PATCH] Added Obstruction game. --- html-src/rules/obstruction.html | 23 ++++++++++++++++++ pysollib/gamedb.py | 3 ++- pysollib/games/freecell.py | 42 +++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 html-src/rules/obstruction.html diff --git a/html-src/rules/obstruction.html b/html-src/rules/obstruction.html new file mode 100644 index 00000000..b1f951b7 --- /dev/null +++ b/html-src/rules/obstruction.html @@ -0,0 +1,23 @@ +

Obstruction

+

+FreeCell type. 1 joker deck. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like FreeCell, +but with two jokers. The jokers are obstacles - they can +only be moved to the free cells, and any cards behind them +are blocked until you do. Once there, the jokers can only be +moved to the joker foundation, and only once all other cards +have been moved to the foundations. + +

Notes

+

+Obstruction is an original game by PySol developer Joe R. It +is designed as a more strategic version of Michael Keller's +Ephemeral FreeCell, requiring the player to block two of the +free cells as the game progresses. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index a066f3e4..7ca0b164 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -499,6 +499,7 @@ class GI: 845)), ("Toby Ord", (788,)), ("David Parlett", (64, 98, 294, 338, 654, 796, 812, 844)), + ("Joe R.", (938, 960,)), ("Randy Rasa", (187, 188, 190, 191, 192,)), ("Gregg Seelhoff", (347,)), ("Adam Selene", (366,)), @@ -598,7 +599,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, 960)) + tuple(range(5415, 5419)) + + ('dev', tuple(range(906, 961)) + tuple(range(5415, 5419)) + tuple(range(5600, 5624)) + tuple(range(11017, 11020)) + tuple(range(13168, 13170)) + tuple(range(18000, 18005)) + tuple(range(19000, 19012)) + tuple(range(22303, 22311)) + diff --git a/pysollib/games/freecell.py b/pysollib/games/freecell.py index 798ce3b1..df32ab7d 100644 --- a/pysollib/games/freecell.py +++ b/pysollib/games/freecell.py @@ -122,6 +122,45 @@ class ForeCell(FreeCell): self.s.talon.dealRow(rows=self.s.reserves) +# ************************************************************************ +# * Obstruction +# ************************************************************************ + +class Obstruction_RowStack(SuperMoveAC_RowStack): + def acceptsCards(self, from_stack, cards): + if not self.basicAcceptsCards(from_stack, cards): + return 0 + if cards[0].suit == 4: + return 0 + stackcards = self.cards + if stackcards: + if stackcards[-1].suit == 4: + return 0 + return AC_RowStack.acceptsCards(self, from_stack, cards) + + +class Obstruction_Foundation(SS_FoundationStack): + def acceptsCards(self, from_stack, cards): + if self.cap.suit == 4 and cards[0].suit == 4: + for s in self.game.s.foundations[:3]: + if len(s.cards) != 13: + return 0 + return 1 + return SS_FoundationStack.acceptsCards(self, from_stack, cards) + + +class Obstruction(FreeCell): + Foundation_Class = Obstruction_Foundation + RowStack_Class = Obstruction_RowStack + Solver_Class = None + + def startGame(self): + self._startDealNumRows(5) + self.s.talon.dealRow() + r = self.s.rows + self.s.talon.dealRow(rows=r[:6]) + + # ************************************************************************ # * Petal # ************************************************************************ @@ -762,3 +801,6 @@ registerGame(GameInfo(813, DoubleFreecellTd, "Double FreeCell (Traditional)", GI.GT_FREECELL | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(953, Petal, "Petal", GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(960, Obstruction, "Obstruction", + GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL, + subcategory=GI.GS_JOKER_DECK, trumps=list(range(2))))