mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Eighteens game.
This commit is contained in:
parent
65b013e7c8
commit
b42a43fb0f
4 changed files with 105 additions and 3 deletions
22
html-src/rules/eighteens.html
Normal file
22
html-src/rules/eighteens.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<h1>Eighteens</h1>
|
||||||
|
<p>
|
||||||
|
Pairing game type. 2 decks. No redeal.
|
||||||
|
|
||||||
|
<h3>Object</h3>
|
||||||
|
<p>
|
||||||
|
Move all cards to the single foundation.
|
||||||
|
|
||||||
|
<h3>Rules</h3>
|
||||||
|
<p>
|
||||||
|
Twelve cards are dealt to the tableau. Cards are removed in groups of four,
|
||||||
|
consisting of one face card, and three cards of different ranks that total
|
||||||
|
18 - this is done by moving all four cards to a special reserve pile. Aces
|
||||||
|
are removed singly. After each set is removed, the empty spaces are filled
|
||||||
|
from the talon.
|
||||||
|
<p>
|
||||||
|
The game is won if all cards have been discarded.
|
||||||
|
|
||||||
|
<h3>Notes</h3>
|
||||||
|
<p>
|
||||||
|
|
||||||
|
<i>Autodrop</i> is disabled for this game.
|
|
@ -9,7 +9,7 @@ Move all cards to the single foundation.
|
||||||
<h3>Rules</h3>
|
<h3>Rules</h3>
|
||||||
<p>
|
<p>
|
||||||
Sixteen cards are dealt to the tableau. Pairs of cards that are both ranked 9
|
Sixteen cards are dealt to the tableau. Pairs of cards that are both ranked 9
|
||||||
ore lower that total fifteen can be moved to the foundation, and the spaces
|
or lower that total fifteen can be moved to the foundation, and the spaces
|
||||||
are filled from the talon. Larger groups of cards that total 15 can also be
|
are filled from the talon. Larger groups of cards that total 15 can also be
|
||||||
discarded by moving all of them to a special reserve pile.
|
discarded by moving all of them to a special reserve pile.
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -594,7 +594,7 @@ class GI:
|
||||||
('fc-2.20', tuple(range(855, 897))),
|
('fc-2.20', tuple(range(855, 897))),
|
||||||
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
|
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
|
||||||
tuple(range(13160, 13163)) + (16682,)),
|
tuple(range(13160, 13163)) + (16682,)),
|
||||||
('dev', tuple(range(906, 950)) + tuple(range(11017, 11020)) +
|
('dev', tuple(range(906, 951)) + tuple(range(11017, 11020)) +
|
||||||
tuple(range(5600, 5624)) + tuple(range(18000, 18005)) +
|
tuple(range(5600, 5624)) + tuple(range(18000, 18005)) +
|
||||||
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
|
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
|
||||||
)
|
)
|
||||||
|
|
|
@ -538,6 +538,7 @@ class Elevens(Pyramid):
|
||||||
|
|
||||||
RowStack_Class = Elevens_RowStack
|
RowStack_Class = Elevens_RowStack
|
||||||
Reserve_Class = Elevens_Reserve
|
Reserve_Class = Elevens_Reserve
|
||||||
|
Foundation_Class = AbstractFoundationStack
|
||||||
Talon_Class = AutoDealTalonStack
|
Talon_Class = AutoDealTalonStack
|
||||||
Waste_Class = None
|
Waste_Class = None
|
||||||
|
|
||||||
|
@ -562,7 +563,7 @@ class Elevens(Pyramid):
|
||||||
y += layout.YS
|
y += layout.YS
|
||||||
s.waste = self.Waste_Class(x, y, self)
|
s.waste = self.Waste_Class(x, y, self)
|
||||||
x, y = self.width-layout.XS, self.height-layout.YS
|
x, y = self.width-layout.XS, self.height-layout.YS
|
||||||
s.foundations.append(AbstractFoundationStack(x, y, self,
|
s.foundations.append(self.Foundation_Class(x, y, self,
|
||||||
suit=ANY_SUIT, max_accept=0,
|
suit=ANY_SUIT, max_accept=0,
|
||||||
max_move=0, max_cards=52 * self.gameinfo.decks))
|
max_move=0, max_cards=52 * self.gameinfo.decks))
|
||||||
layout.createText(s.foundations[0], 'n')
|
layout.createText(s.foundations[0], 'n')
|
||||||
|
@ -836,6 +837,82 @@ class Fifteens(Elevens):
|
||||||
self.leaveState(old_state)
|
self.leaveState(old_state)
|
||||||
|
|
||||||
|
|
||||||
|
# ************************************************************************
|
||||||
|
# * Eighteens
|
||||||
|
# ************************************************************************
|
||||||
|
|
||||||
|
class Eighteens_RowStack(Elevens_RowStack):
|
||||||
|
|
||||||
|
def acceptsCards(self, from_stack, cards):
|
||||||
|
return False
|
||||||
|
|
||||||
|
def clickHandler(self, event):
|
||||||
|
game = self.game
|
||||||
|
if self.cards and self.cards[0].rank == 0:
|
||||||
|
game.playSample("autodrop", priority=20)
|
||||||
|
self.playMoveMove(1, game.s.foundations[0], sound=False)
|
||||||
|
self.fillStack()
|
||||||
|
return True
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
class Eighteens_Reserve(ReserveStack):
|
||||||
|
def acceptsCards(self, from_stack, cards):
|
||||||
|
for c in self.cards:
|
||||||
|
if c.rank == cards[0].rank:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def updateText(self):
|
||||||
|
if self.game.preview > 1 or self.texts.misc is None:
|
||||||
|
return
|
||||||
|
t = ''
|
||||||
|
if self.cards:
|
||||||
|
t = 0
|
||||||
|
for c in self.cards:
|
||||||
|
if c.rank < JACK:
|
||||||
|
t += c.rank + 1
|
||||||
|
self.texts.misc.config(text=t)
|
||||||
|
|
||||||
|
|
||||||
|
class Eighteens_Foundation(AbstractFoundationStack):
|
||||||
|
def acceptsCards(self, from_stack, cards):
|
||||||
|
if not AbstractFoundationStack.acceptsCards(self, from_stack, cards):
|
||||||
|
return False
|
||||||
|
# We accept any aces.
|
||||||
|
return cards[0].rank == 0
|
||||||
|
|
||||||
|
|
||||||
|
class Eighteens(Fifteens):
|
||||||
|
RowStack_Class = Eighteens_RowStack
|
||||||
|
Reserve_Class = StackWrapper(Eighteens_Reserve, max_cards=4)
|
||||||
|
Foundation_Class = StackWrapper(Eighteens_Foundation, max_accept=1)
|
||||||
|
|
||||||
|
def createGame(self):
|
||||||
|
Elevens.createGame(self, rows=3, cols=4, reserves=1, texts=True)
|
||||||
|
|
||||||
|
def fillStack(self, stack=None):
|
||||||
|
old_state = self.enterState(self.S_FILL)
|
||||||
|
reserve = self.s.reserves[0]
|
||||||
|
if len(reserve.cards) == 0:
|
||||||
|
for r in self.s.rows:
|
||||||
|
if not r.cards and self.s.talon.cards:
|
||||||
|
self.s.talon.flipMove()
|
||||||
|
self.s.talon.moveMove(1, r)
|
||||||
|
else:
|
||||||
|
facecards = 0
|
||||||
|
reserve_sum = 0
|
||||||
|
for c in reserve.cards:
|
||||||
|
if c.rank < JACK:
|
||||||
|
reserve_sum += c.rank + 1
|
||||||
|
else:
|
||||||
|
facecards += 1
|
||||||
|
if reserve_sum == 18 and facecards == 1:
|
||||||
|
self._dropReserve()
|
||||||
|
self.leaveState(old_state)
|
||||||
|
|
||||||
|
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
# * Neptune
|
# * Neptune
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
|
@ -1733,3 +1810,6 @@ registerGame(GameInfo(929, EightCards, "Eight Cards",
|
||||||
altnames=('Acht Karten',)))
|
altnames=('Acht Karten',)))
|
||||||
registerGame(GameInfo(937, TheLuckyNumber, "The Lucky Number",
|
registerGame(GameInfo(937, TheLuckyNumber, "The Lucky Number",
|
||||||
GI.GT_PAIRING_TYPE, 2, 0, GI.SL_LUCK))
|
GI.GT_PAIRING_TYPE, 2, 0, GI.SL_LUCK))
|
||||||
|
registerGame(GameInfo(950, Eighteens, "Eighteens",
|
||||||
|
GI.GT_PAIRING_TYPE, 2, 0, GI.SL_MOSTLY_LUCK,
|
||||||
|
altnames=("Steel Wheels",)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue