1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Added Quadruple Yukon variant.

This commit is contained in:
Joe R 2023-12-30 12:30:01 -05:00
parent c835bc09aa
commit 301d461875
4 changed files with 40 additions and 7 deletions

View file

@ -0,0 +1,12 @@
<h1>Quadruple Yukon</h1>
<p>
Yukon type. 4 decks. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="yukon.html">Yukon</a>,
but with four decks and 16 playing piles.

View file

@ -593,7 +593,7 @@ class GI:
('fc-2.20', tuple(range(855, 897))), ('fc-2.20', tuple(range(855, 897))),
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
tuple(range(13160, 13163)) + (16682,)), tuple(range(13160, 13163)) + (16682,)),
('dev', tuple(range(906, 942)) + tuple(range(11017, 11020)) + ('dev', tuple(range(906, 943)) + tuple(range(11017, 11020)) +
tuple(range(5600, 5624)) + tuple(range(18000, 18005)) + tuple(range(5600, 5624)) + tuple(range(18000, 18005)) +
tuple(range(22303, 22311)) + tuple(range(22353, 22361))), tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
) )

View file

@ -378,6 +378,23 @@ class TripleRussianSolitaire(TripleYukon):
shallHighlightMatch = Game._shallHighlightMatch_SS shallHighlightMatch = Game._shallHighlightMatch_SS
# ************************************************************************
# * Quadruple Yukon
# ************************************************************************
class QuadrupleYukon(Yukon):
def createGame(self):
Yukon.createGame(self, rows=16, playcards=34)
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[1:13], flip=1, frames=0)
for i in range(4):
self.s.talon.dealRow(rows=self.s.rows[1:], flip=1, frames=0)
self._startAndDealRow()
# ************************************************************************ # ************************************************************************
# * Ten Across # * Ten Across
# ************************************************************************ # ************************************************************************
@ -896,3 +913,5 @@ registerGame(GameInfo(925, YukonCells, "Yukon Cells",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED)) GI.GT_YUKON, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(936, YukonKings, "Yukon Kings", registerGame(GameInfo(936, YukonKings, "Yukon Kings",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED)) GI.GT_YUKON, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(942, QuadrupleYukon, "Quadruple Yukon",
GI.GT_YUKON, 4, 0, GI.SL_BALANCED))

View file

@ -23,6 +23,7 @@
# imports # imports
import math
# PySol imports # PySol imports
from pysollib.mfxutil import Struct from pysollib.mfxutil import Struct
@ -659,11 +660,12 @@ class Layout:
XS, YS = self.XS, self.YS XS, YS = self.XS, self.YS
decks = self.game.gameinfo.decks decks = self.game.gameinfo.decks
fpc = max(1, math.floor(decks / 2))
suits = len(self.game.gameinfo.suits) + bool(self.game.gameinfo.trumps) suits = len(self.game.gameinfo.suits) + bool(self.game.gameinfo.trumps)
# set size so that at least 2//3 of a card is visible with 20 cards # set size so that at least 2//3 of a card is visible with 20 cards
h = CH*2//3 + (playcards-1)*self.YOFFSET h = CH * 2 // 3 + (playcards - 1) * self.YOFFSET
h = YM + max(h, suits*YS) h = YM + max(h, suits * YS * fpc)
# create rows # create rows
x, y = XM, YM x, y = XM, YM
@ -673,9 +675,9 @@ class Layout:
self.setRegion(self.s.rows, (-999, -999, x - CW // 2, 999999)) self.setRegion(self.s.rows, (-999, -999, x - CW // 2, 999999))
# create foundations # create foundations
for suit in range(suits): for suit in range(suits * fpc):
for i in range(decks): for i in range(decks // fpc):
self.s.foundations.append(S(x+i*XS, y, suit=suit)) self.s.foundations.append(S(x + i * XS, y, suit=suit // fpc))
y += YS y += YS
# create talon # create talon
@ -686,7 +688,7 @@ class Layout:
self._setText(s, 'se') self._setText(s, 'se')
# set window # set window
self.size = (XM + (rows+decks)*XS, h) self.size = (XM + (rows + (decks // fpc)) * XS, h)
# #
# Easy layout # Easy layout