From 2d87058ce8b6cfd2a8929831ce33b93c60e7d48b Mon Sep 17 00:00:00 2001 From: Joe R Date: Fri, 19 Nov 2021 19:53:52 -0500 Subject: [PATCH] Added Casino Canfield variation. --- html-src/rules/casinocanfield.html | 24 ++++++++++++++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/canfield.py | 28 ++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 html-src/rules/casinocanfield.html diff --git a/html-src/rules/casinocanfield.html b/html-src/rules/casinocanfield.html new file mode 100644 index 00000000..8d604759 --- /dev/null +++ b/html-src/rules/casinocanfield.html @@ -0,0 +1,24 @@ +

Casino Canfield

+

+Canfield type. 1 deck. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Just like Canfield, +but cards are dealt from the talon one at a time, +and there is no redeal. + +

Notes

+

+There is a simple casino scoring system here - you debit $52 for each game +and for every card you bear off, you get $5 credit. +Your balance is reset whenever you select a different game. +Loaded games and manually entered game numbers don't count. +

+Casino Canfield is an attempt to recreate the game played in +Richard A. Canfield's casino, though it is possible that the game in +question is actually a variation of Klondike. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index b85b6433..27473017 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -485,7 +485,7 @@ class GI: ('fc-2.12', tuple(range(774, 811)) + (16681,) + tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), - ('fc-2.16', tuple(range(827, 835))) + ('fc-2.16', tuple(range(827, 836))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/canfield.py b/pysollib/games/canfield.py index d00585cc..f7ad1a71 100644 --- a/pysollib/games/canfield.py +++ b/pysollib/games/canfield.py @@ -348,6 +348,32 @@ class VariegatedCanfield(Canfield): pass +# ************************************************************************ +# * Casino Canfield +# ************************************************************************ + +class CasinoCanfield(Canfield): + getGameScore = Game.getGameScoreCasino + getGameBalance = Game.getGameScoreCasino + + def createGame(self, max_rounds=1, num_deal=1): + lay = Canfield.createGame(self, max_rounds=max_rounds, + num_deal=num_deal) + self.texts.score = MfxCanvasText(self.canvas, + 8, self.height - 8, anchor="sw", + font=self.app.getFont("canvas_large")) + return lay + + def updateText(self): + if self.preview > 1: + return + b1, b2 = self.app.stats.gameid_balance, 0 + if self.shallUpdateBalance(): + b2 = self.getGameBalance() + t = _("Balance $%d") % (b1 + b2) + self.texts.score.config(text=t) + + # ************************************************************************ # * Eagle Wing # ************************************************************************ @@ -948,3 +974,5 @@ registerGame(GameInfo(642, Lafayette, "Lafayette", GI.GT_CANFIELD, 1, -1, GI.SL_BALANCED)) registerGame(GameInfo(789, Beehive, "Beehive", GI.GT_CANFIELD, 1, -1, GI.SL_BALANCED)) +registerGame(GameInfo(835, CasinoCanfield, "Casino Canfield", + GI.GT_CANFIELD | GI.GT_SCORE, 1, 0, GI.SL_BALANCED))