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

Added comments -clearthedungeon.py (#407)

* Added comments -clearthedungeon.py

* Added Comments -simplex.py

* Update simplex.py
This commit is contained in:
Sandeepa Dilshan Alagiyawanna 2024-10-24 05:04:23 +05:30 committed by GitHub
parent 1fad63af73
commit 98c9202e34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,43 +21,58 @@
# #
# ---------------------------------------------------------------------------## # ---------------------------------------------------------------------------##
# Importing necessary classes from the `pysollib` package to define the game
# and its components
from pysollib.game import Game from pysollib.game import Game
from pysollib.gamedb import GI, GameInfo, registerGame from pysollib.gamedb import GI, GameInfo, registerGame
from pysollib.layout import Layout from pysollib.layout import Layout
from pysollib.stack import \ from pysollib.stack import (
AbstractFoundationStack, \ AbstractFoundationStack,
BasicRowStack, \ BasicRowStack,
OpenStack, \ OpenStack,
ReserveStack, \ ReserveStack,
TalonStack TalonStack
)
from pysollib.util import ANY_SUIT, JACK, KING, NO_RANK, QUEEN from pysollib.util import ANY_SUIT, JACK, KING, NO_RANK, QUEEN
# ************************************************************************ # ************************************************************************
# * Clear the Dungeon # * Clear the Dungeon (Game Definition)
# ************************************************************************ # ************************************************************************
# Define a custom RowStack class for the "Clear the Dungeon" game
class ClearTheDungeon_RowStack(BasicRowStack): class ClearTheDungeon_RowStack(BasicRowStack):
# Function that checks whether a move (card placement) is valid
def acceptsCards(self, from_stack, cards): def acceptsCards(self, from_stack, cards):
cardnum = 0 cardnum = 0
goal_rank = 0 goal_rank = 0
goal_suit = 0 goal_suit = 0
total = 0 total = 0
# Loop through the cards in the row to establish game rules for
# accepting new cards
for card in self.cards: for card in self.cards:
if card.face_up: if card.face_up: # Only consider face-up cards
if cardnum == 0: if cardnum == 0:
# Set the goal rank and suit based on the first face-up
# card
goal_rank = card.rank + 1 goal_rank = card.rank + 1
goal_suit = card.suit goal_suit = card.suit
elif cardnum == 1: elif cardnum == 1:
# Add a value of 10 if the card is a joker, otherwise
# add its rank
if card.suit == 4: if card.suit == 4:
total += 10 total += 10
else: else:
total += (card.rank + 1) total += (card.rank + 1)
cardnum += 1 cardnum += 1
if cards[0].suit == 4:
# Determine the value of the new card being played
if cards[0].suit == 4: # Joker
new_val = 10 new_val = 10
else: else:
new_val = cards[0].rank + 1 new_val = cards[0].rank + 1
# Ensure the new card follows the rules for valid placement
if cardnum == 1: if cardnum == 1:
if new_val + 10 < goal_rank: if new_val + 10 < goal_rank:
return False return False
@ -68,23 +83,25 @@ class ClearTheDungeon_RowStack(BasicRowStack):
if cards[0].suit not in (goal_suit, 4): if cards[0].suit not in (goal_suit, 4):
return False return False
# If all conditions are satisfied, call the base class function
return BasicRowStack.acceptsCards(self, from_stack, cards) return BasicRowStack.acceptsCards(self, from_stack, cards)
# Define the main game class for "Clear the Dungeon"
class ClearTheDungeon(Game): class ClearTheDungeon(Game):
# #
# game layout # Define the layout of the game
# #
def createGame(self): def createGame(self):
# create layout # Create the game layout
l, s = Layout(self), self.s l, s = Layout(self), self.s
# set window # Set the window size for the game layout
self.setSize(l.XM + 5 * l.XS, self.setSize(l.XM + 5 * l.XS, l.YM + 2 * l.YS + 12 * l.YOFFSET)
l.YM + 2 * l.YS + 12 * l.YOFFSET)
# create stacks # Create different stacks in the game (rows, foundations, reserves,
# talon)
x, y = l.XM, l.YM x, y = l.XM, l.YM
for i in range(4): for i in range(4):
s.rows.append(ClearTheDungeon_RowStack(x, y, self, s.rows.append(ClearTheDungeon_RowStack(x, y, self,
@ -94,42 +111,49 @@ class ClearTheDungeon(Game):
s.foundations.append(AbstractFoundationStack(x, y, self, suit=ANY_SUIT, s.foundations.append(AbstractFoundationStack(x, y, self, suit=ANY_SUIT,
max_move=0, max_accept=0, max_move=0, max_accept=0,
max_cards=52)) max_cards=52))
# Position reserve stacks
x, y = l.XM, self.height - l.YS x, y = l.XM, self.height - l.YS
for i in range(3): for i in range(3):
s.reserves.append(OpenStack(x, y, self, max_cards=1, max_accept=0)) s.reserves.append(OpenStack(x, y, self, max_cards=1, max_accept=0))
x += l.XS x += l.XS
x += l.XS x += l.XS
s.talon = TalonStack(x, y, self) s.talon = TalonStack(x, y, self) # Create the Talon stack
l.createText(s.talon, "sw") l.createText(s.talon, "sw")
y -= l.YS y -= l.YS
s.reserves.append(ReserveStack(x, y, self, max_accept=1, max_move=1, s.reserves.append(ReserveStack(x, y, self, max_accept=1, max_move=1,
max_cards=52)) max_cards=52))
# define stack-groups # Define default stack groups for easier management
l.defaultStackGroups() l.defaultStackGroups()
# Custom shuffle behavior to ensure that Jacks, Queens, and Kings are
# dealt last
def _shuffleHook(self, cards): def _shuffleHook(self, cards):
topcards = [] topcards = []
for c in cards[:]: for c in cards[:]:
if c.rank in (JACK, QUEEN, KING): if c.rank in (JACK, QUEEN, KING):
topcards.append(c) topcards.append(c)
cards.remove(c) cards.remove(c)
topcards.reverse() topcards.reverse() # Reverses the topcards to keep Jacks on top
return cards + topcards return cards + topcards
# Initialize the game and deal the first cards
def startGame(self): def startGame(self):
for r in self.s.rows: for r in self.s.rows:
for j in range(2): for j in range(2):
self.s.talon.dealRow(rows=[r], flip=0, frames=0) self.s.talon.dealRow(rows=[r], flip=0, frames=0)
self.startDealSample() self.startDealSample() # Deals sample cards for the game
self.s.talon.dealRow(rows=self.s.rows) self.s.talon.dealRow(rows=self.s.rows)
self.s.talon.dealRow(rows=self.s.reserves[:3]) self.s.talon.dealRow(rows=self.s.reserves[:3])
# Function to manage the auto-filling of stacks
def fillStack(self, stack): def fillStack(self, stack):
old_state = self.enterState(self.S_FILL) old_state = self.enterState(self.S_FILL)
# Move cards from the row stack to the foundation if certain
# conditions are met
for s in self.s.rows: for s in self.s.rows:
num_cards = 0 num_cards = 0
for c in s.cards: for c in s.cards:
@ -140,6 +164,7 @@ class ClearTheDungeon(Game):
if len(s.cards) > 0: if len(s.cards) > 0:
s.flipMove() s.flipMove()
# If the stack is in the reserves, deal a row from the talon
if stack in self.s.reserves[:3]: if stack in self.s.reserves[:3]:
for stack in self.s.reserves[:3]: for stack in self.s.reserves[:3]:
if stack.cards: if stack.cards:
@ -148,17 +173,19 @@ class ClearTheDungeon(Game):
self.s.talon.dealRow(rows=self.s.reserves[:3], sound=1) self.s.talon.dealRow(rows=self.s.reserves[:3], sound=1)
self.leaveState(old_state) self.leaveState(old_state)
# Check if the game is won
def isGameWon(self): def isGameWon(self):
for s in self.s.rows: for s in self.s.rows:
if len(s.cards) > 0: if len(s.cards) > 0:
return False return False
return True return True
# Return the auto-stacks for automatic card moves
def getAutoStacks(self, event=None): def getAutoStacks(self, event=None):
return ((), (), self.sg.dropstacks) return ((), (), self.sg.dropstacks)
# register the game # Register the game in the game's database
registerGame(GameInfo(909, ClearTheDungeon, "Clear the Dungeon", registerGame(GameInfo(909, ClearTheDungeon, "Clear the Dungeon",
GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_SKILL, GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_SKILL,
subcategory=GI.GS_JOKER_DECK, trumps=list(range(2)))) subcategory=GI.GS_JOKER_DECK, trumps=list(range(2))))