diff --git a/html-src/rules/alexanderthegreat.html b/html-src/rules/alexanderthegreat.html new file mode 100644 index 00000000..6b438fd1 --- /dev/null +++ b/html-src/rules/alexanderthegreat.html @@ -0,0 +1,12 @@ +

Alexander the Great

+

+Fan game type. 1 deck. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Just like Clover Leaf, +but with twelve piles of four cards each. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index fbce63e0..71eb7a74 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -491,7 +491,7 @@ class GI: ("Peter Voke", (876,)), ("Thomas Warfield", (189, 264, 300, 320, 336, 337, 359, 415, 427, 458, 495, 496, 497, 508, - 800, 814, 820, 825, 889, 911,)), + 800, 814, 820, 825, 889, 911, 926)), ("Mary Whitmore Jones", (421, 624,)), ("Jan Wolter", (917,)), ) @@ -576,7 +576,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, 926)) + tuple(range(11017, 11020)) + + ('dev', tuple(range(906, 927)) + tuple(range(11017, 11020)) + tuple(range(22303, 22311)) + tuple(range(22353, 22361))), ) diff --git a/pysollib/games/fan.py b/pysollib/games/fan.py index c1a74c1a..5301adab 100644 --- a/pysollib/games/fan.py +++ b/pysollib/games/fan.py @@ -525,6 +525,7 @@ class HouseOnTheHill(HouseInTheWood): # ************************************************************************ # * Clover Leaf +# * Alexander the Great # ************************************************************************ class CloverLeaf_RowStack(UD_SS_RowStack): @@ -540,20 +541,21 @@ class CloverLeaf_RowStack(UD_SS_RowStack): class CloverLeaf(Game): - Hint_Class = Fan_Hint # # game layout # - def createGame(self): + def createGame(self, cols=4): # create layout l, s = Layout(self), self.s # set window playcards = 7 - w, h = l.XM+l.XS+4*(l.XS+(playcards-1)*l.XOFFSET), l.YM+4*l.YS + w, h = ((2 * l.XM) + l.XS + cols * + (l.XS + (playcards - 1) * l.XOFFSET)), \ + l.YM + 4 * l.YS self.setSize(w, h) # create stacks @@ -562,12 +564,12 @@ class CloverLeaf(Game): s.foundations.append(SS_FoundationStack(x, y, self, suit=i)) y += l.YS for i in range(2): - s.foundations.append(SS_FoundationStack(x, y, self, suit=i+2, + s.foundations.append(SS_FoundationStack(x, y, self, suit=i + 2, base_rank=KING, dir=-1)) y += l.YS - x = l.XM+l.XS - for i in range(4): + x = (2 * l.XM) + l.XS + for i in range(cols): y = l.YM for j in range(4): stack = CloverLeaf_RowStack(x, y, self, @@ -575,9 +577,9 @@ class CloverLeaf(Game): s.rows.append(stack) stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0 y += l.YS - x += l.XS+(playcards-1)*l.XOFFSET + x += l.XS + (playcards - 1) * l.XOFFSET - s.talon = InitialDealTalonStack(w-l.XS, h-l.YS, self) + s.talon = InitialDealTalonStack(w - l.XS, h - l.YS, self) # default l.defaultAll() @@ -601,6 +603,17 @@ class CloverLeaf(Game): shallHighlightMatch = Game._shallHighlightMatch_SS +class AlexanderTheGreat(CloverLeaf): + + def createGame(self): + CloverLeaf.createGame(self, cols=3) + + def startGame(self): + self._startDealNumRows(3) + self.s.talon.dealRow() + self.s.talon.dealRow(rows=self.s.foundations) + + # ************************************************************************ # * Free Fan # ************************************************************************ @@ -1181,3 +1194,5 @@ registerGame(GameInfo(894, Cromwell, "Cromwell", GI.GT_FAN_TYPE | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(908, OpenProils, "Open Proils", GI.GT_FAN_TYPE, 1, 0, GI.SL_BALANCED)) +registerGame(GameInfo(926, AlexanderTheGreat, "Alexander the Great", + GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))