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

Added Yukon Kings game.

This commit is contained in:
Joe R 2023-12-05 20:28:24 -05:00
parent 2f87a554be
commit c2bc849fc1
3 changed files with 54 additions and 2 deletions

View file

@ -0,0 +1,16 @@
<h1>Yukon Kings</h1>
<p>
Yukon type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Arrange all cards into four columns with complete sequences from
king to ace, built down by alternate color.
<h3>Quick Description</h3>
<p>
Just like <a href="yukon.html">Yukon</a>,
but with no foundations. To win the game, the
cards must be organized into four piles, built
down from king to ace by alternate color.
Difficult.

View file

@ -592,7 +592,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, 936)) + tuple(range(11017, 11020)) +
('dev', tuple(range(906, 937)) + tuple(range(11017, 11020)) +
tuple(range(5600, 5624)) + tuple(range(18000, 18005)) +
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
)

View file

@ -41,7 +41,8 @@ from pysollib.stack import \
WasteTalonStack, \
Yukon_AC_RowStack, \
Yukon_BO_RowStack, \
Yukon_SS_RowStack
Yukon_SS_RowStack, \
isAlternateColorSequence
from pysollib.util import ANY_SUIT, KING
@ -706,6 +707,39 @@ class Wave(Game):
shallHighlightMatch = Game._shallHighlightMatch_AC
# ************************************************************************
# * Yukon Kings
# ************************************************************************
class YukonKings(Yukon):
def createGame(self, playcards=25):
l, s = Layout(self), self.s
self.setSize(l.XM + (7 * l.XS),
l.YM + l.YS + playcards * l.YOFFSET)
x, y = l.XM, l.YM
for i in range(7):
s.rows.append(self.RowStack_Class(x, y, self))
x += l.XS
x, y = l.XM, self.height - l.YS
s.talon = InitialDealTalonStack(x, y, self)
l.defaultStackGroups()
def isGameWon(self):
cardsPlayed = False
for s in self.s.rows:
if s.cards:
if len(s.cards) != 13 or not isAlternateColorSequence(s.cards):
return False
cardsPlayed = True
if not cardsPlayed:
return False
return True
# ************************************************************************
# * Yukon Cells
# * Yukonic Plague
@ -860,3 +894,5 @@ registerGame(GameInfo(919, Dnieper, "Dnieper",
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(925, YukonCells, "Yukon Cells",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(936, YukonKings, "Yukon Kings",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED))