1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/pysollib/games/osmosis.py
skomoroh 16934784ba - fixed game `Jane'
- added game `Granada'
- added support accel-keys for buttons of dialogs
- changed widget's styles
- updated russian translation
- updated GAMES_BY_PYSOL_VERSION (gamedb.py)
- other minor fixes



git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@4 39dd0a4e-7c14-0410-91b3-c4f2d318f732
2006-06-08 01:35:18 +00:00

302 lines
9.5 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
# /***********************************************************************
# // Osmosis
# ************************************************************************/
class Osmosis_Foundation(AbstractFoundationStack):
def acceptsCards(self, from_stack, cards):
if not AbstractFoundationStack.acceptsCards(self, from_stack, cards):
return 0
# search foundation with max number of cards
assert len(cards) == 1
max_s, max_cards = None, -1
for s in self.game.s.foundations:
if len(s.cards) > max_cards:
max_s, max_cards = s, len(s.cards)
# if we have less cards, then rank must match the card in this foundation
if len(self.cards) < max_cards:
if cards[0].rank != max_s.cards[len(self.cards)].rank:
return 0
#
return 1
class Osmosis(Game):
#
# game layout
#
def createGame(self, max_rounds=-1, num_deal=1):
# create layout
l, s = Layout(self), self.s
# set window
w, h = 3*l.XM+3*l.XS+(4+13)*l.XOFFSET, l.YM+4*l.YS
self.setSize(w, h)
# create stacks
x, y, = l.XM, l.YM
for i in range(4):
stack = BasicRowStack(x, y, self, max_move=1, max_accept=0)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0
s.rows.append(stack)
y = y + l.YS
x, y, = 2*l.XM+l.XS+4*l.XOFFSET, l.YM
for i in range(4):
stack = Osmosis_Foundation(x, y, self, i, base_rank=ANY_RANK, max_move=0)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0
s.foundations.append(stack)
y = y + l.YS
x, y, = self.width - l.XS, l.YM + l.YS
s.talon = WasteTalonStack(x, y, self, max_rounds=max_rounds, num_deal=num_deal)
l.createText(s.talon, "sw")
y = y + l.YS
s.waste = WasteStack(x, y, self)
l.createText(s.waste, "sw")
# define stack-groups
l.defaultStackGroups()
#
# game overrides
#
def startGame(self, flip=0):
# deal first card to foundation
base_card = self.s.talon.getCard()
n = base_card.suit * self.gameinfo.decks
to_stack = self.s.foundations[n]
self.startDealSample()
self.flipMove(self.s.talon)
self.moveMove(1, self.s.talon, to_stack)
# deal cards
for i in range(3):
self.s.talon.dealRow(flip=flip)
self.s.talon.dealRow()
self.s.talon.dealCards() # deal first card to WasteStack
# /***********************************************************************
# // Peek
# ************************************************************************/
class Peek(Osmosis):
def startGame(self):
Osmosis.startGame(self, flip=1)
# /***********************************************************************
# // Open Peek
# ************************************************************************/
class OpenPeek(Game):
#
# game layout
#
def createGame(self):
# create layout
l, s = Layout(self), self.s
# set window
w, h = max(2*l.XM+2*l.XS+(5+13)*l.XOFFSET, l.XM + 8*l.XS), l.YM+8*l.YS
self.setSize(w, h)
# create stacks
x, y, = l.XM, l.YM
for i in range(4):
stack = BasicRowStack(x, y, self, max_move=1, max_accept=0)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0
s.rows.append(stack)
y += l.YS
x, y, = 2*l.XM+l.XS+5*l.XOFFSET, l.YM
for i in range(4):
stack = Osmosis_Foundation(x, y, self, i, base_rank=ANY_RANK, max_move=0)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0
s.foundations.append(stack)
y += l.YS
y = l.YM + 4*l.YS
for i in range(4):
x = l.XM
for j in range(8):
s.reserves.append(OpenStack(x, y, self, max_accept=0))
x += l.XS
y += l.YS
x, y = w-l.XS, l.YM
s.talon = InitialDealTalonStack(x, y, self)
# define stack-groups
l.defaultStackGroups()
#
# game overrides
#
def startGame(self):
for i in range(5):
self.s.talon.dealRow(frames=0)
self.startDealSample()
self.s.talon.dealRow(rows=self.s.reserves)
# /***********************************************************************
# // Genesis
# ************************************************************************/
class Genesis(Game):
def createGame(self, rows=13, reserves=False):
# create layout
l, s = Layout(self), self.s
# set window
w, h = l.XM+rows*l.XS, l.YM+2*l.YS+20*l.YOFFSET
self.setSize(w, h)
# create stacks
x, y, = l.XM+(rows-4)*l.XS/2, l.YM
for i in range(4):
stack = Osmosis_Foundation(x, y, self, i, base_rank=ANY_RANK, max_move=0)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = 0, l.YOFFSET
s.foundations.append(stack)
x += l.XS
x, y, = l.XM, h-2*l.YS-3*l.YOFFSET
for i in range(rows):
s.rows.append(BasicRowStack(x, y, self))
x += l.XS
x, y, = l.XM, h-l.YS-3*l.YOFFSET
for i in range(rows):
s.rows.append(BasicRowStack(x, y, self))
x += l.XS
if reserves:
s.reserves.append(ReserveStack(l.XM, l.YM, self))
s.reserves.append(ReserveStack(w-l.XS, l.YM, self))
s.talon = InitialDealTalonStack(l.XM, l.YM, self)
# define stack-groups
l.defaultStackGroups()
def startGame(self):
for i in range(3):
self.s.talon.dealRow(rows=self.s.rows[13:], frames=0)
self.startDealSample()
self.s.talon.dealRow(rows=self.s.rows[:13])
class GenesisPlus(Genesis):
def createGame(self):
Genesis.createGame(self, reserves=True)
# /***********************************************************************
# // Bridesmaids
# ************************************************************************/
class Bridesmaids(Game):
def createGame(self):
# create layout
l, s = Layout(self), self.s
# set window
w, h = l.XM+3*l.XS+12*l.XOFFSET, l.YM+4*l.YS
self.setSize(w, h)
# create stacks
x, y = l.XM, l.YM
s.talon = WasteTalonStack(x, y, self, max_rounds=UNLIMITED_REDEALS,
num_deal=3)
l.createText(s.talon, 'se')
y += l.YS
s.waste = WasteStack(x, y, self)
l.createText(s.waste, 'se')
x, y = l.XM+2*l.XS, l.YM
for i in range(4):
stack = Osmosis_Foundation(x, y, self, suit=i,
base_rank=ANY_RANK, max_move=0)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0
s.foundations.append(stack)
y = y + l.YS
# define stack-groups
l.defaultStackGroups()
def startGame(self, flip=0):
# deal first card to foundation
base_card = self.s.talon.getCard()
n = base_card.suit * self.gameinfo.decks
to_stack = self.s.foundations[n]
self.startDealSample()
self.flipMove(self.s.talon)
self.moveMove(1, self.s.talon, to_stack)
self.s.talon.dealCards() # deal first card to WasteStack
# register the game
registerGame(GameInfo(59, Osmosis, "Osmosis",
GI.GT_1DECK_TYPE, 1, -1,
altnames=("Treasure Trove",) ))
registerGame(GameInfo(60, Peek, "Peek",
GI.GT_1DECK_TYPE, 1, -1))
registerGame(GameInfo(298, OpenPeek, "Open Peek",
GI.GT_1DECK_TYPE | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0))
registerGame(GameInfo(370, Genesis, "Genesis",
GI.GT_1DECK_TYPE | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0))
registerGame(GameInfo(371, GenesisPlus, "Genesis +",
GI.GT_1DECK_TYPE | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0))
registerGame(GameInfo(409, Bridesmaids, "Bridesmaids",
GI.GT_1DECK_TYPE, 1, -1))