diff --git a/html-src/rules/kiev.html b/html-src/rules/kiev.html new file mode 100644 index 00000000..4e3bd46a --- /dev/null +++ b/html-src/rules/kiev.html @@ -0,0 +1,16 @@ +

Kiev

+

+Spider type. 1 deck. No redeal. + +

Object

+

+Group all the cards in sets of 13 cards in descending sequence +by suit from King to Ace and move such sets to the foundations. + +

Quick Description

+

+Like Russian Spider, +but with a different layout consisting of seven piles of four cards +each (with only the top card of each visible). The remaining cards +are in the talon, and when there are no moves left, you can deal one +to each tableau pile. diff --git a/html-src/rules/russianspider.html b/html-src/rules/russianspider.html index 5487c929..7bc4a2fe 100644 --- a/html-src/rules/russianspider.html +++ b/html-src/rules/russianspider.html @@ -24,5 +24,6 @@ of the same suit. Such groups can be moved to the foundations.

Notes

-Russian Spider is a combination of the games Russian Solitaire -and Spider. It is also known as Ukrainian Solitaire. +Russian Spider is a combination of the games +Russian Solitaire and +Spider. It is also known as Ukrainian Solitaire. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 050573e1..f2c1b777 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -558,7 +558,8 @@ class GI: tuple(range(22217, 22219))), ('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))) + ('fc-2.20', tuple(range(855, 897))), + ('dev', tuple(range(897, 898))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/yukon.py b/pysollib/games/yukon.py index e0a37a57..8d12e7e6 100644 --- a/pysollib/games/yukon.py +++ b/pysollib/games/yukon.py @@ -56,18 +56,25 @@ class Yukon(Game): RowStack_Class = StackWrapper(Yukon_AC_RowStack, base_rank=KING) Hint_Class = Yukon_Hint - def createGame(self, **layout): + DIFF_SUITS = True + + def createGame(self, rows=7, **layout): # create layout l, s = Layout(self), self.s - kwdefault(layout, rows=7, texts=0, playcards=25) + kwdefault(layout, rows=rows, texts=0, playcards=25) self.Layout_Method(l, **layout) self.setSize(l.size[0], l.size[1]) # create stacks s.talon = self.Talon_Class(l.s.talon.x, l.s.talon.y, self) for r in l.s.foundations: - s.foundations.append( - self.Foundation_Class( - r.x, r.y, self, suit=r.suit, max_move=0)) + if self.DIFF_SUITS: + s.foundations.append( + self.Foundation_Class( + r.x, r.y, self, suit=r.suit, max_move=0)) + else: + s.foundations.append( + self.Foundation_Class( + r.x, r.y, self, suit=ANY_SUIT, max_move=0)) for r in l.s.rows: s.rows.append(self.RowStack_Class(r.x, r.y, self)) # default @@ -539,6 +546,7 @@ class Queensland(Yukon): # ************************************************************************ # * Russian Spider # * Double Russian Spider +# * Kiev # ************************************************************************ class RussianSpider_RowStack(Yukon_SS_RowStack): # Spider_SS_RowStack @@ -556,31 +564,30 @@ class RussianSpider(RussianSolitaire): RowStack_Class = StackWrapper(RussianSpider_RowStack, base_rank=KING) Foundation_Class = Spider_SS_Foundation - def createGame(self, rows=7): - # create layout - l, s = Layout(self), self.s - l.yukonLayout(rows=rows, texts=0, playcards=25) - self.setSize(l.size[0], l.size[1]) - # create stacks - s.talon = self.Talon_Class(l.s.talon.x, l.s.talon.y, self) - for r in l.s.foundations: - s.foundations.append( - self.Foundation_Class( - r.x, r.y, self, suit=ANY_SUIT, max_move=0)) - for r in l.s.rows: - s.rows.append(self.RowStack_Class(r.x, r.y, self)) - # default - l.defaultAll() + DIFF_SUITS = False class DoubleRussianSpider(RussianSpider, DoubleRussianSolitaire): def createGame(self): - RussianSpider.createGame(self, rows=10) + Yukon.createGame(self, rows=10) def startGame(self): DoubleRussianSolitaire.startGame(self) +class Kiev(RussianSpider): + Layout_Method = staticmethod(Layout.klondikeLayout) + Talon_Class = DealRowTalonStack + + def createGame(self): + return Yukon.createGame(self, waste=0, texts=1) + + def startGame(self): + for i in range(3): + self.s.talon.dealRow(flip=0, frames=0) + self._startAndDealRow() + + # ************************************************************************ # * Brisbane # ************************************************************************ @@ -810,3 +817,6 @@ registerGame(GameInfo(826, YukonicPlague, "Yukonic Plague", GI.GT_YUKON, 1, 0, GI.SL_BALANCED)) registerGame(GameInfo(857, TasmanianPatience, "Tasmanian Patience", GI.GT_YUKON, 1, -1, GI.SL_BALANCED)) +registerGame(GameInfo(897, Kiev, "Kiev", + GI.GT_SPIDER, 1, 0, GI.SL_BALANCED, + altnames=('Kyiv',)))