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

Added Carcassonne game.

This commit is contained in:
Joe R 2022-12-28 10:58:12 -05:00
parent ca7a86bb5d
commit c3ba33a1aa
3 changed files with 113 additions and 16 deletions

View file

@ -0,0 +1,31 @@
<h1>Carcassonne</h1>
<p>
Napoleon type. 2 decks. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Rules</h3>
<p>
At the start of the game, an ace and a king of each suit are dealt
to the foundations. The remaining aces and kings are dealt out to
the bottom of the tableau piles. Sixteen cards are dealt in an
additional pile, containing alternating rows of one and two cards,
located in the center, between the fourth and fifth piles. The remaining
cards are dealt to the tableau, but any card that can be moved to
the foundations is moved there immediately after each row is dealt.
<p>
No building is allowed in this center pile, and cards can only
be moved from it if all of their covering cards are removed.
The remaining tableau piles are built up or down by rank, regardless
of suit, with only individual cards allowed to be moved between
tableau piles. Empty piles cannot be filled.
<p>
The foundations with aces are built up by same suit from ace to king,
while the foundations with kings are built down by same suit from
king to ace. The game is won if all cards are moved to the
foundations.
<h3>Strategy</h3>
Remember that you can move cards between foundations.

View file

@ -397,20 +397,20 @@ class GI:
# still missing:
# Ace of Hearts, Agnes Three, Antares, Avenue, Baker's Fan,
# Baker's Spider, Bedeviled, Binding, Black Holes,
# Black Spider, California, Carcassone, Cascade, Club,
# Color Cell, Cornelius, Demons and Thieves, Desert Fox,
# Deuces and Queens, Double Antares, Double Antarctica,
# Double Arctica, Double Baker's Spider, Double Cascade,
# Double Line 8, Double Majesty, Double Spidercells,
# Doublet Cell 5, Doubt, Dream Fan, Dumfries Cell, Falcon Wing,
# Fan Nine, Fanny 6, Four By Ten, FreeCell AK, Gaps Alter,
# Gaps Diff, George V, Grandmother's Clock, In a Frame,
# Inverted FreeCell, Kings, Klondike FreeCell, La Cabane,
# La Double Entente, Little Gazette, Magic FreeCell, Mini Gaps,
# Montreal, Napoleon at Iena, Napoleon at Waterloo,
# Napoleon's Guards, Nationale, Oasis, Opera, Ordered Suits,
# Osmotic FreeCell, Pair FreeCell, Pairs 2, Petal,
# Reserved Thirteens, Sea Spider, Sept Piles 0, Short Solitaire,
# Black Spider, California, Cascade, Club, Color Cell,
# Cornelius, Demons and Thieves, Desert Fox, Deuces and Queens,
# Double Antares, Double Antarctica, Double Arctica,
# Double Baker's Spider, Double Cascade, Double Line 8,
# Double Majesty, Double Spidercells, Doublet Cell 5, Doubt,
# Dream Fan, Dumfries Cell, Falcon Wing, Fan Nine, Fanny 6,
# Four By Ten, FreeCell AK, Gaps Alter, Gaps Diff, George V,
# Grandmother's Clock, In a Frame, Inverted FreeCell, Kings,
# Klondike FreeCell, La Cabane, La Double Entente,
# Little Gazette, Magic FreeCell, Mini Gaps, Montreal,
# Napoleon at Iena, Napoleon at Waterloo, Napoleon's Guards,
# Nationale, Oasis, Opera, Ordered Suits, Osmotic FreeCell,
# Pair FreeCell, Pairs 2, Petal, Reserved Thirteens,
# Sea Spider, Sept Piles 0, Short Solitaire,
# Simple Alternations, Smart Osmosis, Step By Step, Strategy 7,
# Stripped FreeCell, Tarantula, Triple Dispute, Trusty Twenty,
# Two Ways 3, Up Or Down, Versailles, Vertical FreeCell,
@ -425,7 +425,7 @@ class GI:
415, 416, 425, 451, 453, 461, 464, 466, 467, 476, 480, 484,
511, 512, 513, 516, 561, 610, 625, 629, 631, 638, 641, 647,
650, 655, 678, 684, 734, 751, 784, 825, 829, 834, 837, 844,
862, 867, 901,
862, 867, 880, 901,
)),
# xpat2 1.06 (we have 14 out of 16 games)
@ -548,7 +548,7 @@ class GI:
tuple(range(22217, 22219))),
('fc-2.14', tuple(range(811, 827))),
('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))),
('dev', tuple(range(855, 880)))
('dev', tuple(range(855, 881)))
)
# deprecated - the correct way is to or a GI.GT_XXX flag

View file

@ -1163,6 +1163,70 @@ class NapoleonLeavesMoscow(NapoleonTakesMoscow):
self._startDealNumRowsAndDealRowAndCards(4)
# ************************************************************************
# * Carcassonne
# ************************************************************************
class Carcassonne(Game, FirTree_GameMethods):
def createGame(self):
layout, s = Layout(self), self.s
self.setSize(layout.XM + 10 * layout.XS,
layout.YM + 3 * layout.YS + 15 * layout.YOFFSET +
layout.TEXT_HEIGHT)
x, y = layout.XM+layout.XS, layout.YM
for i in range(4):
s.foundations.append(SS_FoundationStack(x, y, self, suit=i))
x += layout.XS
for i in range(4):
s.foundations.append(SS_FoundationStack(x, y, self, suit=i,
dir=-1))
x += layout.XS
x, y = layout.XM, layout.YM+layout.YS
for i in range(2):
for j in range(4):
s.rows.append(UD_RK_RowStack(x, y, self, base_rank=NO_RANK))
x += layout.XS
x += 2*layout.XS
x, y = layout.XM+4*layout.XS, layout.YM+layout.YS
s.reserves += self._createFirTree(layout, x, y)
x, y = layout.XM, self.height - layout.YS - layout.TEXT_HEIGHT
s.talon = InitialDealTalonStack(x, y, self)
# define stack-groups
layout.defaultStackGroups()
def _shuffleHook(self, cards):
return self._shuffleHookMoveToTop(
cards,
lambda c: (c.rank in (ACE, KING), (c.deck, c.rank, c.suit)))
def _fillOne(self):
for r in self.s.rows:
if r.cards:
c = r.cards[-1]
for f in self.s.foundations:
if f.acceptsCards(r, [c]):
self.moveMove(1, r, f, frames=3, shadow=0)
return 1
return 0
def startGame(self):
self.s.talon.dealRow(rows=self.s.foundations, frames=0)
self._startDealNumRows(1)
self.s.talon.dealRow(rows=self.s.reserves, frames=0)
for i in range(9):
self.s.talon.dealRow(frames=3)
while True:
if not self._fillOne():
break
self.s.talon.dealCards()
# ************************************************************************
# * Flake
# * Flake (2 Decks)
@ -1336,3 +1400,5 @@ registerGame(GameInfo(812, Sticko, "Sticko",
ranks=(0, 6, 7, 8, 9, 10, 11, 12)))
registerGame(GameInfo(868, Bobby, "Bobby",
GI.GT_GOLF, 1, 2, GI.SL_LUCK))
registerGame(GameInfo(880, Carcassonne, "Carcassonne",
GI.GT_NAPOLEON | GI.GT_OPEN, 2, 0, GI.SL_BALANCED))