diff --git a/html-src/rules/backbone.html b/html-src/rules/backbone.html new file mode 100644 index 00000000..90754462 --- /dev/null +++ b/html-src/rules/backbone.html @@ -0,0 +1,26 @@ +
+Napoleon type. 2 decks. No redeal. + +
+Move all cards to the foundations. + +
+Eight cards are dealt to tableau piles, and two sets of eleven +cards are dealt to two reserve piles - one additional reserve +card is placed on top of both piles, overlapping them. This card +must be moved before any card from the other reserve piles is +moved. Only the top card from the reserves can be moved. +
+Tableau piles are built down by the same suit. Only one card at +a time can be moved between tableau piles, or a card from the +reserve can be moved to a tableau pile. However, you cannot +build on the reserves. +
+Aces can be moved to the foundations, which are then built up +by suit. +
+You can deal cards from the talon one at a time, and move these +cards to the tableau or foundation. No redeal is allowed. diff --git a/html-src/rules/backboneplus.html b/html-src/rules/backboneplus.html new file mode 100644 index 00000000..d0110bc1 --- /dev/null +++ b/html-src/rules/backboneplus.html @@ -0,0 +1,12 @@ +
+Napoleon type. 2 decks. No redeal. + +
+Move all cards to the foundations. + +
+Like Backbone, +but with ten tableau piles. \ No newline at end of file diff --git a/html-src/rules/smallbackbone.html b/html-src/rules/smallbackbone.html new file mode 100644 index 00000000..9b1ce59a --- /dev/null +++ b/html-src/rules/smallbackbone.html @@ -0,0 +1,12 @@ +
+Napoleon type. 2 decks. No redeal. + +
+Move all cards to the foundations. + +
+Like Backbone, +but with only nine cards in each reserve. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 636cc0f9..6c8c222e 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -303,7 +303,7 @@ class GI: 96, 100, 104, 105, 111, 112, 113, 130, 135, 139, 144, 146, 147, 148, 200, 201, 206, 224, 225, 229, 230, 233, 257, 258, 280, 281, 282, 283, 284, 334, 551, 552, 553, 572, 593, 674, - 700, 737, 772, 810, 819, 22231, + 700, 737, 772, 810, 819, 824, 22231, )), # KDE Patience 0.7.3 from KDE 1.1.2 (we have 6 out of 9 games) @@ -423,7 +423,7 @@ class GI: ('fc-2.8', (343001,)), ('fc-2.12', tuple(range(774, 811)) + (16681,) + tuple(range(22217, 22219))), - ('fc-2.14', tuple(range(811, 824))) + ('fc-2.14', tuple(range(811, 825))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/braid.py b/pysollib/games/braid.py index a22b5fd2..f8de7489 100644 --- a/pysollib/games/braid.py +++ b/pysollib/games/braid.py @@ -300,6 +300,7 @@ class Backbone_BraidStack(OpenStack): class Backbone(Game): + RESERVE_CARDS = 11 Hint_Class = CautiousDefaultHint @@ -309,7 +310,8 @@ class Backbone(Game): # set window w, h = l.XM+(rows+2)*l.XS, max( - l.YM+3*l.XS+10*l.YOFFSET, l.YM+2*l.YS+11*l.YOFFSET+l.TEXT_HEIGHT) + l.YM + 3 * l.XS + 10 * l.YOFFSET, + l.YM + 2 * l.YS + self.RESERVE_CARDS * l.YOFFSET + l.TEXT_HEIGHT) self.setSize(w, h) # create stacks @@ -324,7 +326,7 @@ class Backbone(Game): s.reserves.append(Backbone_BraidStack(x, y, self, max_accept=0)) x += l.XS s.reserves.append(Backbone_BraidStack(x, y, self, max_accept=0)) - x, y = l.XM+(rows+1)*l.XS//2, l.YM+11*l.YOFFSET + x, y = l.XM+(rows+1)*l.XS//2, l.YM+self.RESERVE_CARDS*l.YOFFSET s.reserves.append(BasicRowStack(x, y, self, max_accept=0)) x, y = l.XM, l.YM+l.YS @@ -347,7 +349,7 @@ class Backbone(Game): l.defaultStackGroups() def startGame(self): - for i in range(10): + for i in range(self.RESERVE_CARDS - 1): self.s.talon.dealRow(rows=self.s.reserves[:2], frames=0) self.s.talon.dealRow(rows=self.s.reserves, frames=0) self.startDealSample() @@ -362,6 +364,10 @@ class BackbonePlus(Backbone): Backbone.createGame(self, rows=10) +class SmallBackbone(Backbone): + RESERVE_CARDS = 9 + + # ************************************************************************ # * Big Braid # ************************************************************************ @@ -644,3 +650,5 @@ 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)) +registerGame(GameInfo(824, SmallBackbone, "Small Backbone", + GI.GT_NAPOLEON, 2, 0, GI.SL_BALANCED)) diff --git a/pysollib/mfxutil.py b/pysollib/mfxutil.py index b5b27ad4..65f192e6 100644 --- a/pysollib/mfxutil.py +++ b/pysollib/mfxutil.py @@ -87,7 +87,13 @@ def latin1_to_ascii(n): def latin1_normalize(n): - return re.sub(r"[^\w]", "", latin1_to_ascii(n).lower()) + normal = re.sub(r"[^\w]", "", latin1_to_ascii(n).lower()) + # Some game names end in a +, and would have the same normalized + # name as their counterpart. This is a failsafe to avoid duplicate + # name conflicts. Though there is probably a better way to do this. + if n.endswith("+"): + normal += "plus" + return normal def format_time(t):