mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
1035 lines
33 KiB
Python
1035 lines
33 KiB
Python
#!/usr/bin/env python
|
|
# -*- mode: python; coding: utf-8; -*-
|
|
# ---------------------------------------------------------------------------##
|
|
#
|
|
# Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
|
|
# Copyright (C) 2003 Mt. Hood Playing Card Co.
|
|
# Copyright (C) 2005-2009 Skomoroh
|
|
#
|
|
# 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 3 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. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# ---------------------------------------------------------------------------##
|
|
|
|
__all__ = []
|
|
|
|
# imports
|
|
import sys
|
|
|
|
# PySol imports
|
|
from pysollib.gamedb import registerGame, GameInfo, GI
|
|
from pysollib.util import *
|
|
from pysollib.mfxutil import kwdefault
|
|
from pysollib.stack import *
|
|
from pysollib.game import Game
|
|
from pysollib.layout import Layout
|
|
from pysollib.hint import AbstractHint, DefaultHint, CautiousDefaultHint
|
|
from pysollib.hint import KlondikeType_Hint, YukonType_Hint
|
|
|
|
from spider import Spider_SS_Foundation, Spider_RowStack, Spider_Hint
|
|
|
|
|
|
# ************************************************************************
|
|
# * Gypsy
|
|
# ************************************************************************
|
|
|
|
class Gypsy(Game):
|
|
Layout_Method = Layout.gypsyLayout
|
|
Talon_Class = DealRowTalonStack
|
|
Foundation_Class = SS_FoundationStack
|
|
RowStack_Class = AC_RowStack
|
|
Hint_Class = KlondikeType_Hint
|
|
|
|
def createGame(self, **layout):
|
|
# create layout
|
|
l, s = Layout(self), self.s
|
|
kwdefault(layout, rows=8, waste=0, texts=1)
|
|
self.Layout_Method(l, **layout)
|
|
self.setSize(l.size[0], l.size[1])
|
|
# create stacks
|
|
s.talon = self.Talon_Class(l.s.talon.x, l.s.talon.y, self)
|
|
if l.s.waste:
|
|
s.waste = WasteStack(l.s.waste.x, l.s.waste.y, self)
|
|
for r in l.s.foundations:
|
|
s.foundations.append(self.Foundation_Class(r.x, r.y, self, suit=r.suit))
|
|
for r in l.s.rows:
|
|
s.rows.append(self.RowStack_Class(r.x, r.y, self))
|
|
# default
|
|
l.defaultAll()
|
|
|
|
def startGame(self):
|
|
for i in range(2):
|
|
self.s.talon.dealRow(flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_AC
|
|
|
|
|
|
# ************************************************************************
|
|
# * Giant
|
|
# ************************************************************************
|
|
|
|
class Giant_Foundation(SS_FoundationStack):
|
|
def canMoveCards(self, cards):
|
|
if not SS_FoundationStack.canMoveCards(self, cards):
|
|
return False
|
|
# can only move cards if the Talon is empty
|
|
return len(self.game.s.talon.cards) == 0
|
|
|
|
|
|
class Giant(Gypsy):
|
|
Foundation_Class = Giant_Foundation
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Irmgard
|
|
# ************************************************************************
|
|
|
|
class Irmgard_Talon(TalonStack):
|
|
# A single click deals 9 (or 7) new cards to the RowStacks.
|
|
def dealCards(self, sound=False):
|
|
if self.cards:
|
|
if len(self.cards) > 7:
|
|
c = self.dealRow(sound=sound)
|
|
else:
|
|
c = self.dealRow(self.game.s.rows[1:8], sound=sound)
|
|
return c
|
|
return 0
|
|
|
|
|
|
class Irmgard(Gypsy):
|
|
GAME_VERSION = 2
|
|
|
|
Layout_Method = Layout.harpLayout
|
|
Talon_Class = Irmgard_Talon
|
|
RowStack_Class = KingAC_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=9, playcards=19)
|
|
|
|
def startGame(self):
|
|
r = self.s.rows
|
|
for i in range(1, 5):
|
|
self.s.talon.dealRow(rows=r[i:len(r)-i], flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Die Königsbergerin
|
|
# ************************************************************************
|
|
|
|
class DieKoenigsbergerin_Talon(DealRowTalonStack):
|
|
# all Aces go to Foundations
|
|
dealToStacks = DealRowTalonStack.dealToStacksOrFoundations
|
|
|
|
|
|
class DieKoenigsbergerin(Gypsy):
|
|
Talon_Class = DieKoenigsbergerin_Talon
|
|
Foundation_Class = StackWrapper(SS_FoundationStack, max_move=0)
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
for i in range(3):
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Die Russische
|
|
# ************************************************************************
|
|
|
|
class DieRussische_Foundation(AbstractFoundationStack):
|
|
def acceptsCards(self, from_stack, cards):
|
|
if not AbstractFoundationStack.acceptsCards(self, from_stack, cards):
|
|
return False
|
|
if self.cards:
|
|
# check the rank - an ACE equals a Six
|
|
rank = self.cards[-1].rank
|
|
if rank == ACE:
|
|
rank = 5
|
|
if (rank + self.cap.dir) % self.cap.mod != cards[0].rank:
|
|
return False
|
|
return True
|
|
|
|
|
|
class DieRussische_RowStack(AC_RowStack):
|
|
def acceptsCards(self, from_stack, cards):
|
|
if not AC_RowStack.acceptsCards(self, from_stack, cards):
|
|
return False
|
|
# when empty, only accept a single card
|
|
return self.cards or len(cards) == 1
|
|
|
|
|
|
class DieRussische(Gypsy):
|
|
Talon_Class = InitialDealTalonStack
|
|
Foundation_Class = StackWrapper(DieRussische_Foundation, min_cards=1, max_cards=8)
|
|
RowStack_Class = DieRussische_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=7, texts=0)
|
|
|
|
def _shuffleHook(self, cards):
|
|
# move one Ace to bottom of the Talon (i.e. last card to be dealt)
|
|
return self._shuffleHookMoveToBottom(cards, lambda c: (c.rank == 0, c.suit), 1)
|
|
|
|
def startGame(self):
|
|
for i in range(6):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
for i in range(3):
|
|
self.s.talon.dealRow()
|
|
c = self.s.talon.cards[-1]
|
|
self.s.talon.dealRow(rows=(self.s.foundations[c.suit*2],))
|
|
|
|
|
|
# ************************************************************************
|
|
# * Miss Milligan
|
|
# * Imperial Guards
|
|
# ************************************************************************
|
|
|
|
class MissMilligan_ReserveStack(AC_RowStack):
|
|
def acceptsCards(self, from_stack, cards):
|
|
if not AC_RowStack.acceptsCards(self, from_stack, cards):
|
|
return False
|
|
# Note that this reserve stack accepts sequences if both
|
|
# the reserve stack and the Talon are empty.
|
|
return len(self.cards) == 0 and len(self.game.s.talon.cards) == 0
|
|
|
|
getBottomImage = Stack._getReserveBottomImage
|
|
|
|
|
|
class MissMilligan(Gypsy):
|
|
Foundation_Class = StackWrapper(SS_FoundationStack, max_move=0)
|
|
RowStack_Class = KingAC_RowStack
|
|
ReserveStack_Class = MissMilligan_ReserveStack
|
|
|
|
def createGame(self, rows=8, reserves=1):
|
|
# create layout
|
|
l, s = Layout(self), self.s
|
|
|
|
# set window
|
|
self.setSize(l.XM + (1+max(8,rows))*l.XS, l.YM + (1+max(4, reserves))*l.YS+l.TEXT_HEIGHT)
|
|
|
|
# create stacks
|
|
x, y = l.XM, l.YM
|
|
s.talon = self.Talon_Class(x, y, self)
|
|
for i in range(8):
|
|
x = x + l.XS
|
|
s.foundations.append(self.Foundation_Class(x, y, self, suit=i/2))
|
|
x, y = l.XM, y + l.YS
|
|
rx, ry = x + l.XS - l.CW/2, y - l.CH/2
|
|
for i in range(reserves):
|
|
s.reserves.append(self.ReserveStack_Class(x, y+l.TEXT_HEIGHT, self))
|
|
y = y + l.YS
|
|
l.createText(s.talon, "s")
|
|
if s.reserves:
|
|
self.setRegion(s.reserves, (-999, ry+l.TEXT_HEIGHT, rx-1, 999999))
|
|
else:
|
|
rx = -999
|
|
x, y = l.XM + (8-rows)*l.XS/2, l.YM + l.YS
|
|
for i in range(rows):
|
|
x = x + l.XS
|
|
s.rows.append(self.RowStack_Class(x, y, self))
|
|
self.setRegion(s.rows, (rx, ry, 999999, 999999))
|
|
|
|
# define stack-groups
|
|
l.defaultStackGroups()
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
class ImperialGuards(MissMilligan):
|
|
RowStack_Class = AC_RowStack
|
|
|
|
|
|
# ************************************************************************
|
|
# * Nomad
|
|
# ************************************************************************
|
|
|
|
class Nomad(MissMilligan):
|
|
Foundation_Class = SS_FoundationStack
|
|
RowStack_Class = AC_RowStack
|
|
ReserveStack_Class = ReserveStack
|
|
|
|
def startGame(self):
|
|
for i in range(3):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Milligan Cell
|
|
# ************************************************************************
|
|
|
|
class MilliganCell(MissMilligan):
|
|
ReserveStack_Class = ReserveStack
|
|
|
|
def createGame(self):
|
|
MissMilligan.createGame(self, reserves=4)
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Milligan Harp
|
|
# * Carlton
|
|
# * Steve
|
|
# ************************************************************************
|
|
|
|
class MilliganHarp(Gypsy):
|
|
Foundation_Class = StackWrapper(SS_FoundationStack, max_move=0)
|
|
|
|
def startGame(self, flip=0):
|
|
for i in range(len(self.s.rows)):
|
|
self.s.talon.dealRow(rows=self.s.rows[i+1:], flip=flip, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
class Carlton(MilliganHarp):
|
|
def startGame(self):
|
|
MilliganHarp.startGame(self, flip=1)
|
|
|
|
|
|
class Steve(Carlton):
|
|
Hint_Class = Spider_Hint
|
|
RowStack_Class = Spider_SS_RowStack
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_RK
|
|
getQuickPlayScore = Game._getSpiderQuickPlayScore
|
|
|
|
|
|
# ************************************************************************
|
|
# * Lexington Harp
|
|
# * Brunswick
|
|
# * Mississippi
|
|
# * Griffon
|
|
# ************************************************************************
|
|
|
|
class LexingtonHarp(MilliganHarp):
|
|
GAME_VERSION = 2
|
|
RowStack_Class = Yukon_AC_RowStack
|
|
Hint_Class = YukonType_Hint
|
|
def getHighlightPilesStacks(self):
|
|
return ()
|
|
|
|
|
|
class Brunswick(LexingtonHarp):
|
|
def startGame(self):
|
|
LexingtonHarp.startGame(self, flip=1)
|
|
|
|
|
|
class Mississippi(LexingtonHarp):
|
|
def createGame(self):
|
|
LexingtonHarp.createGame(self, rows=7)
|
|
|
|
|
|
class Griffon(Mississippi):
|
|
def startGame(self):
|
|
Mississippi.startGame(self, flip=1)
|
|
|
|
|
|
# ************************************************************************
|
|
# * Blockade
|
|
# * Phantom Blockade
|
|
# ************************************************************************
|
|
|
|
class Blockade(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
RowStack_Class = SS_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=12)
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
def fillStack(self, stack):
|
|
if stack in self.s.rows and not stack.cards and self.s.talon.cards:
|
|
old_state = self.enterState(self.S_FILL)
|
|
self.s.talon.flipMove()
|
|
self.s.talon.moveMove(1, stack)
|
|
self.leaveState(old_state)
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_SS
|
|
|
|
|
|
class PhantomBlockade(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
RowStack_Class = KingAC_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=13, playcards=24)
|
|
|
|
def startGame(self):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Cone
|
|
# ************************************************************************
|
|
|
|
class Cone_Talon(DealRowTalonStack):
|
|
def canDealCards(self):
|
|
if not DealRowTalonStack.canDealCards(self):
|
|
return False
|
|
if len(self.cards) == 4:
|
|
return True
|
|
for r in self.game.s.rows:
|
|
if not r.cards:
|
|
return False
|
|
return True
|
|
|
|
def dealCards(self, sound=False):
|
|
rows = self.game.s.rows
|
|
if len(self.cards) == 4:
|
|
rows = self.game.s.reserves
|
|
return self.dealRowAvail(rows=rows, sound=sound)
|
|
|
|
|
|
class Cone(Gypsy):
|
|
|
|
def createGame(self):
|
|
# create layout
|
|
l, s = Layout(self), self.s
|
|
|
|
# set window
|
|
self.setSize(l.XM+9*l.XS, 3*l.YM+5*l.YS)
|
|
|
|
# create stacks
|
|
x, y = l.XM, l.YM
|
|
s.talon = Cone_Talon(x, y, self)
|
|
l.createText(s.talon, 's')
|
|
y += l.YS+2*l.YM
|
|
for i in range(4):
|
|
s.reserves.append(OpenStack(x, y, self, max_accept=0))
|
|
y += l.YS
|
|
x, y = l.XM+l.XS, l.YM
|
|
for i in range(7):
|
|
s.rows.append(AC_RowStack(x, y, self, mod=13))
|
|
x += l.XS
|
|
for i in range(4):
|
|
s.foundations.append(SS_FoundationStack(x, y, self, suit=i,
|
|
mod=13, max_cards=26))
|
|
y += l.YS
|
|
|
|
# define stack-groups
|
|
l.defaultStackGroups()
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
for i in (1, 2, 3):
|
|
self.s.talon.dealRow(rows=self.s.rows[i:-i])
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_ACW
|
|
|
|
|
|
# ************************************************************************
|
|
# * Surprise
|
|
# ************************************************************************
|
|
|
|
class Surprise_ReserveStack(ReserveStack):
|
|
def acceptsCards(self, from_stack, cards):
|
|
if not ReserveStack.acceptsCards(self, from_stack, cards):
|
|
return False
|
|
return len(self.game.s.talon.cards) == 0
|
|
|
|
class Surprise(Gypsy):
|
|
|
|
def createGame(self, rows=8, reserves=1):
|
|
# create layout
|
|
l, s = Layout(self), self.s
|
|
|
|
# set window
|
|
self.setSize(l.XM+11*l.XS, l.YM+2*l.YS+12*l.YOFFSET+20)
|
|
|
|
# create stacks
|
|
x, y = l.XM, l.YM
|
|
s.talon = self.Talon_Class(x, y, self)
|
|
l.createText(s.talon, 's')
|
|
x += l.XS
|
|
stack = Surprise_ReserveStack(x, y, self, max_cards=3)
|
|
xoffset = min(l.XOFFSET, l.XS/3)
|
|
stack.CARD_XOFFSET = xoffset
|
|
s.reserves.append(stack)
|
|
x += 2*l.XS
|
|
for i in range(8):
|
|
s.foundations.append(SS_FoundationStack(x, y, self, suit=i/2))
|
|
x += l.XS
|
|
x, y = l.XM, l.YM+l.YS+l.TEXT_HEIGHT
|
|
for i in range(11):
|
|
s.rows.append(KingAC_RowStack(x, y, self))
|
|
x += l.XS
|
|
|
|
# define stack-groups
|
|
l.defaultStackGroups()
|
|
|
|
def startGame(self):
|
|
for i in range(1, 6):
|
|
self.s.talon.dealRow(rows=self.s.rows[i:-i], flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Elba
|
|
# ************************************************************************
|
|
|
|
class Elba(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
RowStack_Class = KingAC_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=10)
|
|
|
|
def startGame(self):
|
|
for i in range(4):
|
|
self.s.talon.dealRow(flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Millie
|
|
# ************************************************************************
|
|
|
|
class Millie(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, playcards=24)
|
|
|
|
def startGame(self):
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Hypotenuse
|
|
# * Eternal Triangle
|
|
# * Right Triangle
|
|
# ************************************************************************
|
|
|
|
class Hypotenuse(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
RowStack_Class = KingAC_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=10, playcards=24)
|
|
|
|
def startGame(self, flip=0, reverse=1):
|
|
for i in range(1, 10):
|
|
self.s.talon.dealRow(rows=self.s.rows[:i], flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
class EternalTriangle(Hypotenuse):
|
|
|
|
def startGame(self, flip=0, reverse=1):
|
|
for i in range(1, 10):
|
|
self.s.talon.dealRow(rows=self.s.rows[i:], frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
class RightTriangle_Talon(OpenStack, DealRowTalonStack):
|
|
def __init__(self, x, y, game, max_rounds=1, num_deal=1, **cap):
|
|
kwdefault(cap, max_move=1, max_accept=1, max_cards=999999)
|
|
Stack.__init__(self, x, y, game, cap=cap)
|
|
self.max_rounds = max_rounds
|
|
self.num_deal = num_deal
|
|
self.round = 1
|
|
self.base_cards = [] # for DealBaseCard_StackMethods
|
|
|
|
def clickHandler(self, event):
|
|
if self.cards and not self.cards[-1].face_up:
|
|
return self.game.dealCards(sound=True)
|
|
return OpenStack.clickHandler(self, event)
|
|
|
|
def canDealCards(self):
|
|
if not DealRowTalonStack.canDealCards(self):
|
|
return False
|
|
if self.cards and self.cards[-1].face_up:
|
|
return False
|
|
return True
|
|
|
|
def canFlipCard(self):
|
|
return False
|
|
|
|
getBottomImage = Stack._getReserveBottomImage
|
|
|
|
def getHelp(self):
|
|
return DealRowTalonStack.getHelp(self)
|
|
|
|
|
|
class RightTriangle(Hypotenuse):
|
|
Talon_Class = RightTriangle_Talon
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=10, playcards=24)
|
|
self.sg.dropstacks.append(self.s.talon)
|
|
self.sg.openstacks.append(self.s.talon)
|
|
self.sg.reservestacks.append(self.s.talon)
|
|
|
|
|
|
# ************************************************************************
|
|
# * Trapdoor
|
|
# ************************************************************************
|
|
|
|
class Trapdoor_Talon(DealRowTalonStack):
|
|
def dealCards(self, sound=False):
|
|
if not self.cards:
|
|
return 0
|
|
if sound:
|
|
self.game.startDealSample()
|
|
n = 0
|
|
rows = self.game.s.rows
|
|
reserves = self.game.s.reserves
|
|
for i in range(len(rows)):
|
|
r1 = reserves[i]
|
|
r2 = rows[i]
|
|
if r1.cards:
|
|
r1.moveMove(1, r2)
|
|
n += 1
|
|
n += self.dealRowAvail(rows=self.game.s.reserves, sound=False)
|
|
if sound:
|
|
self.game.stopSamples()
|
|
return n
|
|
|
|
|
|
class Trapdoor(Gypsy):
|
|
Foundation_Class = SS_FoundationStack
|
|
RowStack_Class = AC_RowStack
|
|
|
|
def createGame(self, rows=8):
|
|
kw = {'rows' : rows,
|
|
'waste' : 0,
|
|
'texts' : 1,
|
|
'reserves' : rows,}
|
|
Layout(self).createGame(layout_method = Layout.gypsyLayout,
|
|
talon_class = Trapdoor_Talon,
|
|
foundation_class = self.Foundation_Class,
|
|
row_class = self.RowStack_Class,
|
|
reserve_class = OpenStack,
|
|
**kw
|
|
)
|
|
|
|
def startGame(self):
|
|
Gypsy.startGame(self)
|
|
self.s.talon.dealCards()
|
|
|
|
|
|
class TrapdoorSpider(Trapdoor):
|
|
Foundation_Class = Spider_SS_Foundation
|
|
RowStack_Class = Spider_RowStack
|
|
Hint_Class = Spider_Hint
|
|
|
|
def createGame(self):
|
|
Trapdoor.createGame(self, rows=10)
|
|
|
|
def startGame(self, flip=0):
|
|
for i in range(3):
|
|
self.s.talon.dealRow(flip=flip, frames=0)
|
|
r = self.s.rows
|
|
rows = (r[0], r[3], r[6], r[9])
|
|
self.s.talon.dealRow(rows=rows, flip=flip, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
self.s.talon.dealCards()
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_RK
|
|
getQuickPlayScore = Game._getSpiderQuickPlayScore
|
|
|
|
|
|
# ************************************************************************
|
|
# * Flamenco
|
|
# ************************************************************************
|
|
|
|
class Flamenco(Gypsy):
|
|
|
|
def createGame(self):
|
|
kw = {'rows' : 8,
|
|
'waste' : 0,
|
|
'texts' : 1,}
|
|
foundation_class = (
|
|
SS_FoundationStack,
|
|
StackWrapper(SS_FoundationStack, base_rank=KING, dir=-1))
|
|
Layout(self).createGame(layout_method = Layout.gypsyLayout,
|
|
talon_class = DealRowTalonStack,
|
|
foundation_class = foundation_class,
|
|
row_class = AC_RowStack,
|
|
**kw
|
|
)
|
|
|
|
def _shuffleHook(self, cards):
|
|
return self._shuffleHookMoveToTop(cards,
|
|
lambda c: (c.rank in (ACE, KING) and c.deck == 0, (c.suit,c.rank)))
|
|
|
|
def startGame(self):
|
|
self.s.talon.dealRow(rows=self.s.foundations, frames=0)
|
|
for i in range(2):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Eclipse
|
|
# ************************************************************************
|
|
|
|
class Eclipse(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
RowStack_Class = SS_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=13)
|
|
|
|
def startGame(self):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.s.talon.dealRow(frames=0)
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_SS
|
|
|
|
|
|
# ************************************************************************
|
|
# * Brazilian Patience
|
|
# ************************************************************************
|
|
|
|
class BrazilianPatience(Gypsy):
|
|
Layout_Method = Layout.klondikeLayout
|
|
RowStack_Class = KingAC_RowStack
|
|
|
|
def createGame(self):
|
|
Gypsy.createGame(self, rows=10, playcards=22)
|
|
|
|
def startGame(self, flip=0, reverse=1):
|
|
for i in range(1, 10):
|
|
self.s.talon.dealRow(rows=self.s.rows[i:], flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
|
|
# ************************************************************************
|
|
# * Leprechaun
|
|
# ************************************************************************
|
|
|
|
class Leprechaun_Reserve(OpenStack):
|
|
def canFlipCard(self):
|
|
if not OpenStack.canFlipCard(self):
|
|
return False
|
|
i = list(self.game.s.reserves).index(self)
|
|
return len(self.game.s.foundations[i].cards) != 0
|
|
|
|
|
|
class Leprechaun(Game):
|
|
|
|
def createGame(self):
|
|
|
|
# create layout
|
|
l, s = Layout(self), self.s
|
|
|
|
# set window
|
|
self.setSize(l.XM+9.5*l.XS, l.YM+3*l.YS+l.TEXT_HEIGHT+12*l.YOFFSET)
|
|
|
|
# create stacks
|
|
x, y = l.XM+1.5*l.XS, l.TEXT_HEIGHT
|
|
for i in range(8):
|
|
stack = Leprechaun_Reserve(x, y, self)
|
|
s.reserves.append(stack)
|
|
l.createText(stack, 'n')
|
|
x += l.XS
|
|
|
|
x, y = l.XM+1.5*l.XS, l.YS+l.TEXT_HEIGHT
|
|
for i in range(8):
|
|
s.foundations.append(SS_FoundationStack(x, y, self, suit=i/2))
|
|
x += l.XS
|
|
|
|
x, y = l.XM+1.5*l.XS, 2*l.YS+l.TEXT_HEIGHT
|
|
for i in range(8):
|
|
s.rows.append(AC_RowStack(x, y, self))
|
|
x += l.XS
|
|
|
|
s.talon = DealRowTalonStack(l.XM, l.YM, self)
|
|
l.createText(s.talon, 's')
|
|
|
|
# define stack-groups
|
|
l.defaultStackGroups()
|
|
|
|
def startGame(self):
|
|
for i in range(4):
|
|
self.s.talon.dealRow(rows=self.s.reserves, flip=0, frames=0)
|
|
self.s.talon.dealRow(flip=0, frames=0)
|
|
self.s.talon.dealRow(flip=0, frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_AC
|
|
|
|
|
|
# ************************************************************************
|
|
# * Locked Cards
|
|
# * Topsy-Turvy Queens
|
|
# ************************************************************************
|
|
|
|
class LockedCards_Reserve(OpenStack):
|
|
def canFlipCard(self):
|
|
if not OpenStack.canFlipCard(self):
|
|
return False
|
|
i = list(self.game.s.reserves).index(self)
|
|
return len(self.game.s.foundations[i].cards) == 13
|
|
|
|
|
|
class LockedCards_Foundation(SS_FoundationStack):
|
|
def acceptsCards(self, from_stack, cards):
|
|
if not SS_FoundationStack.acceptsCards(self, from_stack, cards):
|
|
return False
|
|
if self.cards:
|
|
# check suit
|
|
return self.cards[-1].suit == cards[0].suit
|
|
return True
|
|
|
|
|
|
class LockedCards(Game):
|
|
Foundation_Class = LockedCards_Foundation
|
|
RowStack_Class = AC_RowStack
|
|
|
|
def createGame(self):
|
|
|
|
# create layout
|
|
l, s = Layout(self), self.s
|
|
|
|
# set window
|
|
self.setSize(l.XM+10*l.XS, l.YM+3*l.YS+14*l.YOFFSET)
|
|
|
|
# create stacks
|
|
x, y = l.XM, l.YM
|
|
for i in range(7):
|
|
s.reserves.append(LockedCards_Reserve(x, y, self))
|
|
x += l.XS
|
|
|
|
x, y = l.XM, l.YM+l.YS
|
|
for i in range(8):
|
|
s.foundations.append(self.Foundation_Class(x, y, self,
|
|
suit=ANY_SUIT, max_move=0))
|
|
x += l.XS
|
|
|
|
x, y = l.XM, l.YM+2*l.YS
|
|
for i in range(8):
|
|
s.rows.append(self.RowStack_Class(x, y, self))
|
|
x += l.XS
|
|
|
|
x, y = self.width-l.XS, self.height-l.YS
|
|
s.talon = WasteTalonStack(x, y, self, max_rounds=3)
|
|
l.createText(s.talon, 'n')
|
|
l.createRoundText(s.talon, 'nnn')
|
|
|
|
x -= l.XS
|
|
s.waste = WasteStack(x, y, self)
|
|
l.createText(s.waste, 'n')
|
|
|
|
# define stack-groups
|
|
l.defaultStackGroups()
|
|
|
|
|
|
def startGame(self, rows=5):
|
|
self.s.talon.dealRow(rows=self.s.reserves, flip=0, frames=0)
|
|
for i in range(rows-1):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
self.s.talon.dealCards()
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_AC
|
|
|
|
|
|
class TopsyTurvyQueens(LockedCards):
|
|
Foundation_Class = StackWrapper(LockedCards_Foundation,
|
|
base_rank=KING, mod=13)
|
|
RowStack_Class = StackWrapper(SS_RowStack, mod=13)
|
|
|
|
def startGame(self):
|
|
LockedCards.startGame(self, rows=4)
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_SSW
|
|
|
|
|
|
# ************************************************************************
|
|
# * Thirty
|
|
# ************************************************************************
|
|
|
|
class Thirty_RowStack(BasicRowStack):
|
|
def acceptsCards(self, from_stack, cards):
|
|
if not BasicRowStack.acceptsCards(self, from_stack, cards):
|
|
return False
|
|
if self.cards:
|
|
# check the rank - an ACE equals a Six
|
|
rank = self.cards[-1].rank
|
|
if rank == ACE:
|
|
rank = 5
|
|
if (rank + self.cap.dir) % self.cap.mod != cards[0].rank:
|
|
return False
|
|
return True
|
|
|
|
def canMoveCards(self, cards):
|
|
if not BasicRowStack.canMoveCards(self, cards):
|
|
return False
|
|
c1 = cards[0]
|
|
for c2 in cards[1:]:
|
|
if c1.suit != c2.suit:
|
|
return False
|
|
# check the rank - an ACE equals a Six
|
|
rank = c1.rank
|
|
if rank == ACE:
|
|
rank = 5
|
|
if (rank + self.cap.dir) % self.cap.mod != c2.rank:
|
|
return False
|
|
c1 = c2
|
|
return True
|
|
|
|
|
|
class Thirty(Game):
|
|
Hint_Class = Spider_Hint
|
|
|
|
def createGame(self):
|
|
|
|
l, s = Layout(self), self.s
|
|
self.setSize(l.XM+7*l.XS, l.YM+2*l.YS+12*l.YOFFSET)
|
|
|
|
x, y = l.XM, l.YM
|
|
for i in range(2):
|
|
s.reserves.append(OpenStack(x, y, self))
|
|
x += l.XS
|
|
|
|
x, y = l.XM+3*l.XS, l.YM
|
|
for i in range(4):
|
|
s.foundations.append(DieRussische_Foundation(x, y, self,
|
|
suit=i, max_cards=8))
|
|
x += l.XS
|
|
|
|
x, y = l.XM+l.XS/2, l.YM+l.YS
|
|
for i in range(6):
|
|
s.rows.append(Thirty_RowStack(x, y, self,
|
|
max_move=UNLIMITED_MOVES,
|
|
max_accept=UNLIMITED_ACCEPTS))
|
|
x += l.XS
|
|
|
|
x, y = self.width-l.XS, self.height-l.YS
|
|
s.talon = InitialDealTalonStack(x, y, self)
|
|
|
|
l.defaultAll()
|
|
|
|
|
|
def startGame(self):
|
|
for i in range(4):
|
|
self.s.talon.dealRow(frames=0)
|
|
self.startDealSample()
|
|
self.s.talon.dealRow()
|
|
self.s.talon.dealRow(rows=self.s.reserves)
|
|
|
|
shallHighlightMatch = Game._shallHighlightMatch_RK
|
|
getQuickPlayScore = Game._getSpiderQuickPlayScore
|
|
|
|
|
|
|
|
# register the game
|
|
registerGame(GameInfo(1, Gypsy, "Gypsy",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(65, Giant, "Giant",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(3, Irmgard, "Irmgard",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(119, DieKoenigsbergerin, "Die Koenigsbergerin",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(174, DieRussische, "Russian Patience",
|
|
GI.GT_2DECK_TYPE | GI.GT_OPEN, 2, 0, GI.SL_MOSTLY_SKILL,
|
|
ranks=(0, 6, 7, 8, 9, 10, 11, 12),
|
|
altnames=("Die Russische",) ))
|
|
registerGame(GameInfo(62, MissMilligan, "Miss Milligan",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(200, Nomad, "Nomad",
|
|
GI.GT_GYPSY | GI.GT_CONTRIB | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(78, MilliganCell, "Milligan Cell",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(217, MilliganHarp, "Milligan Harp",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(218, Carlton, "Carlton",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(68, LexingtonHarp, "Lexington Harp",
|
|
GI.GT_YUKON, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(154, Brunswick, "Brunswick",
|
|
GI.GT_YUKON, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(121, Mississippi, "Mississippi",
|
|
GI.GT_YUKON | GI.GT_XORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(122, Griffon, "Griffon",
|
|
GI.GT_YUKON | GI.GT_XORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(226, Blockade, "Blockade",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(412, Cone, "Cone",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(463, Surprise, "Surprise",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(469, PhantomBlockade, "Phantom Blockade",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(478, Elba, "Elba",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(486, ImperialGuards, "Imperial Guards",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(487, Millie, "Millie",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(498, Steve, "Steve",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))
|
|
registerGame(GameInfo(566, Hypotenuse, "Hypotenuse",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(567, EternalTriangle, "Eternal Triangle",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL,
|
|
altnames=('Lobachevsky',) ))
|
|
registerGame(GameInfo(568, RightTriangle, "Right Triangle",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(580, Trapdoor, "Trapdoor",
|
|
GI.GT_GYPSY | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(581, Flamenco, "Flamenco",
|
|
GI.GT_GYPSY | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(584, Eclipse, "Eclipse",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(640, BrazilianPatience, "Brazilian Patience",
|
|
GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(666, TrapdoorSpider, "Trapdoor Spider",
|
|
GI.GT_SPIDER | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(712, Leprechaun, "Leprechaun",
|
|
GI.GT_GYPSY | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
|
|
registerGame(GameInfo(718, LockedCards, "Locked Cards",
|
|
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED))
|
|
registerGame(GameInfo(721, Thirty, "Thirty",
|
|
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
|
|
ranks=(0, 6, 7, 8, 9, 10, 11, 12)))
|
|
registerGame(GameInfo(725, TopsyTurvyQueens, "Topsy-Turvy Queens",
|
|
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED))
|