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

Added Morphy game.

This commit is contained in:
Joe R 2024-02-22 22:00:55 -05:00
parent 6f7c243664
commit 44cf52f0a3
3 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Morphy</h1>
<p>
Beleaguered Castle type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="chessboard.html">Chessboard</a>, but piles are built
up or down by alternate color.

View file

@ -594,7 +594,7 @@ class GI:
('fc-2.20', tuple(range(855, 897))),
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
tuple(range(13160, 13163)) + (16682,)),
('dev', tuple(range(906, 951)) + tuple(range(11017, 11020)) +
('dev', tuple(range(906, 952)) + tuple(range(11017, 11020)) +
tuple(range(5600, 5624)) + tuple(range(18000, 18005)) +
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
)

View file

@ -376,6 +376,7 @@ class CastlesEnd(Bastion):
# ************************************************************************
# * Chessboard
# * Lasker
# * Morphy
# ************************************************************************
class Chessboard_Foundation(SS_FoundationStack):
@ -431,6 +432,20 @@ class Lasker(Chessboard):
max_accept=UNLIMITED_ACCEPTS)
class Morphy_RowStack(UD_AC_RowStack):
def canDropCards(self, stacks):
if self.game.demo:
return UD_AC_RowStack.canDropCards(self, stacks)
for s in self.game.s.foundations:
if s.cards:
return UD_AC_RowStack.canDropCards(self, stacks)
return (None, 0)
class Morphy(Chessboard):
RowStack_Class = StackWrapper(Morphy_RowStack, mod=13)
# ************************************************************************
# * Siegecraft
# * Stronghold
@ -943,3 +958,6 @@ registerGame(GameInfo(831, Siegecraft, "Siegecraft",
registerGame(GameInfo(881, Lasker, "Lasker",
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 1, 0,
GI.SL_SKILL))
registerGame(GameInfo(951, Morphy, "Morphy",
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 1, 0,
GI.SL_SKILL))