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

Added additional Poker Square variants.

This commit is contained in:
Joe R 2021-06-11 09:12:23 -04:00
parent c416d42a96
commit 655c293c80
2 changed files with 46 additions and 4 deletions

View file

@ -12,5 +12,10 @@ Place the 25 cards on the tableau to get a score of 100 points or more.
<p>
Once on a stack, a card cannot be moved.
<p>
If you are playing a variant with reserve or waste stacks, cards may
be moved onto the top of one or two five-card reserve/waste stacks. The
top card of a reserve stack may be moved to the grid at any time, but if
a card is moved to a waste stack, it cannot be moved.
<p>
Points are awarded for the 5 Poker hands from left to right and for
the 5 hands from top to bottom.

View file

@ -54,6 +54,8 @@ class PokerSquare(Game):
Hint_Class = None
WIN_SCORE = 100
NUM_RESERVE = 0
RESERVE_STACK = StackWrapper(ReserveStack, max_cards=5)
#
# game layout
@ -99,7 +101,7 @@ One Pair'''))
x = self.texts.misc.bbox()[1][0] + 32
# set window
w = max(2*l.XS, x)
w = max(2*l.XS, x, ((self.NUM_RESERVE + 1) * l.XS) + (4 * l.XM))
self.setSize(l.XM + w + 5*l.XS + 50, l.YM + 5*l.YS + 30)
# create stacks
@ -112,6 +114,10 @@ One Pair'''))
l.createText(s.talon, anchor=ta)
s.internals.append(InvisibleStack(self)) # for _swapPairMove()
for i in range(self.NUM_RESERVE):
x, y = ((i + 1) * l.XS) + (2 * l.XM), l.YM
s.reserves.append(self.RESERVE_STACK(x, y, self))
# create texts 2)
if self.preview <= 1:
for i in (4, 9, 14, 19, 24):
@ -150,12 +156,15 @@ One Pair'''))
#
def startGame(self):
self.moveMove(27, self.s.talon, self.s.internals[0], frames=0)
self.moveMove(27 - (5 * self.NUM_RESERVE), self.s.talon,
self.s.internals[0], frames=0)
self.s.talon.fillStack()
def isGameWon(self):
return len(self.s.talon.cards) == 0 and \
self.getGameScore() >= self.WIN_SCORE
for i in range(25):
if len(self.s.rows[i].cards) == 0:
return False
return self.getGameScore() >= self.WIN_SCORE
def getAutoStacks(self, event=None):
return ((), (), ())
@ -277,6 +286,25 @@ class PokerShuffle(PokerSquare):
def checkForWin(self):
return 0
# ************************************************************************
# * Poker Square (Waste)
# * Poker Square (1 Reserve)
# * Poker Square (2 Reserves)
# ************************************************************************
class PokerSquareWaste(PokerSquare):
NUM_RESERVE = 1
RESERVE_STACK = StackWrapper(ReserveStack, max_cards=5, max_move=0)
class PokerSquare1Reserve(PokerSquare):
NUM_RESERVE = 1
class PokerSquare2Reserves(PokerSquare):
NUM_RESERVE = 2
# register the game
registerGame(GameInfo(139, PokerSquare, "Poker Square",
@ -286,3 +314,12 @@ registerGame(GameInfo(140, PokerShuffle, "Poker Shuffle",
GI.GT_POKER_TYPE | GI.GT_SCORE | GI.GT_OPEN, 1, 0,
GI.SL_MOSTLY_SKILL,
si={"ncards": 25}))
registerGame(GameInfo(797, PokerSquareWaste, "Poker Square (Waste)",
GI.GT_POKER_TYPE | GI.GT_SCORE, 1, 0, GI.SL_MOSTLY_SKILL,
si={"ncards": 30}, rules_filename="pokersquare.html"))
registerGame(GameInfo(798, PokerSquare1Reserve, "Poker Square (1 Reserve)",
GI.GT_POKER_TYPE | GI.GT_SCORE, 1, 0, GI.SL_MOSTLY_SKILL,
si={"ncards": 30}, rules_filename="pokersquare.html"))
registerGame(GameInfo(799, PokerSquare2Reserves, "Poker Square (2 Reserves)",
GI.GT_POKER_TYPE | GI.GT_SCORE, 1, 0, GI.SL_MOSTLY_SKILL,
si={"ncards": 35}, rules_filename="pokersquare.html"))