From 54e34bb4c0422366b2eefd310544d2fdb01465b5 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 22 Jan 2022 15:06:33 -0500 Subject: [PATCH] Added Neptune game. --- html-src/rules/elevens.html | 25 ++++++++++++++++++++ html-src/rules/elevenstoo.html | 16 +++++++++++++ html-src/rules/neptune.html | 25 ++++++++++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/pyramid.py | 42 +++++++++++++++++++++++++++++++--- 5 files changed, 106 insertions(+), 4 deletions(-) create mode 100644 html-src/rules/elevens.html create mode 100644 html-src/rules/elevenstoo.html create mode 100644 html-src/rules/neptune.html diff --git a/html-src/rules/elevens.html b/html-src/rules/elevens.html new file mode 100644 index 00000000..8515237d --- /dev/null +++ b/html-src/rules/elevens.html @@ -0,0 +1,25 @@ +

Elevens

+

+Pairing game type. 1 deck. No redeal. + +

Object

+

+Move all cards to the single foundation. + +

Rules

+

+Nine cards are dealt to the tableau. Pairs of cards that total +eleven can be moved to the foundation, and the spaces are filled from +the talon. +

+Picture cards are removed in a set of Jack, Queen, King. A +single picture card of each type can be moved to the three reserves, +and the tableau pile is filled behind it. Once the three reserves +contain one of each picture card, they are all removed to the foundation. +

+The game is won if all cards have been discarded. + +

Notes

+

+ +Autodrop is disabled for this game. diff --git a/html-src/rules/elevenstoo.html b/html-src/rules/elevenstoo.html new file mode 100644 index 00000000..22447979 --- /dev/null +++ b/html-src/rules/elevenstoo.html @@ -0,0 +1,16 @@ +

Elevens Too

+

+Pairing type. 1 deck. No redeal. + +

Object

+

+Move all cards to the single foundation. + +

Quick Description

+

+Like Elevens, +but when a king, queen, or jack is in the reserves, +those tableau piles are not filled until they are +discarded to the foundation. In other words, the +King, Queen, and Jack must all be discarded at the +same time. diff --git a/html-src/rules/neptune.html b/html-src/rules/neptune.html new file mode 100644 index 00000000..14284cef --- /dev/null +++ b/html-src/rules/neptune.html @@ -0,0 +1,25 @@ +

Neptune

+

+Pairing game type. 1 deck. No redeal. + +

Object

+

+Pair off cards until you empty the talon. + +

Rules

+

+Eight cards are dealt to the tableau. Pairs of cards of +consecutive rank can be removed and discarded to the single +foundation, and the spaces are filled from the talon. +

+The game is won if the talon is emptied. + +

Notes

+

+Unlike most pairing type games, you won't need to move all cards +to the foundation, because it is mathematically impossible to do +so. However, after winning the game, if you click "Back to Game", +it's often possible to pair off a few more cards, leaving as few +as four cards left in the end. +

+Autodrop is disabled for this game. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 2d2b64c4..f5b30d9f 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -528,7 +528,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, 854)) + tuple(range(22400, 22407))) + ('fc-2.16', tuple(range(827, 855)) + tuple(range(22400, 22407))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/pyramid.py b/pysollib/games/pyramid.py index 863d7b05..95999215 100644 --- a/pysollib/games/pyramid.py +++ b/pysollib/games/pyramid.py @@ -534,9 +534,13 @@ class Elevens(Pyramid): layout, s = Layout(self), self.s + rp = 0 + if reserves > 0: + rp = 1.5 + self.setSize( - layout.XM+(cols+2)*layout.XS, - layout.YM+(rows+1.5)*layout.YS) + layout.XM + (cols + 2) * layout.XS, + layout.YM + (rows + rp) * layout.YS) x, y = self.width-layout.XS, layout.YM s.talon = TalonStack(x, y, self) @@ -582,7 +586,8 @@ class Elevens(Pyramid): for s in self.s.reserves: if s.cards: reserves_ncards += 1 - if reserves_ncards == len(self.s.reserves): + if (reserves_ncards == len(self.s.reserves) and + len(self.s.reserves) > 0): if not self.demo: self.playSample("droppair", priority=200) for s in self.s.reserves: @@ -709,6 +714,35 @@ class Fifteens(Elevens): self.leaveState(old_state) +# ************************************************************************ +# * Neptune +# ************************************************************************ + +class Neptune_RowStack(Elevens_RowStack): + + def acceptsCards(self, from_stack, cards): + if from_stack is self or not self.cards or len(cards) != 1: + return False + c = self.cards[-1] + return (c.face_up and cards[0].face_up and + (cards[0].rank == c.rank - 1 or cards[0].rank == c.rank + 1)) + + def moveMove(self, ncards, to_stack, frames=-1, shadow=-1): + if to_stack in self.game.s.rows: + self._dropPairMove(ncards, to_stack, frames=-1, shadow=shadow) + self.fillStack() + + +class Neptune(Elevens): + RowStack_Class = Neptune_RowStack + + def createGame(self): + Elevens.createGame(self, rows=4, cols=2, reserves=0) + + def isGameWon(self): + return len(self.s.talon.cards) == 0 + + # ************************************************************************ # * Triple Alliance # ************************************************************************ @@ -1472,3 +1506,5 @@ registerGame(GameInfo(802, TripleAlliance2Decks, "Triple Alliance (2 decks)", GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(846, PyramidDozen, "Pyramid Dozen", GI.GT_PAIRING_TYPE | GI.GT_OPEN, 1, 0, GI.SL_BALANCED)) +registerGame(GameInfo(854, Neptune, "Neptune", + GI.GT_PAIRING_TYPE, 1, 0, GI.SL_BALANCED))