From d98278b37324da1a9364b32b13f5ccf82fc2177c Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 1 May 2023 18:50:45 -0400 Subject: [PATCH] Added new tarock deck variations of Klondike and Yukon. --- html-src/rules/imperialtrumps.html | 2 +- html-src/rules/imperialtrumpyukon.html | 20 +++++ html-src/rules/klondikenouveau.html | 14 ++++ html-src/rules/yukonnouveau.html | 14 ++++ pysollib/gamedb.py | 2 +- pysollib/games/special/tarock.py | 103 ++++++++++++++++++++++--- 6 files changed, 141 insertions(+), 14 deletions(-) create mode 100644 html-src/rules/imperialtrumpyukon.html create mode 100644 html-src/rules/klondikenouveau.html create mode 100644 html-src/rules/yukonnouveau.html diff --git a/html-src/rules/imperialtrumps.html b/html-src/rules/imperialtrumps.html index 7db167b5..2b6b4c3d 100644 --- a/html-src/rules/imperialtrumps.html +++ b/html-src/rules/imperialtrumps.html @@ -8,7 +8,7 @@ Move all cards to the foundations.

Rules

-This game is similar to Klondike except the twenty-two trump +This game is similar to Klondike except the twenty-two trump cards will play on any suit card of the next higher rank. Cards will play on the foundation only if the trump card of equal rank is played first. That means the Ace of Spades diff --git a/html-src/rules/imperialtrumpyukon.html b/html-src/rules/imperialtrumpyukon.html new file mode 100644 index 00000000..65f58651 --- /dev/null +++ b/html-src/rules/imperialtrumpyukon.html @@ -0,0 +1,20 @@ +

Imperial Trump Yukon

+

+Tarock type. 1 deck. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Rules

+

+This game is similar to Yukon except the twenty-two trump +cards will play on any suit card of the next higher rank. +Cards will play on the foundation only if the trump card of +equal rank is played first. That means the Ace of Spades +won't play on the Spade foundation until the Ace of Trumps +is played on the Trump foundation. Only Kings or the highest +ranked Trump can be played on an empty row stack. The highest +Trump is called either the Fool or the Skiz depending on the +type of deck. It has either the number 0 or is not numbered. +Cards can be played from the foundations to the tableau. diff --git a/html-src/rules/klondikenouveau.html b/html-src/rules/klondikenouveau.html new file mode 100644 index 00000000..855dd3c1 --- /dev/null +++ b/html-src/rules/klondikenouveau.html @@ -0,0 +1,14 @@ +

Klondike Nouveau

+

+Tarock type. 1 deck. Unlimited redeals. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Imperial Trumps, +but with nine tableau piles, and cards do not need to be +moved to the trumps foundation before the other foundations +can be built. diff --git a/html-src/rules/yukonnouveau.html b/html-src/rules/yukonnouveau.html new file mode 100644 index 00000000..5126fd88 --- /dev/null +++ b/html-src/rules/yukonnouveau.html @@ -0,0 +1,14 @@ +

Yukon Nouveau

+

