diff --git a/html-src/rules/knottynines.html b/html-src/rules/knottynines.html new file mode 100644 index 00000000..4d33e1ae --- /dev/null +++ b/html-src/rules/knottynines.html @@ -0,0 +1,12 @@ +

Knotty Nines

+

+One deck type. 1 deck. No redeal. + +

Object

+

+Move all cards to the tableau. + +

Quick Description

+

+Just like Trusty Twelve, +but with only nine tableau piles. diff --git a/html-src/rules/trustytwelve.html b/html-src/rules/trustytwelve.html new file mode 100644 index 00000000..5511667d --- /dev/null +++ b/html-src/rules/trustytwelve.html @@ -0,0 +1,16 @@ +

Trusty Twelve

+

+One deck type. 1 deck. No redeal. + +

Object

+

+Move all cards to the tableau. + +

Rules

+

+Twelve cards are dealt to twelve tableau piles. Tableau piles are built +down in rank, regardless of suit. Cards may be moved between tableau +piles, one at a time. An empty tableau pile is filled with the top card +from the talon. +

+The game is won if all cards are moved to the tableau. diff --git a/html-src/rules/upandup.html b/html-src/rules/upandup.html new file mode 100644 index 00000000..e12dada4 --- /dev/null +++ b/html-src/rules/upandup.html @@ -0,0 +1,21 @@ +

Up and Up

+

+One deck type. 1 deck. No redeal. + +

Object

+

+Move all cards to the tableau. + +

Rules

+

+Ten cards are dealt to ten tableau piles. Tableau piles are built up in rank, +regardless of suit, wrapping from ace to king as necessary. Cards may be +moved between tableau piles, one at a time. An empty tableau pile is filled +with the top card from the talon. The top card of the talon is face-up and +can also be moved to tableau piles as needed. +

+The game is won if all cards are moved to the tableau. + +

Notes

+

+Up and Up is a variation of Trusty Twelve. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 7dd19b62..d9d2e582 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -479,7 +479,7 @@ class GI: ('fc-2.12', tuple(range(774, 811)) + (16681,) + tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), - ('fc-2.16', tuple(range(827, 833))) + ('fc-2.16', tuple(range(827, 834))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/curdsandwhey.py b/pysollib/games/curdsandwhey.py index 3b0f9e29..45df4cc4 100644 --- a/pysollib/games/curdsandwhey.py +++ b/pysollib/games/curdsandwhey.py @@ -350,6 +350,7 @@ class BavarianPatience(GermanPatience): # ************************************************************************ # * Trusty Twelve +# * Up and Up # * Knotty Nines # * Sweet Sixteen # ************************************************************************ @@ -372,15 +373,19 @@ class TrustyTwelve_Hint(AbstractHint): class TrustyTwelve(Game): Hint_Class = TrustyTwelve_Hint + TALON_CLASS = TalonStack + ROWSTACK_CLASS = RK_RowStack + def createGame(self, rows=12): l, s = Layout(self), self.s - self.setSize(l.XM+(rows+1)*l.XS, l.YM+l.YS+12*l.YOFFSET) + self.setSize((2 * l.XM) + (rows + 1) * l.XS, + l.YM + l.YS + 12 * l.YOFFSET) x, y = l.XM, l.YM - s.talon = TalonStack(x, y, self) + s.talon = self.TALON_CLASS(x, y, self) l.createText(s.talon, "s") - x += l.XS + x += (l.XS + l.XM) for i in range(rows): - s.rows.append(RK_RowStack(x, y, self, max_move=1)) + s.rows.append(self.ROWSTACK_CLASS(x, y, self, max_move=1)) x += l.XS l.defaultStackGroups() @@ -391,7 +396,8 @@ class TrustyTwelve(Game): if not stack.cards and stack in self.s.rows: if self.s.talon.cards: old_state = self.enterState(self.S_FILL) - self.s.talon.flipMove() + if not self.s.talon.cards[-1].face_up: + self.s.talon.flipMove() self.s.talon.moveMove(1, stack) self.leaveState(old_state) @@ -401,6 +407,24 @@ class TrustyTwelve(Game): shallHighlightMatch = Game._shallHighlightMatch_RK +class UpAndUp_TalonStack(OpenTalonStack): + rightclickHandler = OpenStack.rightclickHandler + doubleclickHandler = OpenStack.doubleclickHandler + + +class UpAndUp(TrustyTwelve): + TALON_CLASS = UpAndUp_TalonStack + ROWSTACK_CLASS = StackWrapper(RK_RowStack, mod=13, dir=1) + + def createGame(self): + TrustyTwelve.createGame(self, rows=10) + self.sg.dropstacks.append(self.s.talon) + + def startGame(self): + TrustyTwelve.startGame(self) + self.s.talon.fillStack() + + class KnottyNines(TrustyTwelve): def createGame(self): TrustyTwelve.createGame(self, rows=9) @@ -613,3 +637,5 @@ registerGame(GameInfo(762, FourPacks, "Four Packs", GI.GT_2DECK_TYPE, 2, 1, GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(830, FireAndIce, "Fire and Ice", GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_SKILL)) +registerGame(GameInfo(833, UpAndUp, "Up and Up", + GI.GT_1DECK_TYPE, 1, 0, GI.SL_BALANCED))