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

+ 9 new game

+ added command-line option `--debug' (undocumented)
- removed `mixer' button in soundoptionsdialog
* small improvements


git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@19 39dd0a4e-7c14-0410-91b3-c4f2d318f732
This commit is contained in:
skomoroh 2006-07-14 21:09:12 +00:00
parent 2aa38bdda5
commit 3c25e97e13
11 changed files with 276 additions and 75 deletions

View file

@ -846,8 +846,10 @@ class Application:
def loadImages3(self): def loadImages3(self):
MfxMessageDialog.img = {} MfxMessageDialog.img = {}
#dir = os.path.join('images', 'dialog', 'default') if os.name == 'posix':
dir = os.path.join('images', 'dialog', 'bluecurve') dir = os.path.join('images', 'dialog', 'bluecurve')
else:
dir = os.path.join('images', 'dialog', 'default')
for f in ('error', 'info', 'question', 'warning'): for f in ('error', 'info', 'question', 'warning'):
fn = self.dataloader.findImage(f, dir) fn = self.dataloader.findImage(f, dir)
im = loadImage(fn) im = loadImage(fn)

View file

@ -60,11 +60,14 @@ class BeleagueredCastleType_Hint(CautiousDefaultHint):
class StreetsAndAlleys(Game): class StreetsAndAlleys(Game):
Hint_Class = BeleagueredCastleType_Hint Hint_Class = BeleagueredCastleType_Hint
Foundation_Class = SS_FoundationStack
RowStack_Class = RK_RowStack
# #
# game layout # game layout
# #
def createGame(self, playcards=13, reserves=0): def createGame(self, playcards=13, reserves=0, texts=False):
# create layout # create layout
l, s = Layout(self), self.s l, s = Layout(self), self.s
@ -75,7 +78,8 @@ class StreetsAndAlleys(Game):
x1 = x0 + w + 2*l.XM x1 = x0 + w + 2*l.XM
x2 = x1 + l.XS + 2*l.XM x2 = x1 + l.XS + 2*l.XM
x3 = x2 + w + l.XM x3 = x2 + w + l.XM
self.setSize(x3, l.YM + (4+int(reserves!=0))*l.YS) h = l.YM + (4+int(reserves!=0))*l.YS + int(texts)*l.TEXT_HEIGHT
self.setSize(x3, h)
# create stacks # create stacks
y = l.YM y = l.YM
@ -87,12 +91,17 @@ class StreetsAndAlleys(Game):
y += l.YS y += l.YS
x = x1 x = x1
for i in range(4): for i in range(4):
s.foundations.append(SS_FoundationStack(x, y, self, i, max_move=0)) s.foundations.append(self.Foundation_Class(x, y, self, i, max_move=0))
y = y + l.YS y = y + l.YS
if texts:
tx, ty, ta, tf = l.getTextAttr(None, "ss")
tx, ty = x+tx, y-l.YS+ty
font = self.app.getFont("canvas_default")
self.texts.info = MfxCanvasText(self.canvas, tx, ty, anchor=ta, font=font)
for x in (x0, x2): for x in (x0, x2):
y = l.YM+l.YS*int(reserves!=0) y = l.YM+l.YS*int(reserves!=0)
for i in range(4): for i in range(4):
stack = RK_RowStack(x, y, self, max_move=1, max_accept=1) stack = self.RowStack_Class(x, y, self, max_move=1, max_accept=1)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0 stack.CARD_XOFFSET, stack.CARD_YOFFSET = l.XOFFSET, 0
s.rows.append(stack) s.rows.append(stack)
y = y + l.YS y = y + l.YS
@ -682,6 +691,29 @@ class CastleMount(Lightweight):
return 0 return 0
# /***********************************************************************
# // Selective Castle
# ************************************************************************/
class SelectiveCastle_RowStack(RK_RowStack):
def canDropCards(self, stacks):
if self.game.demo:
return RK_RowStack.canDropCards(self, stacks)
for s in self.game.s.foundations:
if s.cards:
return RK_RowStack.canDropCards(self, stacks)
return (None, 0)
class SelectiveCastle(StreetsAndAlleys, Chessboard):
Foundation_Class = Chessboard_Foundation
RowStack_Class = StackWrapper(SelectiveCastle_RowStack, mod=13)
def createGame(self):
StreetsAndAlleys.createGame(self, texts=True)
def updateText(self):
Chessboard.updateText(self)
# register the game # register the game
registerGame(GameInfo(146, StreetsAndAlleys, "Streets and Alleys", registerGame(GameInfo(146, StreetsAndAlleys, "Streets and Alleys",
@ -716,3 +748,5 @@ registerGame(GameInfo(507, Lightweight, "Lightweight",
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL)) GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(508, CastleMount, "Castle Mount", registerGame(GameInfo(508, CastleMount, "Castle Mount",
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 3, 0, GI.SL_MOSTLY_SKILL)) GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 3, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(524, SelectiveCastle, "Selective Castle",
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))

View file

@ -408,6 +408,7 @@ class EagleWing(Canfield):
# /*********************************************************************** # /***********************************************************************
# // Gate # // Gate
# // Little Gate # // Little Gate
# // Doorway
# ************************************************************************/ # ************************************************************************/
class Gate(Game): class Gate(Game):
@ -477,31 +478,35 @@ class Gate(Game):
class LittleGate(Gate): class LittleGate(Gate):
RowStack_Class = AC_RowStack
ReserveStack_Class = StackWrapper(OpenStack, max_accept=0)
# #
# game layout # game layout
# #
def createGame(self): def createGame(self, rows=4):
# create layout # create layout
l, s = Layout(self), self.s l, s = Layout(self), self.s
# set window # set window
w, h = l.XM+7*l.XS, l.YM+2*l.YS+12*l.YOFFSET max_rows = max(7, rows+3)
w, h = l.XM+max_rows*l.XS, l.YM+2*l.YS+12*l.YOFFSET
self.setSize(w, h) self.setSize(w, h)
# create stacks # create stacks
y = l.YM+l.YS+l.TEXT_HEIGHT y = l.YM+l.YS+l.TEXT_HEIGHT
for x in (l.XM, w-l.XS): for x in (l.XM, w-l.XS):
stack = OpenStack(x, y, self, max_accept=0) stack = self.ReserveStack_Class(x, y, self)
stack.CARD_XOFFSET, stack.CARD_YOFFSET = 0, l.YOFFSET stack.CARD_XOFFSET, stack.CARD_YOFFSET = 0, l.YOFFSET
s.reserves.append(stack) s.reserves.append(stack)
x, y = l.XM+3*l.XS, l.YM x, y = l.XM+(max_rows-4)*l.XS, l.YM
for i in range(4): for i in range(4):
s.foundations.append(SS_FoundationStack(x, y, self, suit=i)) s.foundations.append(SS_FoundationStack(x, y, self, suit=i))
x += l.XS x += l.XS
x, y = int(l.XM+1.5*l.XS), l.YM+l.YS+l.TEXT_HEIGHT x, y = l.XM+(max_rows-rows)*l.XS/2, l.YM+l.YS+l.TEXT_HEIGHT
for i in range(4): for i in range(rows):
s.rows.append(AC_RowStack(x, y, self)) s.rows.append(self.RowStack_Class(x, y, self))
x += l.XS x += l.XS
s.talon = WasteTalonStack(l.XM, l.YM, self, max_rounds=1) s.talon = WasteTalonStack(l.XM, l.YM, self, max_rounds=1)
l.createText(s.talon, "ss") l.createText(s.talon, "ss")
@ -511,6 +516,37 @@ class LittleGate(Gate):
# define stack-groups # define stack-groups
l.defaultStackGroups() l.defaultStackGroups()
return l
class Doorway(LittleGate):
Hint_Class = CautiousDefaultHint
RowStack_Class = StackWrapper(RK_RowStack, max_move=1)
ReserveStack_Class = ReserveStack
def createGame(self):
l = LittleGate.createGame(self, rows=5)
tx, ty, ta, tf = l.getTextAttr(self.s.reserves[0], "s")
font = self.app.getFont("canvas_default")
MfxCanvasText(self.canvas, tx, ty, anchor=ta, font=font, text=_('King'))
tx, ty, ta, tf = l.getTextAttr(self.s.reserves[1], "s")
font = self.app.getFont("canvas_default")
MfxCanvasText(self.canvas, tx, ty, anchor=ta, font=font, text=_('Queen'))
self.s.reserves[0].cap.base_rank = KING
self.s.reserves[1].cap.base_rank = QUEEN
def startGame(self):
self.startDealSample()
self.s.talon.dealRow()
self.s.talon.dealCards()
def fillStack(self, stack):
pass
def shallHighlightMatch(self, stack1, card1, stack2, card2):
return abs(card1.rank-card2.rank) == 1
# /*********************************************************************** # /***********************************************************************
# // Minerva # // Minerva
@ -728,4 +764,6 @@ registerGame(GameInfo(494, Mystique, "Mystique",
GI.GT_CANFIELD, 1, 0, GI.SL_BALANCED)) GI.GT_CANFIELD, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(521, CanfieldRush, "Canfield Rush", registerGame(GameInfo(521, CanfieldRush, "Canfield Rush",
GI.GT_CANFIELD, 1, 2, GI.SL_BALANCED)) GI.GT_CANFIELD, 1, 2, GI.SL_BALANCED))
registerGame(GameInfo(527, Doorway, "Doorway",
GI.GT_KLONDIKE, 1, 0, GI.SL_BALANCED))

View file

@ -158,6 +158,7 @@ class FortyThieves(Game):
# // Josephine # // Josephine
# // Marie Rose # // Marie Rose
# // Big Courtyard # // Big Courtyard
# // San Juan Hill
# // rows build down by suit # // rows build down by suit
# ************************************************************************/ # ************************************************************************/
@ -249,6 +250,12 @@ class Carnation(Limited):
FortyThieves.createGame(self, rows=16, playcards=20, XCARDS=120) FortyThieves.createGame(self, rows=16, playcards=20, XCARDS=120)
class SanJuanHill(FortyThieves):
def createGame(self):
FortyThieves.createGame(self, XOFFSET=0)
# /*********************************************************************** # /***********************************************************************
# // Deuces # // Deuces
# ************************************************************************/ # ************************************************************************/
@ -457,6 +464,7 @@ class Mumbai(Indian):
# // Napoleon's Exile # // Napoleon's Exile
# // Double Rail # // Double Rail
# // Single Rail (1 deck) # // Single Rail (1 deck)
# // Final Battle
# // rows build down by rank # // rows build down by rank
# ************************************************************************/ # ************************************************************************/
@ -482,6 +490,12 @@ class SingleRail(DoubleRail):
FortyThieves.createGame(self, rows=4, XCARDS=48) FortyThieves.createGame(self, rows=4, XCARDS=48)
class FinalBattle(DoubleRail):
def createGame(self):
FortyThieves.createGame(self, rows=6)
# /*********************************************************************** # /***********************************************************************
# // Octave # // Octave
# ************************************************************************/ # ************************************************************************/
@ -832,3 +846,9 @@ registerGame(GameInfo(506, Express, "Express",
GI.GT_FORTY_THIEVES | GI.GT_ORIGINAL, 3, 0, GI.SL_MOSTLY_SKILL)) GI.GT_FORTY_THIEVES | GI.GT_ORIGINAL, 3, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(514, Carnation, "Carnation", registerGame(GameInfo(514, Carnation, "Carnation",
GI.GT_FORTY_THIEVES | GI.GT_ORIGINAL, 4, 0, GI.SL_MOSTLY_SKILL)) GI.GT_FORTY_THIEVES | GI.GT_ORIGINAL, 4, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(528, FinalBattle, "Final Battle",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(529, SanJuanHill, "San Juan Hill",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))

View file

@ -416,6 +416,8 @@ class Cone_Talon(DealRowTalonStack):
def canDealCards(self): def canDealCards(self):
if not DealRowTalonStack.canDealCards(self): if not DealRowTalonStack.canDealCards(self):
return False return False
if len(self.cards) == 4:
return True
for r in self.game.s.rows: for r in self.game.s.rows:
if not r.cards: if not r.cards:
return False return False
@ -425,7 +427,7 @@ class Cone_Talon(DealRowTalonStack):
rows = self.game.s.rows rows = self.game.s.rows
if len(self.cards) == 4: if len(self.cards) == 4:
rows = self.game.s.reserves rows = self.game.s.reserves
self.dealRowAvail(rows=rows, sound=sound) return self.dealRowAvail(rows=rows, sound=sound)
class Cone(Gypsy): class Cone(Gypsy):

View file

@ -839,6 +839,8 @@ class Q_C_(Klondike):
self.fillAll() self.fillAll()
return return
# waste # waste
if not self.s.waste.cards and self.s.talon.cards:
self.s.talon.dealCards()
if self.fillOne(self.s.waste): if self.fillOne(self.s.waste):
self.fillAll() self.fillAll()
@ -1073,6 +1075,19 @@ class Boost(Klondike):
Klondike.createGame(self, rows=4, max_rounds=3) Klondike.createGame(self, rows=4, max_rounds=3)
# /***********************************************************************
# // Gold Rush
# ************************************************************************/
from canfield import CanfieldRush_Talon
class GoldRush(Klondike):
Talon_Class = CanfieldRush_Talon
def createGame(self):
Klondike.createGame(self, max_rounds=3)
# register the game # register the game
registerGame(GameInfo(2, Klondike, "Klondike", registerGame(GameInfo(2, Klondike, "Klondike",
GI.GT_KLONDIKE, 1, -1, GI.SL_BALANCED)) GI.GT_KLONDIKE, 1, -1, GI.SL_BALANCED))
@ -1182,4 +1197,6 @@ registerGame(GameInfo(518, Boost, "Boost",
GI.GT_KLONDIKE, 1, 2, GI.SL_BALANCED)) GI.GT_KLONDIKE, 1, 2, GI.SL_BALANCED))
registerGame(GameInfo(522, ArticGarden, "Artic Garden", registerGame(GameInfo(522, ArticGarden, "Artic Garden",
GI.GT_RAGLAN, 1, 0, GI.SL_MOSTLY_SKILL)) GI.GT_RAGLAN, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(532, GoldRush, "Gold Rush",
GI.GT_KLONDIKE, 1, 2, GI.SL_BALANCED))

View file

@ -54,17 +54,21 @@ class LarasGame_Hint(CautiousDefaultHint):
class LarasGame_Talon(WasteTalonStack): class LarasGame_Talon(WasteTalonStack):
# Deal a card to each of the RowStacks. Then deal # Deal a card to each of the RowStacks. Then deal
# cards to the talon. Return number of cards dealt. # cards to the talon. Return number of cards dealt.
def dealRow(self, rows=None, flip=1, reverse=0, frames=-1): def dealRow(self, rows=None, flip=1, reverse=0, frames=-1, sound=0):
game = self.game game = self.game
if rows is None: if rows is None:
rows = game.s.rows rows = game.s.rows
old_state = game.enterState(game.S_DEAL) old_state = game.enterState(game.S_DEAL)
cards = self.dealToStacks(rows[:game.MAX_ROW], flip, reverse, frames) cards = self.dealToStacks(rows[:game.MAX_ROW], flip, reverse, frames)
if sound and frames and self.game.app.opt.animations:
self.game.startDealSample()
for i in range(game.DEAL_TO_TALON): for i in range(game.DEAL_TO_TALON):
if self.cards: if self.cards:
game.moveMove(1, self, game.s.rows[-1], frames=frames) game.moveMove(1, self, game.s.rows[-1], frames=frames)
cards = cards + 1 cards = cards + 1
game.leaveState(old_state) game.leaveState(old_state)
if sound:
self.game.stopSamples()
return cards return cards
def dealToStacks(self, stacks, flip=1, reverse=0, frames=-1): def dealToStacks(self, stacks, flip=1, reverse=0, frames=-1):
@ -102,6 +106,8 @@ class LarasGame_Talon(WasteTalonStack):
def dealCards(self, sound=0): def dealCards(self, sound=0):
game = self.game game = self.game
if sound and self.game.app.opt.animations:
self.game.startDealSample()
for r in game.s.reserves[:20]: for r in game.s.reserves[:20]:
while r.cards: while r.cards:
game.moveMove(1, r, game.s.rows[game.active_row], frames=3, shadow=0) game.moveMove(1, r, game.s.rows[game.active_row], frames=3, shadow=0)
@ -123,25 +129,26 @@ class LarasGame_Talon(WasteTalonStack):
for i in range(ncards): for i in range(ncards):
game.moveMove(1, game.s.rows[game.active_row], game.moveMove(1, game.s.rows[game.active_row],
game.s.reserves[ncards - i], frames=4, shadow=0) game.s.reserves[ncards - i], frames=4, shadow=0)
return len(self.cards) or self.canDealCards() num_cards = len(self.cards) or self.canDealCards()
if self.round < self.max_rounds: else: # not self.cards
num_cards = 0 if self.round < self.max_rounds:
rows = list(game.s.rows)[:game.MAX_ROW] ncards = 0
rows.reverse() rows = list(game.s.rows)[:game.MAX_ROW]
for r in rows: rows.reverse()
while r.cards: for r in rows:
num_cards = num_cards + 1 while r.cards:
if r.cards[-1].face_up: ncards += 1
game.flipMove(r) if r.cards[-1].face_up:
game.moveMove(1, r, self, frames=0) game.flipMove(r)
assert len(self.cards) == num_cards game.moveMove(1, r, self, frames=0)
if num_cards == 0: assert len(self.cards) == ncards
return 0 if ncards != 0:
game.nextRoundMove(self) game.nextRoundMove(self)
game.dealToRows() game.dealToRows()
num_cards = len(self.cards)
if sound: if sound:
game.stopSamples() game.stopSamples()
return len(self.cards) return num_cards
def canDealCards(self): def canDealCards(self):
if self.game.demo and self.game.moves.index >= 400: if self.game.demo and self.game.moves.index >= 400:
@ -380,7 +387,7 @@ class LarasGame(Game):
assert moves.index == len(moves.history) assert moves.index == len(moves.history)
moves.current = [] moves.current = []
self.updateText() self.updateText()
self.updateStatus(moves=moves.index) self.updateStatus(moves=(moves.index, self.stats.total_moves))
self.updateMenus() self.updateMenus()
return 1 return 1
@ -404,7 +411,7 @@ class LarasGame(Game):
self.stats.total_moves = self.stats.total_moves + 1 self.stats.total_moves = self.stats.total_moves + 1
self.hints.list = None self.hints.list = None
self.updateText() self.updateText()
self.updateStatus(moves = self.moves.index) self.updateStatus(moves=(self.moves.index, self.stats.total_moves))
self.updateMenus() self.updateMenus()
def redo(self): def redo(self):
@ -425,7 +432,7 @@ class LarasGame(Game):
self.stats.total_moves = self.stats.total_moves + 1 self.stats.total_moves = self.stats.total_moves + 1
self.hints.list = None self.hints.list = None
self.updateText() self.updateText()
self.updateStatus(moves = self.moves.index) self.updateStatus(moves=(self.moves.index, self.stats.total_moves))
self.updateMenus() self.updateMenus()
def _restoreGameHook(self, game): def _restoreGameHook(self, game):

View file

@ -87,7 +87,6 @@ class Yukon(Game):
RowStack_Class = StackWrapper(Yukon_AC_RowStack, base_rank=KING) RowStack_Class = StackWrapper(Yukon_AC_RowStack, base_rank=KING)
Hint_Class = Yukon_Hint Hint_Class = Yukon_Hint
def createGame(self, **layout): def createGame(self, **layout):
# create layout # create layout
l, s = Layout(self), self.s l, s = Layout(self), self.s
@ -95,7 +94,7 @@ class Yukon(Game):
apply(self.Layout_Method, (l,), layout) apply(self.Layout_Method, (l,), layout)
self.setSize(l.size[0], l.size[1]) self.setSize(l.size[0], l.size[1])
# create stacks # create stacks
s.talon =self.Talon_Class(l.s.talon.x, l.s.talon.y, self) s.talon = self.Talon_Class(l.s.talon.x, l.s.talon.y, self)
for r in l.s.foundations: for r in l.s.foundations:
s.foundations.append(self.Foundation_Class(r.x, r.y, self, suit=r.suit, s.foundations.append(self.Foundation_Class(r.x, r.y, self, suit=r.suit,
max_move=0)) max_move=0))
@ -538,6 +537,104 @@ class Geoffrey(Yukon):
return card1.suit == card2.suit and abs(card1.rank-card2.rank) == 1 return card1.suit == card2.suit and abs(card1.rank-card2.rank) == 1
# /***********************************************************************
# // Queensland
# ************************************************************************/
class Queensland(Yukon):
Layout_Method = Layout.klondikeLayout
RowStack_Class = Yukon_SS_RowStack
def createGame(self):
Yukon.createGame(self, waste=0)
def startGame(self):
for i in range(1, len(self.s.rows)):
self.s.talon.dealRow(rows=self.s.rows[i:], flip=0, frames=0)
for i in range(3):
self.s.talon.dealRow(frames=0)
self.startDealSample()
self.s.talon.dealRow()
self.s.talon.dealRowAvail()
def shallHighlightMatch(self, stack1, card1, stack2, card2):
return card1.suit == card2.suit and abs(card1.rank-card2.rank) == 1
# /***********************************************************************
# // Outback Patience
# ************************************************************************/
class OutbackPatience(Yukon):
def createGame(self, max_rounds=-1, num_deal=1, **layout):
l, s = Layout(self), self.s
l.klondikeLayout(rows=7, waste=1, texts=1, playcards=20)
self.setSize(l.size[0], l.size[1])
s.talon = WasteTalonStack(l.s.talon.x, l.s.talon.y, self, max_rounds=1)
s.waste = WasteStack(l.s.waste.x, l.s.waste.y, self)
for r in l.s.foundations:
s.foundations.append(SS_FoundationStack(r.x, r.y, self, suit=r.suit))
for r in l.s.rows:
s.rows.append(Yukon_SS_RowStack(r.x, r.y, self, base_rank=KING))
l.defaultAll()
def startGame(self):
for i in range(3):
self.s.talon.dealRow(frames=0)
self.startDealSample()
self.s.talon.dealRow()
self.s.talon.dealCards()
def shallHighlightMatch(self, stack1, card1, stack2, card2):
return card1.suit == card2.suit and abs(card1.rank-card2.rank) == 1
# /***********************************************************************
# // Russian Spider
# // Double Russian Spider
# ************************************************************************/
class RussianSpider_RowStack(Yukon_SS_RowStack): #Spider_SS_RowStack
def canDropCards(self, stacks):
if len(self.cards) < 13:
return (None, 0)
cards = self.cards[-13:]
for s in stacks:
if s is not self and s.acceptsCards(self, cards):
return (s, 13)
return (None, 0)
class RussianSpider(RussianSolitaire):
RowStack_Class = StackWrapper(RussianSpider_RowStack, base_rank=KING)
Foundation_Class = Spider_SS_Foundation
def createGame(self, rows=7):
# create layout
l, s = Layout(self), self.s
l.yukonLayout(rows=rows, texts=0, playcards=25)
self.setSize(l.size[0], l.size[1])
# create stacks
s.talon = self.Talon_Class(l.s.talon.x, l.s.talon.y, self)
for r in l.s.foundations:
s.foundations.append(self.Foundation_Class(r.x, r.y, self, suit=ANY_SUIT,
max_move=0))
for r in l.s.rows:
s.rows.append(self.RowStack_Class(r.x, r.y, self))
# default
l.defaultAll()
class DoubleRussianSpider(RussianSpider, DoubleRussianSolitaire):
def createGame(self):
RussianSpider.createGame(self, rows=10)
def startGame(self):
DoubleRussianSolitaire.startGame(self)
# register the game # register the game
registerGame(GameInfo(19, Yukon, "Yukon", registerGame(GameInfo(19, Yukon, "Yukon",
@ -586,4 +683,11 @@ registerGame(GameInfo(488, TripleRussianSolitaire, "Triple Russian Solitaire",
GI.GT_YUKON, 3, 0, GI.SL_BALANCED)) GI.GT_YUKON, 3, 0, GI.SL_BALANCED))
registerGame(GameInfo(492, Geoffrey, "Geoffrey", registerGame(GameInfo(492, Geoffrey, "Geoffrey",
GI.GT_YUKON, 1, 0, GI.SL_MOSTLY_SKILL)) GI.GT_YUKON, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(525, Queensland, "Queensland",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(526, OutbackPatience, "Outback Patience",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(530, RussianSpider, "Russian Spider",
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(531, DoubleRussianSpider, "Double Russian Spider",
GI.GT_SPIDER | GI.GT_ORIGINAL, 2, 0, GI.SL_BALANCED))

View file

@ -84,27 +84,29 @@ Please check your %s installation.
def parse_option(argv): def parse_option(argv):
prog_name = argv[0] prog_name = argv[0]
try: try:
optlist, args = getopt.getopt(argv[1:], "h", optlist, args = getopt.getopt(argv[1:], "hD:",
["fg=", "foreground=", ["fg=", "foreground=",
"bg=", "background=", "bg=", "background=",
"fn=", "font=", "fn=", "font=",
"noplugins", "noplugins",
"nosound", "nosound",
"debug=",
"help"]) "help"])
except getopt.GetoptError, err: except getopt.GetoptError, err:
print _("%s: %s\ntry %s --help for more information") \ print _("%s: %s\ntry %s --help for more information") \
% (prog_name, err, prog_name) % (prog_name, err, prog_name)
return None return None
opts = {"help": 0, opts = {"help": False,
"fg": None, "fg": None,
"bg": None, "bg": None,
"fn": None, "fn": None,
"noplugins": 0, "noplugins": False,
"nosound": 0, "nosound": False,
"debug": 0,
} }
for i in optlist: for i in optlist:
if i[0] in ("-h", "--help"): if i[0] in ("-h", "--help"):
opts["help"] = 1 opts["help"] = True
elif i[0] in ("--fg", "--foreground"): elif i[0] in ("--fg", "--foreground"):
opts["fg"] = i[1] opts["fg"] = i[1]
elif i[0] in ("--bg", "--background"): elif i[0] in ("--bg", "--background"):
@ -112,9 +114,11 @@ def parse_option(argv):
elif i[0] in ("--fn", "--font"): elif i[0] in ("--fn", "--font"):
opts["fn"] = i[1] opts["fn"] = i[1]
elif i[0] == "--noplugins": elif i[0] == "--noplugins":
opts["noplugins"] = 1 opts["noplugins"] = True
elif i[0] == "--nosound": elif i[0] == "--nosound":
opts["nosound"] = 1 opts["nosound"] = True
elif i[0] in ("-D", "--debug"):
opts["debug"] = i[1]
if opts["help"]: if opts["help"]:
print _("""Usage: %s [OPTIONS] [FILE] print _("""Usage: %s [OPTIONS] [FILE]
@ -173,6 +177,7 @@ def pysol_init(app, args):
wm_command = prog + " " + os.path.abspath(argv0) wm_command = prog + " " + os.path.abspath(argv0)
if filename: if filename:
app.commandline.loadgame = filename app.commandline.loadgame = filename
app.debug = int(opts['debug'])
# init games database # init games database
import games import games

View file

@ -43,17 +43,6 @@ if os.name == "nt":
if os.name == "mac": if os.name == "mac":
pass pass
# sound mixers
MIXERS = ()
if os.name == "nt":
MIXERS = (("sndvol32.exe", None),)
elif os.name == "posix":
MIXERS = (
#("alsamixer", None),
("kmix", None),
("gmix", None),
)
TOP_SIZE = 10 TOP_SIZE = 10
TOP_TITLE = n_("Top 10") TOP_TITLE = n_("Top 10")

View file

@ -44,7 +44,6 @@ import traceback
from pysollib.mfxutil import destruct, kwdefault, KwStruct, Struct, spawnvp from pysollib.mfxutil import destruct, kwdefault, KwStruct, Struct, spawnvp
from pysollib.settings import PACKAGE from pysollib.settings import PACKAGE
from pysollib.pysolaudio import pysolsoundserver from pysollib.pysolaudio import pysolsoundserver
from pysollib.settings import MIXERS
# Toolkit imports # Toolkit imports
from tkconst import EVENT_HANDLED, EVENT_PROPAGATE from tkconst import EVENT_HANDLED, EVENT_PROPAGATE
@ -55,7 +54,6 @@ from tkwidget import MfxDialog, MfxMessageDialog
# ************************************************************************/ # ************************************************************************/
class SoundOptionsDialog(MfxDialog): class SoundOptionsDialog(MfxDialog):
MIXER = ()
def __init__(self, parent, title, app, **kw): def __init__(self, parent, title, app, **kw):
self.app = app self.app = app
@ -168,17 +166,13 @@ class SoundOptionsDialog(MfxDialog):
self.mainloop(focus, kw.timeout) self.mainloop(focus, kw.timeout)
def initKw(self, kw): def initKw(self, kw):
strings=[_("&OK"), _("&Apply"), _("&Mixer..."), _("&Cancel"),] strings=[_("&OK"), _("&Apply"), _("&Cancel"),]
if self.MIXER is None:
strings[2] = (_("&Mixer..."), -1)
## if os.name != "nt" and not self.app.debug:
## strings[2] = None
kw = KwStruct(kw, kw = KwStruct(kw,
strings=strings, strings=strings,
default=0, default=0,
resizable=1, resizable=1,
padx=10, pady=10, padx=10, pady=10,
buttonpadx=1, buttonpady=5, buttonpadx=10, buttonpady=5,
) )
return MfxDialog.initKw(self, kw) return MfxDialog.initKw(self, kw)
@ -191,17 +185,6 @@ class SoundOptionsDialog(MfxDialog):
for n, t, v in self.samples: for n, t, v in self.samples:
self.app.opt.sound_samples[n] = v.get() self.app.opt.sound_samples[n] = v.get()
elif button == 2: elif button == 2:
for name, args in MIXERS:
try:
f = spawnvp(name, args)
if f:
self.MIXER = (f, args)
return
except:
if traceback: traceback.print_exc()
pass
self.MIXER = None
elif button == 3:
self.app.opt = self.saved_opt self.app.opt = self.saved_opt
if self.app.audio: if self.app.audio:
self.app.audio.updateSettings() self.app.audio.updateSettings()