+Tarock type. 1 deck. Unlimited redeals. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Imperial Trump Yukon, +but with nine tableau piles (the odd card is dealt to the first +tableau pile), and cards do not need to be moved to the trumps +foundation before the other foundations can be built. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index f2c1b777..3840a35e 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -559,7 +559,7 @@ class GI: ('fc-2.14', tuple(range(811, 827))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), ('fc-2.20', tuple(range(855, 897))), - ('dev', tuple(range(897, 898))) + ('dev', tuple(range(897, 898)) + tuple(range(13160, 13163))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/special/tarock.py b/pysollib/games/special/tarock.py index 49c9a2c3..11779560 100644 --- a/pysollib/games/special/tarock.py +++ b/pysollib/games/special/tarock.py @@ -26,7 +26,7 @@ from pysollib.gamedb import GI, GameInfo, registerGame from pysollib.games.bakersdozen import Cruel_Talon from pysollib.games.braid import Braid, Braid_ReserveStack, Braid_RowStack from pysollib.games.braid import Braid_BraidStack, Braid_Foundation -from pysollib.hint import CautiousDefaultHint +from pysollib.hint import CautiousDefaultHint, Yukon_Hint from pysollib.layout import Layout from pysollib.mfxutil import kwdefault from pysollib.mygettext import _ @@ -134,6 +134,28 @@ class TrumpWild_RowStack(Tarock_OpenStack): return cards[0].color != self.cards[-1].color +class TrumpWildYukon_RowStack(TrumpWild_RowStack): + def _isYukonSequence(self, c1, c2): + # print('Yukon_AC_RowStack._isYukonSequence()', c1, c2) + return ((c1.rank + self.cap.dir) % self.cap.mod == c2.rank and + c1.color != c2.color) + + def acceptsCards(self, from_stack, cards): + if not self.basicAcceptsCards(from_stack, cards): + return 0 + if not self.cards: + if cards[0].suit == len(self.game.gameinfo.suits): + return cards[0].rank == len(self.game.gameinfo.trumps) - 1 + else: + return cards[0].rank == len(self.game.gameinfo.ranks) - 1 + if cards[0].rank != self.cards[-1].rank - 1: + return 0 + elif cards[0].color == 2 or self.cards[-1].color == 2: + return 1 + else: + return cards[0].color != self.cards[-1].color + + class TrumpOnly_RowStack(Tarock_OpenStack): def acceptsCards(self, from_stack, cards): if not self.basicAcceptsCards(from_stack, cards): @@ -300,42 +322,50 @@ class WheelOfFortune(AbstractTarockGame): # ************************************************************************ # * Imperial Trumps +# * Imperial Trump Yukon # ************************************************************************ class ImperialTrumps(AbstractTarockGame): + ROW_STACK = TrumpWild_RowStack + FOUNDATION_STACK = ImperialTrump_Foundation + + TALON = True # # Game layout # - def createGame(self): + def createGame(self, rows=8): l, s = Layout(self), self.s # Set window size - self.setSize(l.XM + l.XS * 8, l.YM + l.YS * 5) + self.setSize(l.XM + l.XS * rows, l.YM + l.YS * 5) # Create foundations - x = l.XM + l.XS * 3 + x = l.XM + l.XS * (rows - 5) y = l.YM for i in range(4): s.foundations.append( - ImperialTrump_Foundation(x, y, self, i, max_cards=14)) + self.FOUNDATION_STACK(x, y, self, i, max_cards=14)) x = x + l.XS s.foundations.append(SS_FoundationStack(x, y, self, 4, max_cards=22)) # Create talon x = l.XM - s.talon = WasteTalonStack(x, y, self, num_deal=1, max_rounds=-1) - l.createText(s.talon, "s") - x = x + l.XS - s.waste = WasteStack(x, y, self) - l.createText(s.waste, "s") + if self.TALON: + s.talon = WasteTalonStack(x, y, self, num_deal=1, max_rounds=-1) + l.createText(s.talon, "s") + x = x + l.XS + s.waste = WasteStack(x, y, self) + l.createText(s.waste, "s") + else: + s.talon = InitialDealTalonStack(x, y, self) # Create rows x = l.XM y = l.YM + l.YS + l.TEXT_HEIGHT - for i in range(8): - s.rows.append(TrumpWild_RowStack(x, y, self)) + for i in range(rows): + s.rows.append(self.ROW_STACK(x, y, self)) x = x + l.XS self.setRegion(s.rows, (-999, y, 999999, 999999)) @@ -358,6 +388,48 @@ class ImperialTrumps(AbstractTarockGame): return 0 +class ImperialTrumpYukon(ImperialTrumps): + ROW_STACK = TrumpWildYukon_RowStack + TALON = False + + Hint_Class = Yukon_Hint + + def startGame(self): + for i in range(1, len(self.s.rows)): + self.s.talon.dealRow(rows=self.s.rows[i:], flip=0, frames=0) + for i in range(6): + self.s.talon.dealRow(rows=self.s.rows[1:], flip=1, frames=0) + self._startAndDealRow() + + +# ************************************************************************ +# * Klondike Nouveau +# * Yukon Nouveau +# ************************************************************************ + +class KlondikeNouveau(ImperialTrumps): + FOUNDATION_STACK = SS_FoundationStack + + def createGame(self): + ImperialTrumps.createGame(self, rows=9) + + +class YukonNouveau(KlondikeNouveau): + FOUNDATION_STACK = SS_FoundationStack + ROW_STACK = TrumpWildYukon_RowStack + TALON = False + + Hint_Class = Yukon_Hint + + def startGame(self): + for i in range(1, len(self.s.rows)): + self.s.talon.dealRow(rows=self.s.rows[i:], flip=0, frames=0) + self.s.talon.dealRow(rows=self.s.rows, flip=1, frames=0) + for i in range(3): + self.s.talon.dealRow(rows=self.s.rows[1:], flip=1, frames=0) + self._startAndDealRow() + + # ************************************************************************ # * Pagat # ************************************************************************ @@ -935,4 +1007,11 @@ r(203, FiveAces, "Five Aces", GI.GT_TAROCK, 1, 0, GI.SL_MOSTLY_SKILL) r(204, Wicked, "Wicked", GI.GT_TAROCK | GI.GT_OPEN, 1, -1, GI.SL_BALANCED) r(205, Nasty, "Nasty", GI.GT_TAROCK | GI.GT_OPEN, 1, -1, GI.SL_BALANCED) +r(13160, ImperialTrumpYukon, "Imperial Trump Yukon", GI.GT_TAROCK, 1, 0, + GI.SL_BALANCED) +r(13161, KlondikeNouveau, "Klondike Nouveau", GI.GT_TAROCK, 1, -1, + GI.SL_BALANCED) +r(13162, YukonNouveau, "Yukon Nouveau", GI.GT_TAROCK, 1, 0, + GI.SL_BALANCED) + del r