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

+ 1 new game

git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@150 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
skomoroh 2007-03-11 22:19:50 +00:00
parent 4533357d05
commit 96ba6d0dfc
2 changed files with 140 additions and 25 deletions

View file

@ -427,7 +427,6 @@ class Casket(Game):
# set window
self.setSize(l.XM+10*l.XS, l.YM+4.5*l.YS)
# register extra stack variables
s.addattr(jewels=None)
s.addattr(lid=[])
@ -509,6 +508,129 @@ class Casket(Game):
shallHighlightMatch = Game._shallHighlightMatch_SS
# /***********************************************************************
# // Well
# ************************************************************************/
class Well_TalonStack(DealRowRedealTalonStack):
def canDealCards(self):
return DealRowRedealTalonStack.canDealCards(self, rows=self.game.s.wastes)
def dealCards(self, sound=0):
num_cards = 0
if sound and self.game.app.opt.animations:
self.game.startDealSample()
if not self.cards:
# move all cards to talon
num_cards = self._redeal(rows=self.game.s.wastes, frames=3)
self.game.nextRoundMove(self)
wastes = self.game.s.wastes[:(6-self.round)]
num_cards += self.dealRowAvail(rows=wastes, frames=4, sound=0)
if sound:
self.game.stopSamples()
return num_cards
class Well_RowStack(SS_RowStack):
def getBottomImage(self):
return self.game.app.images.getReserveBottom()
class Well(Game):
Hint_Class = CautiousDefaultHint
def createGame(self):
# create layout
l, s = Layout(self), self.s
# set window
self.setSize(l.XM+6*l.XS, l.YM+6*l.YS+l.TEXT_HEIGHT)
# register extra stack variables
s.addattr(wastes=[])
# foundations
suit = 0
x0, y0 = l.XM+1.5*l.XS, l.YM+1.5*l.YS+l.TEXT_HEIGHT
for xx, yy in ((3,0),
(0,3),
(3,3),
(0,0)):
x, y = x0+xx*l.XS, y0+yy*l.YS
s.foundations.append(SS_FoundationStack(x, y, self, suit=suit,
base_rank=KING, mod=13, max_cards=26,
dir=-1, max_move=0))
suit += 1
# rows
x0, y0 = l.XM+l.XS, l.YM+l.YS+l.TEXT_HEIGHT
for xx, yy in ((0,2),
(2,0),
(4,2),
(2,4)):
x, y = x0+xx*l.XS, y0+yy*l.YS
stack = Well_RowStack(x, y, self, dir=1, max_move=1)
stack.CARD_YOFFSET = 0
s.rows.append(stack)
# left stack
x, y = l.XM, l.YM+l.YS+l.TEXT_HEIGHT
stack = Well_RowStack(x, y, self, base_rank=ACE, dir=1, max_move=1)
stack.CARD_YOFFSET = 0
s.rows.append(stack)
# reserves
x0, y0 = l.XM+2*l.XS, l.YM+2*l.YS+l.TEXT_HEIGHT
for xx, yy, anchor in ((0,1,'e'),
(1,0,'s'),
(2,1,'w'),
(1,2,'n')):
x, y = x0+xx*l.XS, y0+yy*l.YS
stack = OpenStack(x, y, self)
l.createText(stack, anchor)
s.reserves.append(stack)
# wastes
x, y = l.XM+l.XS, l.YM
for i in range(5):
stack = WasteStack(x, y, self)
l.createText(stack, 's', text_format='%D')
s.wastes.append(stack)
x += l.XS
# talon
x, y = l.XM, l.YM
s.talon = Well_TalonStack(x, y, self, max_rounds=5)
l.createText(s.talon, "s")
# define stack-groups
self.sg.talonstacks = [s.talon] + s.wastes
self.sg.openstacks = s.foundations + s.rows
self.sg.dropstacks = s.rows + s.wastes + s.reserves
def startGame(self):
for i in range(10):
self.s.talon.dealRow(rows=self.s.reserves, frames=0)
self.startDealSample()
self.s.talon.dealRow(rows=self.s.rows[:4])
self.s.talon.dealCards()
def fillStack(self, stack):
if not stack.cards and stack in self.s.rows[:4]:
indx = list(self.s.rows).index(stack)
r = self.s.reserves[indx]
if r.cards:
old_state = self.enterState(self.S_FILL)
r.moveMove(1, stack)
self.leaveState(old_state)
shallHighlightMatch = Game._shallHighlightMatch_SSW
# register the game
registerGame(GameInfo(12, Braid, "Braid",
GI.GT_NAPOLEON, 2, 2, GI.SL_BALANCED,
@ -526,3 +648,5 @@ registerGame(GameInfo(510, BigBraid, "Big Braid",
GI.GT_NAPOLEON | GI.GT_ORIGINAL, 3, 2, GI.SL_BALANCED))
registerGame(GameInfo(694, Casket, "Casket",
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(717, Well, "Well",
GI.GT_2DECK_TYPE, 2, 4, GI.SL_BALANCED))

View file

@ -199,32 +199,23 @@ class Layout:
def getTextAttr(self, stack, anchor):
x, y = 0, 0
delta_x, delta_y = 4, 4
delta_yy = 10
if stack is not None:
x, y = stack.x, stack.y
if anchor == "n":
return (x+self.CW/2, y-delta_y, "s", "%d")
if anchor == "nn":
return (x+self.CW/2, y-delta_yy, "s", "%d")
if anchor == "s":
return (x+self.CW/2, y+self.CH+delta_y, "n", "%d")
if anchor == "ss":
return (x+self.CW/2, y+self.CH+delta_yy, "n", "%d")
if anchor == "nw":
return (x-delta_x, y, "ne", "%d")
if anchor == "sw":
return (x-delta_x, y+self.CH, "se", "%d")
f = "%2d"
if self.game.gameinfo.decks > 1:
f = "%3d"
if anchor == "ne":
return (x+self.CW+delta_x, y, "nw", f)
if anchor == "se":
return (x+self.CW+delta_x, y+self.CH, "sw", f)
if anchor == "e":
return (x+self.CW+delta_x, y+self.CH/2, "w", f)
raise ValueError(anchor)
delta_x, delta_y = 4, 4
delta_yy = 10
d = {
"n" : (x+self.CW/2, y-delta_y, "s", "%d"),
"nn": (x+self.CW/2, y-delta_yy, "s", "%d"),
"s" : (x+self.CW/2, y+self.CH+delta_y, "n", "%d"),
"ss": (x+self.CW/2, y+self.CH+delta_yy, "n", "%d"),
"nw": (x-delta_x, y, "ne", "%d"),
"sw": (x-delta_x, y+self.CH, "se", "%d"),
"ne": (x+self.CW+delta_x, y, "nw", "%d"),
"se": (x+self.CW+delta_x, y+self.CH, "sw", "%d"),
"w" : (x-delta_x, y+self.CH/2, "e", "%d"),
"e" : (x+self.CW+delta_x, y+self.CH/2, "w", "%d"),
}
return d[anchor]
def createText(self, stack, anchor, dx=0, dy=0, text_format=""):
if self.canvas.preview > 1: