From 4dcf1f2da627260405aba5465824e5fe68af8205 Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 25 May 2023 17:33:13 -0400 Subject: [PATCH] Added Housefly game. --- html-src/rules/housefly.html | 11 +++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/numerica.py | 17 +++++++++++++---- 3 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 html-src/rules/housefly.html diff --git a/html-src/rules/housefly.html b/html-src/rules/housefly.html new file mode 100644 index 00000000..77869307 --- /dev/null +++ b/html-src/rules/housefly.html @@ -0,0 +1,11 @@ +

Housefly

+

+Numerica type. 1 deck. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Gnat, but with six tableau piles. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 6b8d1b7d..4a681f82 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -559,7 +559,7 @@ class GI: ('fc-2.14', tuple(range(811, 827))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), ('fc-2.20', tuple(range(855, 897))), - ('dev', tuple(range(897, 899)) + tuple(range(13160, 13163)) + (16682,)) + ('dev', tuple(range(897, 900)) + tuple(range(13160, 13163)) + (16682,)) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/numerica.py b/pysollib/games/numerica.py index 9f52ef94..72211faf 100644 --- a/pysollib/games/numerica.py +++ b/pysollib/games/numerica.py @@ -422,18 +422,20 @@ class Fanny(Frog): # ************************************************************************ # * Gnat +# * Housefly # ************************************************************************ class Gnat(Game): Hint_Class = Numerica_Hint - def createGame(self): + def createGame(self, rows=4): # create layout l, s = Layout(self), self.s # set window - self.setSize(l.XM + 8*l.XS, l.YM + 2*l.YS+16*l.YOFFSET) + self.setSize(l.XM + (4 + rows) * l.XS, + l.YM + 2 * l.YS + 16 * l.YOFFSET) # create stacks x, y = l.XM, l.YM @@ -447,11 +449,11 @@ class Gnat(Game): x += l.XS x, y = l.XM+2*l.XS, l.YM+l.YS - for i in range(4): + for i in range(rows): s.rows.append( Numerica_RowStack(x, y, self, max_accept=UNLIMITED_ACCEPTS)) x += l.XS - x = l.XM+6*l.XS + x = l.XM + (2 + rows) * l.XS for i in range(2): y = l.YM + l.YS//2 for j in range(3): @@ -473,6 +475,11 @@ class Gnat(Game): self.s.talon.dealCards() +class Housefly(Gnat): + def createGame(self): + Gnat.createGame(self, rows=6) + + # ************************************************************************ # * Gloaming # * Chamberlain @@ -1241,3 +1248,5 @@ registerGame(GameInfo(760, Aglet, "Aglet", GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(836, Ladybug, "Ladybug", GI.GT_1DECK_TYPE, 1, -2, GI.SL_BALANCED)) +registerGame(GameInfo(899, Housefly, "Housefly", + GI.GT_NUMERICA, 1, 0, GI.SL_BALANCED))