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

Compare commits

...

3 commits

Author SHA1 Message Date
Joe R
23f41d9553 Clean up images and restore missing images 2024-07-22 19:18:10 -04:00
Joe R
77f1125156 Add Eleven Triangle game 2024-07-19 19:40:42 -04:00
Joe R
b26821048c Prevent moving stacks to the foundation in Ace of Hearts 2024-07-19 18:32:46 -04:00
20 changed files with 78 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 440 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
data/tiles/Jean.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,15 @@
<h1>Eleven Triangle</h1>
<p>
Pairing game type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the single foundation.
<h3>Quick Description</h3>
<p>
Like <a href="triangle.html">Triangle</a>,
but cards are removed that total 11, with face cards
removed in pairs of the same rank. Also, the cards
from the talon are dealt to three waste piles (similar
to <a href="apophis.html">Apophis</a>) with no redeal.

View file

@ -603,7 +603,7 @@ class GI:
tuple(range(13168, 13170)) + tuple(range(18000, 18005)) +
tuple(range(19000, 19012)) + tuple(range(22303, 22311)) +
tuple(range(22353, 22361))),
('dev', tuple(range(961, 969))),
('dev', tuple(range(961, 970))),
)
# deprecated - the correct way is to or a GI.GT_XXX flag

View file

@ -1011,7 +1011,8 @@ class SwissPatience(Gypsy):
class AceOfHearts_Foundation(RK_FoundationStack):
def acceptsCards(self, from_stack, cards):
if not self.cards:
return cards[0].suit == HEART and cards[0].rank == ACE
return len(cards) == 1 and cards[0].suit == HEART and \
cards[0].rank == ACE
return RK_FoundationStack.acceptsCards(self, from_stack, cards)
def getBottomImage(self):
@ -1034,7 +1035,8 @@ class AceOfHearts(Game):
r = l.s.foundations[3]
s.foundations.append(
AceOfHearts_Foundation(r.x, r.y, self, suit=HEART,
max_cards=52, mod=13))
max_cards=52, max_accept=1,
mod=13))
for r in l.s.rows:
s.rows.append(Yukon_SS_RowStack(r.x, r.y, self,
base_rank=KING))

View file

@ -1330,35 +1330,47 @@ class Apophis_RowStack(Pyramid_RowStack):
class Apophis(Pharaohs):
Hint_Class = Apophis_Hint
RowStack_Class = Apophis_RowStack
Waste_Class = Pyramid_Waste
Foundation_Class = Pyramid_Foundation
PYRAMID_Y_FACTOR = 2
INVERT = False
MAX_ROUNDS = 3
def createGame(self):
# create layout
layout, s = Layout(self), self.s
# set window
w = layout.XM + 9*layout.XS
h = layout.YM + 4*layout.YS
cols = 9
if self.INVERT:
cols = 10
w = layout.XM + cols * layout.XS
h = layout.YM + 4 * layout.YS
self.setSize(w, h)
# create stacks
x, y = layout.XM+1.5*layout.XS, layout.YM
s.rows = self._createPyramid(layout, x, y, 7)
if self.INVERT:
s.rows = self._createInvertedPyramid(layout, x, y, 7)
else:
s.rows = self._createPyramid(layout, x, y, 7)
x, y = layout.XM, layout.YM
s.talon = DealReserveRedealTalonStack(x, y, self, max_rounds=3)
s.talon = DealReserveRedealTalonStack(x, y, self,
max_rounds=self.MAX_ROUNDS)
layout.createText(s.talon, 'se')
layout.createRoundText(s.talon, 'ne')
if s.talon.max_rounds > 1:
layout.createRoundText(s.talon, 'ne')
y += layout.YS
for i in range(3):
stack = Pyramid_Waste(x, y, self, max_accept=1)
stack = self.Waste_Class(x, y, self, max_accept=1)
s.reserves.append(stack)
layout.createText(stack, 'se')
y += layout.YS
x, y = self.width - layout.XS, layout.YM
s.foundations.append(Pyramid_Foundation(x, y, self,
s.foundations.append(self.Foundation_Class(x, y, self,
suit=ANY_SUIT, dir=0, base_rank=ANY_RANK,
max_move=0, max_cards=52))
layout.createText(s.foundations[0], 'nw')
@ -1374,6 +1386,43 @@ class Apophis(Pharaohs):
def shallHighlightMatch(self, stack1, card1, stack2, card2):
return card1.rank + card2.rank == 11
# ************************************************************************
# * Eleven Triangle
# ************************************************************************
class ElevenTriangle_StackMethods():
def acceptsCards(self, from_stack, cards):
if self.basicIsBlocked():
return False
if from_stack is self or not self.cards or len(cards) != 1:
return False
c = self.cards[-1]
return c.face_up and cards[0].face_up and \
(cards[0].rank + c.rank == 9 or (cards[0].rank > 9 and
cards[0].rank == c.rank))
def _dropKingClickHandler(self, event):
return 0
class ElevenTriangle_RowStack(ElevenTriangle_StackMethods, Pyramid_RowStack):
pass
class ElevenTriangle_Waste(ElevenTriangle_StackMethods, Pyramid_Waste):
pass
class ElevenTriangle(Apophis):
RowStack_Class = ElevenTriangle_RowStack
Waste_Class = ElevenTriangle_Waste
Foundation_Class = PyramidDozen_Foundation
INVERT = True
MAX_ROUNDS = 1
# ************************************************************************
# * Cheops
# ************************************************************************
@ -1876,3 +1925,5 @@ registerGame(GameInfo(950, Eighteens, "Eighteens",
altnames=("Steel Wheels",)))
registerGame(GameInfo(961, Nines, "Nines",
GI.GT_PAIRING_TYPE, 1, 0, GI.SL_LUCK))
registerGame(GameInfo(969, ElevenTriangle, "Eleven Triangle",
GI.GT_PAIRING_TYPE, 1, 0, GI.SL_MOSTLY_LUCK))