From a01090df65f67bc652511a7beae72a9af8845d4d Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 14 Aug 2023 18:56:19 -0400 Subject: [PATCH] Added Open Proils game. --- html-src/rules/openproils.html | 12 ++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/fan.py | 11 +++++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 html-src/rules/openproils.html diff --git a/html-src/rules/openproils.html b/html-src/rules/openproils.html new file mode 100644 index 00000000..3c2bbfc9 --- /dev/null +++ b/html-src/rules/openproils.html @@ -0,0 +1,12 @@ +

Open Proils

+

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

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Just like Roaming Proils, +but with all cards dealt face-up. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index c28ca924..f3f2a165 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -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, 908))), + ('dev', tuple(range(906, 909))), ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/fan.py b/pysollib/games/fan.py index bdeefd7a..c1a74c1a 100644 --- a/pysollib/games/fan.py +++ b/pysollib/games/fan.py @@ -725,13 +725,18 @@ class RoamingProils(Fan): def createGame(self): Fan.createGame(self, rows=(5, 5, 5, 2), playcards=5, reserves=1) - def startGame(self): + def startGame(self, flip=0): for i in range(2): - self.s.talon.dealRow(rows=self.s.rows[:17], flip=0, frames=0) + self.s.talon.dealRow(rows=self.s.rows[:17], flip=flip, frames=0) self._startAndDealRow() self.s.talon.dealRow(rows=self.s.reserves) +class OpenProils(RoamingProils): + def startGame(self): + RoamingProils.startGame(self, flip=1) + + # ************************************************************************ # * Fascination Fan # ************************************************************************ @@ -1174,3 +1179,5 @@ registerGame(GameInfo(879, RoamingProils, "Roaming Proils", GI.GT_FAN_TYPE, 1, 0, GI.SL_BALANCED)) registerGame(GameInfo(894, Cromwell, "Cromwell", GI.GT_FAN_TYPE | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(908, OpenProils, "Open Proils", + GI.GT_FAN_TYPE, 1, 0, GI.SL_BALANCED))