mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Fool's Up game.
This commit is contained in:
parent
de50c45145
commit
96a071fca0
4 changed files with 84 additions and 3 deletions
|
@ -8,6 +8,7 @@ Move all cards except the four Aces to the single foundation.
|
|||
|
||||
<h3>Rules</h3>
|
||||
<p>
|
||||
A card is dealt to each of four piles.
|
||||
Any top card that is of lower rank and of the same suit of another
|
||||
top card may be dropped to the foundation. Aces rank high.
|
||||
<p>
|
||||
|
@ -16,6 +17,10 @@ may be filled with any card.
|
|||
<p>
|
||||
When no more moves are possible, click on the talon. One card will be
|
||||
added to each of the playing piles.
|
||||
<p>
|
||||
The game is won if all cards have been moved to the foundations,
|
||||
except the four aces and the fool, which are to be moved to the
|
||||
separate piles.
|
||||
|
||||
<h3>Notes</h3>
|
||||
<p>
|
||||
|
|
31
html-src/rules/foolsup.html
Normal file
31
html-src/rules/foolsup.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<h1>Fool's Up</h1>
|
||||
<p>
|
||||
Tarock type. 1 deck. No redeal.
|
||||
|
||||
<h3>Object</h3>
|
||||
<p>
|
||||
Move all cards except the four Aces and the Fool to the single
|
||||
foundation.
|
||||
|
||||
<h3>Rules</h3>
|
||||
<p>
|
||||
A card is dealt to each of five piles.
|
||||
Any top card that is of lower rank and of the same suit of another
|
||||
top card may be dropped to the foundation. Aces rank high. For
|
||||
the trumps, the skiz, or the fool, is the highest rank.
|
||||
<p>
|
||||
There is no building on the tableau, except that an empty pile
|
||||
may be filled with any card.
|
||||
<p>
|
||||
When no more moves are possible, click on the talon. One card will be
|
||||
added to each of the playing piles.
|
||||
<p>
|
||||
The game is won if all cards have been moved to the foundations,
|
||||
except the four aces and the fool, which are to be moved to the
|
||||
separate piles.
|
||||
|
||||
<h3>Notes</h3>
|
||||
<p>
|
||||
<i>Autodrop</i> is disabled for this game.
|
||||
|
||||
This is a tarock deck variant of <a href="acesup.html">Aces Up</a>.
|
|
@ -600,8 +600,9 @@ class GI:
|
|||
tuple(range(13160, 13163)) + (16682,)),
|
||||
('dev', tuple(range(906, 959)) + tuple(range(5415, 5419)) +
|
||||
tuple(range(5600, 5624)) + tuple(range(11017, 11020)) +
|
||||
tuple(range(18000, 18005)) + tuple(range(19000, 19012)) +
|
||||
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
|
||||
tuple(range(13168, 13169)) + tuple(range(18000, 18005)) +
|
||||
tuple(range(19000, 19012)) + tuple(range(22303, 22311)) +
|
||||
tuple(range(22353, 22361))),
|
||||
)
|
||||
|
||||
# deprecated - the correct way is to or a GI.GT_XXX flag
|
||||
|
|
|
@ -22,17 +22,20 @@
|
|||
# ---------------------------------------------------------------------------##
|
||||
|
||||
from pysollib.gamedb import GI, GameInfo, registerGame
|
||||
from pysollib.games.acesup import AcesUp
|
||||
from pysollib.games.special.tarock import AbstractTarockGame, Grasshopper
|
||||
from pysollib.games.threepeaks import Golf_Waste, ThreePeaksNoScore
|
||||
from pysollib.layout import Layout
|
||||
from pysollib.mfxutil import kwdefault
|
||||
from pysollib.stack import \
|
||||
AbstractFoundationStack, \
|
||||
InitialDealTalonStack, \
|
||||
OpenStack, \
|
||||
ReserveStack, \
|
||||
SS_FoundationStack, \
|
||||
StackWrapper
|
||||
from pysollib.util import ANY_RANK, NO_RANK, UNLIMITED_ACCEPTS, UNLIMITED_MOVES
|
||||
from pysollib.util import ACE, ANY_RANK, NO_RANK,\
|
||||
UNLIMITED_ACCEPTS, UNLIMITED_MOVES
|
||||
|
||||
|
||||
class Tarock_OpenStack(OpenStack):
|
||||
|
@ -273,6 +276,46 @@ class LeGrandeTeton(ThreePeaksNoScore):
|
|||
return False
|
||||
|
||||
|
||||
# ************************************************************************
|
||||
# * Fool's Up
|
||||
# ************************************************************************
|
||||
|
||||
class FoolsUp_Foundation(AbstractFoundationStack):
|
||||
def acceptsCards(self, from_stack, cards):
|
||||
if not AbstractFoundationStack.acceptsCards(self, from_stack, cards):
|
||||
return False
|
||||
c = cards[0]
|
||||
for s in self.game.s.rows:
|
||||
if s is not from_stack and s.cards and s.cards[-1].suit == c.suit:
|
||||
if c.suit == 4:
|
||||
if s.cards[-1].rank > c.rank:
|
||||
return True
|
||||
else:
|
||||
if s.cards[-1].rank > c.rank or s.cards[-1].rank == ACE:
|
||||
# found a higher rank or an Ace on the row stacks
|
||||
return c.rank != ACE
|
||||
return False
|
||||
|
||||
|
||||
class FoolsUp(AcesUp):
|
||||
Foundation_Class = StackWrapper(FoolsUp_Foundation, max_cards=73)
|
||||
|
||||
def createGame(self):
|
||||
AcesUp.createGame(self, rows=5)
|
||||
|
||||
def isGameWon(self):
|
||||
if len(self.s.foundations[0].cards) != 73:
|
||||
return False
|
||||
for s in self.s.rows:
|
||||
if len(s.cards) != 1:
|
||||
return False
|
||||
if s.cards[0].suit == 4 and s.cards[0].rank != 21:
|
||||
return False
|
||||
if s.cards[0].suit < 4 and s.cards[0].rank != ACE:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
# ************************************************************************
|
||||
# * register the games
|
||||
# ************************************************************************
|
||||
|
@ -294,4 +337,5 @@ r(13166, Serpent, 'Serpent', GI.GT_TAROCK | GI.GT_OPEN, 2, 0,
|
|||
GI.SL_MOSTLY_SKILL)
|
||||
r(13167, Rambling, 'Rambling', GI.GT_TAROCK | GI.GT_OPEN, 2, 0,
|
||||
GI.SL_MOSTLY_SKILL)
|
||||
r(13168, FoolsUp, "Fool's Up", GI.GT_TAROCK, 1, 0, GI.SL_LUCK)
|
||||
r(22232, LeGrandeTeton, 'Le Grande Teton', GI.GT_TAROCK, 1, 0, GI.SL_BALANCED)
|
||||
|
|
Loading…
Add table
Reference in a new issue