1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/pysollib/games/katzenschwanz.py
skomoroh 49adfd3513 + new selection type: `by skill level'
+ new experimental options: `randomize_place'
* added columnbreak to favorites menu


git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@11 efabe8c0-fbe8-4139-b769-b5e6d273206e
2006-06-21 21:27:05 +00:00

352 lines
11 KiB
Python

## vim:ts=4:et:nowrap
##
##---------------------------------------------------------------------------##
##
## PySol -- a Python Solitaire game
##
## Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
## Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
## Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING.
## If not, write to the Free Software Foundation, Inc.,
## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
##
## Markus F.X.J. Oberhumer
## <markus@oberhumer.com>
## http://www.oberhumer.com/pysol
##
##---------------------------------------------------------------------------##
__all__ = []
# imports
import sys
# PySol imports
from pysollib.gamedb import registerGame, GameInfo, GI
from pysollib.util import *
from pysollib.stack import *
from pysollib.game import Game
from pysollib.layout import Layout
from pysollib.hint import DefaultHint, FreeCellType_Hint
# /***********************************************************************
# //
# ************************************************************************/
class DerKatzenschwanz(Game):
RowStack_Class = StackWrapper(AC_RowStack, base_rank=NO_RANK)
Hint_Class = FreeCellType_Hint
#
# game layout
#
def createGame(self, rows=9, reserves=8):
# create layout
l, s = Layout(self), self.s
# set size
maxrows = max(rows, reserves)
self.setSize(l.XM + (maxrows+2)*l.XS, l.YM + 6*l.YS)
#
playcards = 4*l.YS / l.YOFFSET
xoffset, yoffset = [], []
for i in range(playcards):
xoffset.append(0)
yoffset.append(l.YOFFSET)
for i in range(104-playcards):
xoffset.append(l.XOFFSET)
yoffset.append(0)
# create stacks
x, y = l.XM + (maxrows-reserves)*l.XS/2, l.YM
for i in range(reserves):
s.reserves.append(ReserveStack(x, y, self))
x = x + l.XS
x, y = l.XM + (maxrows-rows)*l.XS/2, l.YM + l.YS
self.setRegion(s.reserves, (-999, -999, 999999, y - l.XM / 2))
for i in range(rows):
stack = self.RowStack_Class(x, y, self)
stack.CARD_XOFFSET = xoffset
stack.CARD_YOFFSET = yoffset
s.rows.append(stack)
x = x + l.XS
x, y = l.XM + maxrows*l.XS, l.YM
for suit in range(4):
for i in range(2):
s.foundations.append(SS_FoundationStack(x+i*l.XS, y, self, suit=suit))
y = y + l.YS
self.setRegion(self.s.foundations, (x - l.CW / 2, -999, 999999, y), priority=1)
s.talon = InitialDealTalonStack(self.width-3*l.XS/2, self.height-l.YS, self)
# define stack-groups
l.defaultStackGroups()
#
# game overrides
#
def startGame(self):
self.startDealSample()
i = 0
while self.s.talon.cards:
if self.s.talon.cards[-1].rank == KING:
if self.s.rows[i].cards:
i = i + 1
self.s.talon.dealRow(rows=[self.s.rows[i]], frames=4)
def shallHighlightMatch(self, stack1, card1, stack2, card2):
return (card1.color != card2.color and
(card1.rank + 1 == card2.rank or card2.rank + 1 == card1.rank))
# must look at cards
def _getClosestStack(self, cx, cy, stacks, dragstack):
closest, cdist = None, 999999999
for stack in stacks:
if stack.cards and stack is not dragstack:
dist = (stack.cards[-1].x - cx)**2 + (stack.cards[-1].y - cy)**2
else:
dist = (stack.x - cx)**2 + (stack.y - cy)**2
if dist < cdist:
closest, cdist = stack, dist
return closest
# /***********************************************************************
# //
# ************************************************************************/
class DieSchlange(DerKatzenschwanz):
RowStack_Class = StackWrapper(FreeCell_AC_RowStack, base_rank=NO_RANK)
def createGame(self):
DerKatzenschwanz.createGame(self, rows=9, reserves=7)
def startGame(self):
self.startDealSample()
i = 0
while self.s.talon.cards:
c = self.s.talon.cards[-1]
if c.rank == ACE:
to_stack = self.s.foundations[c.suit*2]
if to_stack.cards:
to_stack = self.s.foundations[c.suit*2+1]
else:
if c.rank == KING and self.s.rows[i].cards:
i = i + 1
to_stack = self.s.rows[i]
self.s.talon.dealRow(rows=(to_stack,), frames=4)
# /***********************************************************************
# // Kings
# ************************************************************************/
class Kings(DerKatzenschwanz):
##RowStack_Class = StackWrapper(AC_RowStack, base_rank=NO_RANK)
RowStack_Class = StackWrapper(FreeCell_AC_RowStack, base_rank=NO_RANK)
def createGame(self):
return DerKatzenschwanz.createGame(self, rows=8, reserves=8)
def _shuffleHook(self, cards):
for c in cards[:]:
if c.rank == 12:
cards.remove(c)
break
cards.append(c)
return cards
# /***********************************************************************
# // Retinue
# ************************************************************************/
class Retinue(DieSchlange, Kings):
##RowStack_Class = StackWrapper(AC_RowStack, base_rank=NO_RANK)
RowStack_Class = StackWrapper(FreeCell_AC_RowStack, base_rank=NO_RANK)
def createGame(self):
return DerKatzenschwanz.createGame(self, rows=8, reserves=8)
def _shuffleHook(self, cards):
return Kings._shuffleHook(self, cards)
def startGame(self):
return DieSchlange.startGame(self)
# /***********************************************************************
# // Salic Law
# ************************************************************************/
class SalicLaw_Hint(DefaultHint):
# Score for dropping ncards from stack r to stack t.
def _getDropCardScore(self, score, color, r, t, ncards):
return score+len(r.cards), color
class SalicLaw_Talon(OpenTalonStack):
def canDealCards(self):
return True
def canFlipCard(self):
return False
def dealCards(self, sound=0):
if len(self.cards) == 0:
return 0
old_state = self.game.enterState(self.game.S_DEAL)
rows = self.game.s.rows
c = self.cards[-1]
ri = len([r for r in rows if r.cards])
if c.rank == KING:
to_stack = rows[ri]
else:
to_stack = rows[ri-1]
##frames = (3, 4)[ri > 4]
frames = 3
if not self.game.demo:
self.game.startDealSample()
self.game.moveMove(1, self, to_stack, frames=frames)
self.game.flipMove(to_stack)
if not self.game.demo:
self.game.stopSamples()
self.game.leaveState(old_state)
return 1
class SalicLaw(DerKatzenschwanz):
Hint_Class = SalicLaw_Hint
#
# game layout
#
def createGame(self): #, rows=9, reserves=8):
# create layout
l, s = Layout(self), self.s
# set size
self.setSize(l.XM + 10*l.XS, l.YM + 7*l.YS)
#
playcards = 4*l.YS / l.YOFFSET
xoffset, yoffset = [], []
for i in range(playcards):
xoffset.append(0)
yoffset.append(l.YOFFSET)
for i in range(104-playcards):
xoffset.append(l.XOFFSET)
yoffset.append(0)
# create stacks
x, y = l.XM, l.YM
for i in range(8):
s.foundations.append(AbstractFoundationStack(x, y, self,
suit=ANY_SUIT, max_cards=1, max_move=0, base_rank=QUEEN))
x += l.XS
x, y = l.XM, l.YM+l.YS
for i in range(8):
s.foundations.append(RK_FoundationStack(x, y, self,
suit=ANY_SUIT, base_rank=ACE, max_cards=11))
x += l.XS
x, y = l.XM, l.YM+2*l.YS
self.setRegion(s.foundations[8:], (-999, -999, 999999, y - l.XM / 2))
for i in range(8):
stack = OpenStack(x, y, self, max_move=1)
stack.CARD_XOFFSET = xoffset
stack.CARD_YOFFSET = yoffset
s.rows.append(stack)
x += l.XS
s.talon = SalicLaw_Talon(l.XM+9*l.XS, l.YM, self)
l.createText(s.talon, "ss")
# define stack-groups
l.defaultStackGroups()
#
# game overrides
#
def _shuffleHook(self, cards):
for c in cards[:]:
if c.rank == KING:
cards.remove(c)
break
cards.append(c)
return cards
def startGame(self):
self.startDealSample()
self.s.talon.dealRow(self.s.rows[:1]) # deal King
def isGameWon(self):
for s in self.s.foundations[8:]:
if len(s.cards) != 11:
return False
return True
def getAutoStacks(self, event=None):
if event is None:
# disable auto drop
return (self.sg.dropstacks, (), self.sg.dropstacks)
else:
# rightclickHandler
return (self.sg.dropstacks, self.sg.dropstacks, self.sg.dropstacks)
# /***********************************************************************
# // Deep
# ************************************************************************/
class Deep(DerKatzenschwanz):
RowStack_Class = StackWrapper(AC_RowStack, base_rank=ANY_RANK)
def createGame(self):
return DerKatzenschwanz.createGame(self, rows=8, reserves=8)
def startGame(self):
for i in range(12):
self.s.talon.dealRow(frames=0)
self.startDealSample()
self.s.talon.dealRow()
# register the game
registerGame(GameInfo(141, DerKatzenschwanz, "Cat's Tail",
GI.GT_FREECELL | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL,
altnames=("Der Katzenschwanz",) ))
registerGame(GameInfo(142, DieSchlange, "Snake",
GI.GT_FREECELL | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL,
altnames=("Die Schlange",) ))
registerGame(GameInfo(279, Kings, "Kings",
GI.GT_FREECELL | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(286, Retinue, "Retinue",
GI.GT_FREECELL | GI.GT_OPEN | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(299, SalicLaw, "Salic Law",
GI.GT_2DECK_TYPE, 2, 0, GI.SL_MOSTLY_LUCK))
registerGame(GameInfo(442, Deep, "Deep",
GI.GT_FREECELL | GI.GT_OPEN | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))