1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/pysollib/games/windmill.py
skomoroh df80ec1047 Initial import.
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@1 efabe8c0-fbe8-4139-b769-b5e6d273206e
2006-05-26 21:25:18 +00:00

270 lines
8.4 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 AbstractHint, DefaultHint, CautiousDefaultHint
# /***********************************************************************
# //
# ************************************************************************/
class Windmill_Foundation(RK_FoundationStack):
def getBottomImage(self):
if self.cap.base_rank == ACE:
return self.game.app.images.getLetter(ACE)
return RK_FoundationStack.getBottomImage(self)
class Windmill_RowStack(ReserveStack):
def acceptsCards(self, from_stack, cards):
if not ReserveStack.acceptsCards(self, from_stack, cards):
return 0
# this stack accepts one card from the Waste pile
return from_stack is self.game.s.waste
# /***********************************************************************
# // Windmill
# ************************************************************************/
class Windmill(Game):
FILL_STACK = True
#
# game layout
#
def createGame(self):
# create layout
l, s = Layout(self, XM=20), self.s
# set window
self.setSize(7*l.XS+l.XM, 5*l.YS+l.YM+l.YM)
# create stacks
x = l.XM
y = l.YM
s.talon = WasteTalonStack(x, y, self, max_rounds=1)
l.createText(s.talon, "ss")
x = x + l.XS
s.waste = WasteStack(x, y, self)
l.createText(s.waste, "ss")
x0, y0 = x + l.XS, y
for d in ((2,0), (2,1), (0,2), (1,2), (3,2), (4,2), (2,3), (2,4)):
x, y = x0 + d[0] * l.XS, y0 + d[1] * l.YS
s.rows.append(Windmill_RowStack(x, y, self))
x, y = x0 + 2 * l.XS, y0 + 2 * l.YS
s.foundations.append(Windmill_Foundation(x, y, self,
mod=13, min_cards=1, max_cards=52))
for d in ((1,0.6), (3,0.6), (1,3.4), (3,3.4)):
x, y = x0 + d[0] * l.XS, y0 + d[1] * l.YS
s.foundations.append(Windmill_Foundation(x, y, self,
base_rank=KING, dir=-1))
# define stack-groups
l.defaultStackGroups()
#
# game overrides
#
def _shuffleHook(self, cards):
for c in cards:
if c.id == 0:
break
cards.remove(c)
return cards + [c]
def startGame(self):
self.startDealSample()
self.s.talon.dealRow(rows=(self.s.foundations[0],))
self.s.talon.dealRow()
self.s.talon.dealCards() # deal first card to WasteStack
def fillStack(self, stack):
if self.FILL_STACK and len(stack.cards) == 0:
if stack is self.s.waste and self.s.talon.cards:
self.s.talon.dealCards()
elif stack in self.s.rows and self.s.waste.cards:
self.s.waste.moveMove(1, stack)
def shallHighlightMatch(self, stack1, card1, stack2, card2):
return (card1.rank + 1 == card2.rank or card2.rank + 1 == card1.rank)
def getHighlightPilesStacks(self):
return ()
def getAutoStacks(self, event=None):
# disable auto drop - this would ruin the whole gameplay
return ((), (), ())
# /***********************************************************************
# // Napoleon's Tomb
# ************************************************************************/
class NapoleonsTomb(Windmill):
FILL_STACK = False
#
# game layout
#
def createGame(self):
# create layout
l, s = Layout(self, XM=20, YM=20), self.s
# set window
self.setSize(5*l.XS+l.XM, 3*l.YS+l.YM+l.YM)
# create stacks
x = l.XM
y = l.YM
s.talon = WasteTalonStack(x, y, self, max_rounds=1)
l.createText(s.talon, "ss")
x = x + l.XS
s.waste = WasteStack(x, y, self)
l.createText(s.waste, "ss")
x0, y0 = x + l.XS, y
for d in ((0,1), (1,0), (1,2), (2,1)):
x, y = x0 + d[0] * l.XS, y0 + d[1] * l.YS
s.rows.append(Windmill_RowStack(x, y, self))
x, y = x0 + l.XS, y0 + l.YS
s.foundations.append(Windmill_Foundation(x, y, self, base_rank=5,
mod=6, min_cards=1, max_cards=24,
max_move=0, dir=-1))
for d in ((0.1, 0.1), (1.9, 0.1), (0.1, 1.9), (1.9, 1.9)):
x, y = x0 + d[0] * l.XS, y0 + d[1] * l.YS
s.foundations.append(Windmill_Foundation(x, y, self,
max_cards=7, base_rank=6, max_move=0))
# define stack-groups
l.defaultStackGroups()
#
# game overrides
#
def _shuffleHook(self, cards):
return cards
def startGame(self):
self.startDealSample()
self.s.talon.dealRow()
self.s.talon.dealCards() # deal first card to WasteStack
# /***********************************************************************
# // Corners
# ************************************************************************/
class Corners(Game):
def createGame(self):
# create layout
l, s = Layout(self, XM=20, YM=20), self.s
# set window
self.setSize(5*l.XS+l.XM, 4*l.YS+3*l.YM)
# create stacks
x, y = l.XM+l.XS, l.YM
s.talon = WasteTalonStack(x, y, self, max_rounds=3)
l.createText(s.talon, "sw")
x += l.XS
s.waste = WasteStack(x, y, self)
l.createText(s.waste, "se")
x0, y0 = l.XM, l.YM+l.YS
i = 0
for d in ((0,0), (4,0), (0,2), (4,2)):
x, y = x0+d[0]*l.XS, y0+d[1]*l.YS
s.foundations.append(SS_FoundationStack(x, y, self, suit=i,
max_move=0, mod=13))
i += 1
for d in ((2,0), (1,1), (2,1), (3,1), (2,2)):
x, y = x0+d[0]*l.XS, y0+d[1]*l.YS
s.rows.append(ReserveStack(x, y, self))
# define stack-groups
l.defaultStackGroups()
def fillStack(self, stack):
if len(stack.cards) == 0:
if stack is self.s.waste and self.s.talon.cards:
self.s.talon.dealCards()
elif stack in self.s.rows and self.s.waste.cards:
self.s.waste.moveMove(1, stack)
def _shuffleHook(self, cards):
suits = []
top_cards = []
for c in cards[:]:
if c.suit not in suits:
suits.append(c.suit)
cards.remove(c)
top_cards.append(c)
if len(suits) == 4:
break
top_cards.sort(lambda a, b: cmp(b.suit, a.suit))
return cards+top_cards
def startGame(self):
self.startDealSample()
self.s.talon.dealRow(rows=self.s.foundations)
self.s.talon.dealRow()
self.s.talon.dealCards() # deal first card to WasteStack
# register the game
registerGame(GameInfo(30, Windmill, "Windmill",
GI.GT_2DECK_TYPE, 2, 0))
registerGame(GameInfo(277, NapoleonsTomb, "Napoleon's Tomb",
GI.GT_1DECK_TYPE, 1, 0))
registerGame(GameInfo(417, Corners, "Corners",
GI.GT_1DECK_TYPE, 1, 2))