mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
+ 3 new games
git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@10 39dd0a4e-7c14-0410-91b3-c4f2d318f732
This commit is contained in:
parent
36e28b5385
commit
19aacdc92f
6 changed files with 64 additions and 32 deletions
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PySol 0.0.1\n"
|
"Project-Id-Version: PySol 0.0.1\n"
|
||||||
"POT-Creation-Date: Sun Jun 11 10:16:06 2006\n"
|
"POT-Creation-Date: Sun Jun 11 10:16:06 2006\n"
|
||||||
"PO-Revision-Date: 2006-06-10 11:07+0400\n"
|
"PO-Revision-Date: 2006-06-18 11:28+0400\n"
|
||||||
"Last-Translator: Скоморох <skomoroh@gmail.com>\n"
|
"Last-Translator: Скоморох <skomoroh@gmail.com>\n"
|
||||||
"Language-Team: Russian <ru@li.org>\n"
|
"Language-Team: Russian <ru@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -375,7 +375,7 @@ msgid "Castle of Indolence"
|
||||||
msgstr "Замок праздности"
|
msgstr "Замок праздности"
|
||||||
|
|
||||||
msgid "Castles in Spain"
|
msgid "Castles in Spain"
|
||||||
msgstr "Замок в Испании"
|
msgstr "Воздушные замки"
|
||||||
|
|
||||||
msgid "Cat and Mouse"
|
msgid "Cat and Mouse"
|
||||||
msgstr "Кот и Мышь"
|
msgstr "Кот и Мышь"
|
||||||
|
|
|
@ -627,25 +627,27 @@ class Rittenhouse(Game):
|
||||||
|
|
||||||
|
|
||||||
# /***********************************************************************
|
# /***********************************************************************
|
||||||
|
# // Lightweight
|
||||||
# // Castle Mount
|
# // Castle Mount
|
||||||
# ************************************************************************/
|
# ************************************************************************/
|
||||||
|
|
||||||
class CastleMount(StreetsAndAlleys):
|
class Lightweight(StreetsAndAlleys):
|
||||||
DEAL = (11, 1)
|
DEAL = (7, 1)
|
||||||
RowStack_Class = Spider_SS_RowStack
|
RowStack_Class = StackWrapper(RK_RowStack, base_rank=KING)
|
||||||
|
|
||||||
def createGame(self, rows=12):
|
def createGame(self, rows=12, playcards=20):
|
||||||
l, s = Layout(self), self.s
|
l, s = Layout(self), self.s
|
||||||
max_rows = max(12, rows)
|
decks = self.gameinfo.decks
|
||||||
self.setSize(l.XM+max_rows*l.XS, l.YM+2*l.YS+20*l.YOFFSET)
|
max_rows = max(decks*4, rows)
|
||||||
|
self.setSize(l.XM+max_rows*l.XS, l.YM+2*l.YS+playcards*l.YOFFSET)
|
||||||
|
|
||||||
x, y = l.XM+(max_rows-12)*l.XS/2, l.YM
|
x, y = l.XM+(max_rows-decks*4)*l.XS/2, l.YM
|
||||||
for i in range(4):
|
for i in range(4):
|
||||||
for j in range(3):
|
for j in range(decks):
|
||||||
s.foundations.append(SS_FoundationStack(x, y, self, suit=i,
|
s.foundations.append(SS_FoundationStack(x, y, self, suit=i,
|
||||||
max_move=0))
|
max_move=0))
|
||||||
x += l.XS
|
x += l.XS
|
||||||
x, y = l.XM, l.YM+l.YS
|
x, y = l.XM+(max_rows-rows)*l.XS/2, l.YM+l.YS
|
||||||
for i in range(rows):
|
for i in range(rows):
|
||||||
s.rows.append(self.RowStack_Class(x, y, self))
|
s.rows.append(self.RowStack_Class(x, y, self))
|
||||||
x += l.XS
|
x += l.XS
|
||||||
|
@ -653,7 +655,6 @@ class CastleMount(StreetsAndAlleys):
|
||||||
|
|
||||||
l.defaultAll()
|
l.defaultAll()
|
||||||
|
|
||||||
|
|
||||||
def _shuffleHook(self, cards):
|
def _shuffleHook(self, cards):
|
||||||
# move Aces to top of the Talon (i.e. first cards to be dealt)
|
# move Aces to top of the Talon (i.e. first cards to be dealt)
|
||||||
return self._shuffleHookMoveToTop(cards,
|
return self._shuffleHookMoveToTop(cards,
|
||||||
|
@ -667,6 +668,11 @@ class CastleMount(StreetsAndAlleys):
|
||||||
for i in range(self.DEAL[1]):
|
for i in range(self.DEAL[1]):
|
||||||
self.s.talon.dealRowAvail()
|
self.s.talon.dealRowAvail()
|
||||||
|
|
||||||
|
|
||||||
|
class CastleMount(Lightweight):
|
||||||
|
DEAL = (11, 1)
|
||||||
|
RowStack_Class = Spider_SS_RowStack
|
||||||
|
|
||||||
def shallHighlightMatch(self, stack1, card1, stack2, card2):
|
def shallHighlightMatch(self, stack1, card1, stack2, card2):
|
||||||
return ((card1.rank + 1) % stack1.cap.mod == card2.rank or
|
return ((card1.rank + 1) % stack1.cap.mod == card2.rank or
|
||||||
(card2.rank + 1) % stack1.cap.mod == card1.rank)
|
(card2.rank + 1) % stack1.cap.mod == card1.rank)
|
||||||
|
@ -707,5 +713,7 @@ registerGame(GameInfo(395, Zerline3Decks, "Zerline (3 decks)",
|
||||||
GI.GT_BELEAGUERED_CASTLE | GI.GT_ORIGINAL, 3, 0))
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_ORIGINAL, 3, 0))
|
||||||
registerGame(GameInfo(400, Rittenhouse, "Rittenhouse",
|
registerGame(GameInfo(400, Rittenhouse, "Rittenhouse",
|
||||||
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 2, 0))
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 2, 0))
|
||||||
registerGame(GameInfo(507, CastleMount, "Castle Mount",
|
registerGame(GameInfo(507, Lightweight, "Lightweight",
|
||||||
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN | GI.GT_ORIGINAL, 2, 0))
|
||||||
|
registerGame(GameInfo(508, CastleMount, "Castle Mount",
|
||||||
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 3, 0))
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 3, 0))
|
||||||
|
|
|
@ -119,8 +119,7 @@ class Braid_ReserveStack(ReserveStack):
|
||||||
|
|
||||||
class Braid(Game):
|
class Braid(Game):
|
||||||
Hint_Class = Braid_Hint
|
Hint_Class = Braid_Hint
|
||||||
Foundation_Class_1 = Braid_Foundation
|
Foundation_Classes = [Braid_Foundation, Braid_Foundation]
|
||||||
Foundation_Class_2 = Braid_Foundation
|
|
||||||
|
|
||||||
BRAID_CARDS = 20
|
BRAID_CARDS = 20
|
||||||
RANKS = RANKS # pull into class Braid
|
RANKS = RANKS # pull into class Braid
|
||||||
|
@ -135,8 +134,9 @@ class Braid(Game):
|
||||||
|
|
||||||
# set window
|
# set window
|
||||||
# (piles up to 20 cards are playable - needed for Braid_BraidStack)
|
# (piles up to 20 cards are playable - needed for Braid_BraidStack)
|
||||||
|
decks = self.gameinfo.decks
|
||||||
h = max(4*l.YS + 30, l.YS+(self.BRAID_CARDS-1)*l.YOFFSET)
|
h = max(4*l.YS + 30, l.YS+(self.BRAID_CARDS-1)*l.YOFFSET)
|
||||||
self.setSize(10*l.XS+l.XM, l.YM + h)
|
self.setSize(l.XM+(8+decks)*l.XS, l.YM+h)
|
||||||
|
|
||||||
# extra settings
|
# extra settings
|
||||||
self.base_card = None
|
self.base_card = None
|
||||||
|
@ -167,15 +167,16 @@ class Braid(Game):
|
||||||
x = x - l.XS
|
x = x - l.XS
|
||||||
s.waste = WasteStack(x, y, self)
|
s.waste = WasteStack(x, y, self)
|
||||||
l.createText(s.waste, "ss")
|
l.createText(s.waste, "ss")
|
||||||
x = l.XM + 8 * l.XS
|
|
||||||
y = l.YM
|
y = l.YM
|
||||||
for i in range(4):
|
for i in range(4):
|
||||||
s.foundations.append(self.Foundation_Class_1(x, y, self, suit=i))
|
x = l.XM+8*l.XS
|
||||||
s.foundations.append(self.Foundation_Class_2(x + l.XS, y, self, suit=i))
|
for cl in self.Foundation_Classes:
|
||||||
|
s.foundations.append(cl(x, y, self, suit=i))
|
||||||
|
x += l.XS
|
||||||
y = y + l.YS
|
y = y + l.YS
|
||||||
|
x = 8*l.XS+decks*l.XS/2
|
||||||
self.texts.info = MfxCanvasText(self.canvas,
|
self.texts.info = MfxCanvasText(self.canvas,
|
||||||
x + l.CW + l.XM / 2, y,
|
x, y, anchor="n",
|
||||||
anchor="n",
|
|
||||||
font=self.app.getFont("canvas_default"))
|
font=self.app.getFont("canvas_default"))
|
||||||
|
|
||||||
# define stack-groups
|
# define stack-groups
|
||||||
|
@ -205,7 +206,7 @@ class Braid(Game):
|
||||||
self.s.talon.dealRow(frames=4)
|
self.s.talon.dealRow(frames=4)
|
||||||
# deal base_card to foundations
|
# deal base_card to foundations
|
||||||
self.base_card = self.s.talon.cards[-1]
|
self.base_card = self.s.talon.cards[-1]
|
||||||
to_stack = self.s.foundations[2 * self.base_card.suit]
|
to_stack = self.s.foundations[self.gameinfo.decks*self.base_card.suit]
|
||||||
self.flipMove(self.s.talon)
|
self.flipMove(self.s.talon)
|
||||||
self.moveMove(1, self.s.talon, to_stack)
|
self.moveMove(1, self.s.talon, to_stack)
|
||||||
self.updateText()
|
self.updateText()
|
||||||
|
@ -263,8 +264,8 @@ class LongBraid(Braid):
|
||||||
|
|
||||||
class Fort(Braid):
|
class Fort(Braid):
|
||||||
|
|
||||||
Foundation_Class_1 = SS_FoundationStack
|
Foundation_Classes = [SS_FoundationStack,
|
||||||
Foundation_Class_2 = StackWrapper(SS_FoundationStack, base_rank=KING, dir=-1)
|
StackWrapper(SS_FoundationStack, base_rank=KING, dir=-1)]
|
||||||
|
|
||||||
BRAID_CARDS = 21
|
BRAID_CARDS = 21
|
||||||
|
|
||||||
|
@ -367,6 +368,15 @@ class BackbonePlus(Backbone):
|
||||||
Backbone.createGame(self, rows=10)
|
Backbone.createGame(self, rows=10)
|
||||||
|
|
||||||
|
|
||||||
|
# /***********************************************************************
|
||||||
|
# // Big Braid
|
||||||
|
# ************************************************************************/
|
||||||
|
|
||||||
|
class BigBraid(Braid):
|
||||||
|
Foundation_Classes = [Braid_Foundation, Braid_Foundation, Braid_Foundation]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# register the game
|
# register the game
|
||||||
registerGame(GameInfo(12, Braid, "Braid",
|
registerGame(GameInfo(12, Braid, "Braid",
|
||||||
GI.GT_NAPOLEON, 2, 2,
|
GI.GT_NAPOLEON, 2, 2,
|
||||||
|
@ -380,3 +390,5 @@ registerGame(GameInfo(376, Backbone, "Backbone",
|
||||||
GI.GT_NAPOLEON, 2, 0))
|
GI.GT_NAPOLEON, 2, 0))
|
||||||
registerGame(GameInfo(377, BackbonePlus, "Backbone +",
|
registerGame(GameInfo(377, BackbonePlus, "Backbone +",
|
||||||
GI.GT_NAPOLEON, 2, 0))
|
GI.GT_NAPOLEON, 2, 0))
|
||||||
|
registerGame(GameInfo(510, BigBraid, "Big Braid",
|
||||||
|
GI.GT_NAPOLEON, 3, 2))
|
||||||
|
|
|
@ -310,6 +310,19 @@ class Cell11(TripleFreecell):
|
||||||
self.s.talon.dealRow(rows=[self.s.reserves[0],self.s.reserves[-1]])
|
self.s.talon.dealRow(rows=[self.s.reserves[0],self.s.reserves[-1]])
|
||||||
|
|
||||||
|
|
||||||
|
class BigCell(TripleFreecell):
|
||||||
|
RowStack_Class = AC_RowStack
|
||||||
|
|
||||||
|
def createGame(self):
|
||||||
|
TripleFreecell.createGame(self, rows=13, reserves=4)
|
||||||
|
|
||||||
|
def startGame(self):
|
||||||
|
for i in range(11):
|
||||||
|
self.s.talon.dealRow(frames=0)
|
||||||
|
self.startDealSample()
|
||||||
|
self.s.talon.dealRow()
|
||||||
|
|
||||||
|
|
||||||
# /***********************************************************************
|
# /***********************************************************************
|
||||||
# // Spidercells
|
# // Spidercells
|
||||||
# ************************************************************************/
|
# ************************************************************************/
|
||||||
|
@ -527,4 +540,6 @@ registerGame(GameInfo(451, Cell11, "Cell 11",
|
||||||
GI.GT_FREECELL | GI.GT_OPEN, 3, 0))
|
GI.GT_FREECELL | GI.GT_OPEN, 3, 0))
|
||||||
registerGame(GameInfo(464, FourColours, "Four Colours",
|
registerGame(GameInfo(464, FourColours, "Four Colours",
|
||||||
GI.GT_FREECELL | GI.GT_OPEN, 1, 0))
|
GI.GT_FREECELL | GI.GT_OPEN, 1, 0))
|
||||||
|
registerGame(GameInfo(509, BigCell, "Big Cell",
|
||||||
|
GI.GT_FREECELL | GI.GT_OPEN | GI.GT_ORIGINAL, 3, 0))
|
||||||
|
|
||||||
|
|
|
@ -284,6 +284,7 @@ class BlindAlleys(Eastcliff):
|
||||||
# /***********************************************************************
|
# /***********************************************************************
|
||||||
# // Somerset
|
# // Somerset
|
||||||
# // Morehead
|
# // Morehead
|
||||||
|
# // Canister
|
||||||
# ************************************************************************/
|
# ************************************************************************/
|
||||||
|
|
||||||
class Somerset(Klondike):
|
class Somerset(Klondike):
|
||||||
|
@ -306,10 +307,6 @@ class Morehead(Somerset):
|
||||||
RowStack_Class = StackWrapper(ThumbAndPouch_RowStack, max_move=1)
|
RowStack_Class = StackWrapper(ThumbAndPouch_RowStack, max_move=1)
|
||||||
|
|
||||||
|
|
||||||
# /***********************************************************************
|
|
||||||
# // Canister
|
|
||||||
# ************************************************************************/
|
|
||||||
|
|
||||||
class Canister(Klondike):
|
class Canister(Klondike):
|
||||||
Talon_Class = InitialDealTalonStack
|
Talon_Class = InitialDealTalonStack
|
||||||
RowStack_Class = RK_RowStack
|
RowStack_Class = RK_RowStack
|
||||||
|
@ -1082,9 +1079,9 @@ registerGame(GameInfo(107, PasSeul, "Pas Seul",
|
||||||
registerGame(GameInfo(81, BlindAlleys, "Blind Alleys",
|
registerGame(GameInfo(81, BlindAlleys, "Blind Alleys",
|
||||||
GI.GT_KLONDIKE, 1, 1))
|
GI.GT_KLONDIKE, 1, 1))
|
||||||
registerGame(GameInfo(215, Somerset, "Somerset",
|
registerGame(GameInfo(215, Somerset, "Somerset",
|
||||||
GI.GT_KLONDIKE | GI.GT_OPEN, 1, 0))
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 1, 0))
|
||||||
registerGame(GameInfo(231, Canister, "Canister",
|
registerGame(GameInfo(231, Canister, "Canister",
|
||||||
GI.GT_KLONDIKE | GI.GT_OPEN, 1, 0))
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 1, 0))
|
||||||
registerGame(GameInfo(229, AgnesSorel, "Agnes Sorel",
|
registerGame(GameInfo(229, AgnesSorel, "Agnes Sorel",
|
||||||
GI.GT_GYPSY, 1, 0))
|
GI.GT_GYPSY, 1, 0))
|
||||||
registerGame(GameInfo(4, EightTimesEight, "8 x 8",
|
registerGame(GameInfo(4, EightTimesEight, "8 x 8",
|
||||||
|
@ -1127,7 +1124,7 @@ registerGame(GameInfo(350, Q_C_, "Q.C.",
|
||||||
registerGame(GameInfo(361, NorthwestTerritory, "Northwest Territory",
|
registerGame(GameInfo(361, NorthwestTerritory, "Northwest Territory",
|
||||||
GI.GT_RAGLAN, 1, 0))
|
GI.GT_RAGLAN, 1, 0))
|
||||||
registerGame(GameInfo(362, Morehead, "Morehead",
|
registerGame(GameInfo(362, Morehead, "Morehead",
|
||||||
GI.GT_KLONDIKE | GI.GT_OPEN, 1, 0))
|
GI.GT_BELEAGUERED_CASTLE | GI.GT_OPEN, 1, 0))
|
||||||
registerGame(GameInfo(388, Senate, "Senate",
|
registerGame(GameInfo(388, Senate, "Senate",
|
||||||
GI.GT_RAGLAN, 2, 0))
|
GI.GT_RAGLAN, 2, 0))
|
||||||
registerGame(GameInfo(389, SenatePlus, "Senate +",
|
registerGame(GameInfo(389, SenatePlus, "Senate +",
|
||||||
|
|
|
@ -650,7 +650,7 @@ class CornerSuite(Game):
|
||||||
|
|
||||||
def createGame(self):
|
def createGame(self):
|
||||||
l, s = Layout(self), self.s
|
l, s = Layout(self), self.s
|
||||||
self.setSize(l.XM+5*l.XS, l.YM+4*l.YS)
|
self.setSize(l.XM+5*l.XS, l.YM+5*l.YS)
|
||||||
|
|
||||||
suit = 0
|
suit = 0
|
||||||
for x, y in ((0,0), (4,0), (0,4), (4,4)):
|
for x, y in ((0,0), (4,0), (0,4), (4,4)):
|
||||||
|
|
Loading…
Add table
Reference in a new issue