mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Detailed Comments -simplex.py (#408)
* Added comments -clearthedungeon.py * Added Comments -simplex.py * Update simplex.py * Added Detailed Comments -simplex.py * Update simplex.py according to tests
This commit is contained in:
parent
98c9202e34
commit
ad39c3aa22
1 changed files with 27 additions and 12 deletions
|
@ -37,70 +37,85 @@ from pysollib.util import ANY_RANK, ANY_SUIT
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
# Helper function to check if all cards in a sequence have the same rank
|
||||||
def isSameRankSequence(cards):
|
def isSameRankSequence(cards):
|
||||||
c0 = cards[0]
|
c0 = cards[0] # Get the rank of the first card
|
||||||
for c in cards[1:]:
|
for c in cards[1:]:
|
||||||
if c0.rank != c.rank:
|
if c0.rank != c.rank: # Compare ranks of all other cards
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
# Class to define the foundation stack for Simplex
|
||||||
class Simplex_Foundation(AbstractFoundationStack):
|
class Simplex_Foundation(AbstractFoundationStack):
|
||||||
|
# Function to check if group of cards can be accepted into the foundation
|
||||||
def acceptsCards(self, from_stack, cards):
|
def acceptsCards(self, from_stack, cards):
|
||||||
if len(cards) != 4:
|
if len(cards) != 4:
|
||||||
return False
|
return False
|
||||||
return isSameRankSequence(cards)
|
return isSameRankSequence(cards) # Cards must be of the same rank
|
||||||
|
|
||||||
|
|
||||||
|
# Class to define row stack behavior in Simplex
|
||||||
class Simplex_RowStack(SequenceRowStack):
|
class Simplex_RowStack(SequenceRowStack):
|
||||||
|
# Function to check if cards can be dropped into another stack
|
||||||
def canDropCards(self, stacks):
|
def canDropCards(self, stacks):
|
||||||
if len(self.cards) != 4:
|
if len(self.cards) != 4: # Only allows groups of 4 cards
|
||||||
return (None, 0)
|
return (None, 0)
|
||||||
for s in stacks:
|
for s in stacks:
|
||||||
|
# If stack is not the current one and accepts the cards,
|
||||||
|
# return the stack and number of cards
|
||||||
if s is not self and s.acceptsCards(self, self.cards):
|
if s is not self and s.acceptsCards(self, self.cards):
|
||||||
return (s, 4)
|
return (s, 4)
|
||||||
return (None, 0)
|
return (None, 0)
|
||||||
|
|
||||||
|
# Function to check if cards form a valid sequence (same rank)
|
||||||
def _isSequence(self, cards):
|
def _isSequence(self, cards):
|
||||||
return isSameRankSequence(cards)
|
return isSameRankSequence(cards)
|
||||||
|
|
||||||
|
|
||||||
|
# Main game class definition for Simplex
|
||||||
class Simplex(pysollib.game.StartDealRowAndCards, Game):
|
class Simplex(pysollib.game.StartDealRowAndCards, Game):
|
||||||
|
|
||||||
|
# Function to create and initialize the game layout
|
||||||
|
# and stack configurations
|
||||||
def createGame(self, reserves=6):
|
def createGame(self, reserves=6):
|
||||||
# create layout
|
# Create the game layout object
|
||||||
l, s = Layout(self), self.s
|
l, s = Layout(self), self.s
|
||||||
|
|
||||||
# set window
|
# Set window dimensions based on the layout
|
||||||
w, h = l.XM+10*l.XS, l.YM+2*l.YS+4*l.YOFFSET+l.TEXT_HEIGHT
|
w, h = l.XM+10*l.XS, l.YM+2*l.YS+4*l.YOFFSET+l.TEXT_HEIGHT
|
||||||
self.setSize(w, h)
|
self.setSize(w, h)
|
||||||
|
|
||||||
# create stacks
|
# Create and position stacks in the layout
|
||||||
x, y = l.XM, l.YM
|
x, y = l.XM, l.YM
|
||||||
s.talon = WasteTalonStack(x, y, self, max_rounds=1)
|
s.talon = WasteTalonStack(x, y, self, max_rounds=1)
|
||||||
l.createText(s.talon, 's')
|
l.createText(s.talon, 's') # Label the stack
|
||||||
x += l.XS
|
x += l.XS
|
||||||
s.waste = WasteStack(x, y, self)
|
s.waste = WasteStack(x, y, self) # Waste stack
|
||||||
l.createText(s.waste, 's')
|
l.createText(s.waste, 's') # Label the waste stack
|
||||||
x += l.XS
|
x += l.XS
|
||||||
|
# Create the foundation stack with any rank and any suit
|
||||||
stack = Simplex_Foundation(
|
stack = Simplex_Foundation(
|
||||||
x, y, self,
|
x, y, self,
|
||||||
suit=ANY_SUIT, base_rank=ANY_RANK, max_cards=52)
|
suit=ANY_SUIT, base_rank=ANY_RANK, max_cards=52)
|
||||||
|
# Set horizontal offset for the cards to be displayed
|
||||||
xoffset = (self.width-3*l.XS)//51
|
xoffset = (self.width-3*l.XS)//51
|
||||||
stack.CARD_XOFFSET, stack.CARD_YOFFSET = xoffset, 0
|
stack.CARD_XOFFSET, stack.CARD_YOFFSET = xoffset, 0
|
||||||
s.foundations.append(stack)
|
s.foundations.append(stack)
|
||||||
x, y = l.XM, l.YM+l.YS+l.TEXT_HEIGHT
|
x, y = l.XM, l.YM+l.YS+l.TEXT_HEIGHT
|
||||||
|
# Create 9 row stacks for card sequences
|
||||||
for i in range(9):
|
for i in range(9):
|
||||||
s.rows.append(Simplex_RowStack(x, y, self))
|
s.rows.append(Simplex_RowStack(x, y, self))
|
||||||
x += l.XS
|
x += l.XS
|
||||||
|
|
||||||
# define stack-groups
|
# Define stack-groups and set up game structure
|
||||||
l.defaultStackGroups()
|
l.defaultStackGroups()
|
||||||
|
|
||||||
|
# Function to highlight matching card pairs
|
||||||
def shallHighlightMatch(self, stack1, card1, stack2, card2):
|
def shallHighlightMatch(self, stack1, card1, stack2, card2):
|
||||||
return card1.rank == card2.rank
|
return card1.rank == card2.rank
|
||||||
|
|
||||||
|
|
||||||
# register the game
|
# Register the game to make it available in the PySol library
|
||||||
registerGame(GameInfo(436, Simplex, "Simplex",
|
registerGame(GameInfo(436, Simplex, "Simplex",
|
||||||
GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_LUCK))
|
GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_LUCK))
|
||||||
|
|
Loading…
Add table
Reference in a new issue