mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Maverick game.
This commit is contained in:
parent
cfa07e6c90
commit
d2283a90d6
3 changed files with 95 additions and 5 deletions
36
html-src/rules/maverick.html
Normal file
36
html-src/rules/maverick.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
<h1>Maverick</h1>
|
||||
<p>
|
||||
Poker type. 1 deck. No redeal.
|
||||
|
||||
<h3>Object</h3>
|
||||
<p>
|
||||
Arrange 25 cards into 5 poker "pat hands" - straights or better.
|
||||
|
||||
<h3>Rules</h3>
|
||||
<p>
|
||||
At game start 25 cards are dealt to the tableau piles.
|
||||
<p>
|
||||
Swap any 2 cards on the tableau. The five poker hands from left to right are
|
||||
counted. The goal is to make each of them into pat hands - hands that do not
|
||||
have to be drawn to in draw poker - straights or better.
|
||||
|
||||
<h3>Poker Hands</h3>
|
||||
<p>
|
||||
Poker hands are as follows, ordered from least valuable to most valuable.
|
||||
Each hand is scored based as most valuable type:
|
||||
<ul>
|
||||
<li>One Pair - Two cards of the same rank.
|
||||
<li>Two Pair - Two sets of two cards of the same rank.
|
||||
<li>3 of a Kind - Three cards of the same rank.
|
||||
<li>Straight - Five cards of sequential rank.
|
||||
<li>Flush - Five cards of the same suit.
|
||||
<li>Full House - A three of a kind plus a pair.
|
||||
<li>4 of a Kind - Four cards of the same rank.
|
||||
<li>Straight Flush - Five cards of sequential rank of the same suit.
|
||||
<li>Royal Flush - The ten, jack, queen, king and ace of the same suit.
|
||||
</ul>
|
||||
|
||||
<h3>Notes</h3>
|
||||
<p>
|
||||
The game Maverick was introduced in the 1958 episode of the TV Western
|
||||
"Maverick" entitled "Rope of Cards".
|
|
@ -423,7 +423,7 @@ class GI:
|
|||
('fc-2.8', (343001,)),
|
||||
('fc-2.12', tuple(range(774, 811)) + (16681,) +
|
||||
tuple(range(22217, 22219))),
|
||||
('fc-2.14', tuple(range(811, 817)))
|
||||
('fc-2.14', tuple(range(811, 818)))
|
||||
)
|
||||
|
||||
# deprecated - the correct way is to or a GI.GT_XXX flag
|
||||
|
|
|
@ -56,6 +56,7 @@ class PokerSquare(Game):
|
|||
WIN_SCORE = 100
|
||||
NUM_RESERVE = 0
|
||||
RESERVE_STACK = StackWrapper(ReserveStack, max_cards=5)
|
||||
UNSCORED = False
|
||||
|
||||
#
|
||||
# game layout
|
||||
|
@ -68,7 +69,7 @@ class PokerSquare(Game):
|
|||
# create texts 1)
|
||||
ta = "ss"
|
||||
x, y = l.XM, l.YM + 2*l.YS
|
||||
if self.preview <= 1:
|
||||
if self.preview <= 1 and not self.UNSCORED:
|
||||
t = MfxCanvasText(self.canvas, x, y, anchor="nw",
|
||||
font=self.app.getFont("canvas_default"),
|
||||
text=_('''\
|
||||
|
@ -101,8 +102,12 @@ One Pair'''))
|
|||
x = self.texts.misc.bbox()[1][0] + 32
|
||||
|
||||
# set window
|
||||
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)
|
||||
if not self.UNSCORED:
|
||||
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)
|
||||
else:
|
||||
w = l.XM
|
||||
self.setSize(l.XM + w + 5 * l.XS + 100, l.YM + 5 * l.YS)
|
||||
|
||||
# create stacks
|
||||
for i in range(5):
|
||||
|
@ -110,6 +115,8 @@ One Pair'''))
|
|||
x, y = l.XM + w + j*l.XS, l.YM + i*l.YS
|
||||
s.rows.append(self.RowStack_Class(x, y, self))
|
||||
x, y = l.XM, l.YM
|
||||
if self.UNSCORED:
|
||||
x += (4 * l.YS)
|
||||
s.talon = self.Talon_Class(x, y, self)
|
||||
l.createText(s.talon, anchor=ta)
|
||||
s.internals.append(InvisibleStack(self)) # for _swapPairMove()
|
||||
|
@ -292,13 +299,13 @@ 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)
|
||||
|
@ -312,6 +319,50 @@ class PokerSquare2Reserves(PokerSquare):
|
|||
NUM_RESERVE = 2
|
||||
|
||||
|
||||
# ************************************************************************
|
||||
# * Maverick
|
||||
# ************************************************************************
|
||||
|
||||
class Maverick(PokerShuffle):
|
||||
UNSCORED = True
|
||||
|
||||
def createGame(self):
|
||||
PokerShuffle.createGame(self)
|
||||
r = self.s.rows
|
||||
self.poker_hands = [r[0:5], r[5:10], r[10:15], r[15:20], r[20:25]]
|
||||
|
||||
def updateText(self):
|
||||
if self.preview > 1:
|
||||
return
|
||||
|
||||
for i in range(5):
|
||||
type, value = self.getHandScore(self.poker_hands[i])
|
||||
self.texts.list[i].config(text=self.getNameByScore(value))
|
||||
|
||||
def getNameByScore(self, score):
|
||||
scores = {0: "Nothing",
|
||||
2: "One Pair",
|
||||
5: "Two Pair",
|
||||
10: "3 of a Kind",
|
||||
15: "Straight",
|
||||
20: "Flush",
|
||||
25: "Full House",
|
||||
50: "4 of a Kind",
|
||||
75: "Straight Flush",
|
||||
100: "Royal Flush"}
|
||||
return scores[score]
|
||||
|
||||
def isGameWon(self):
|
||||
for i in range(5):
|
||||
type, value = self.getHandScore(self.poker_hands[i])
|
||||
if value < 15:
|
||||
return False
|
||||
return True
|
||||
|
||||
def checkForWin(self):
|
||||
return Game.checkForWin(self)
|
||||
|
||||
|
||||
# register the game
|
||||
registerGame(GameInfo(139, PokerSquare, "Poker Square",
|
||||
GI.GT_POKER_TYPE | GI.GT_SCORE, 1, 0, GI.SL_MOSTLY_SKILL,
|
||||
|
@ -329,3 +380,6 @@ registerGame(GameInfo(798, PokerSquare1Reserve, "Poker Square (1 Reserve)",
|
|||
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"))
|
||||
registerGame(GameInfo(817, Maverick, "Maverick",
|
||||
GI.GT_POKER_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
|
||||
si={"ncards": 25}))
|
||||
|
|
Loading…
Add table
Reference in a new issue