1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Added Astrocyte game.

This commit is contained in:
Joe R 2023-09-12 18:22:39 -04:00
parent f947fe084f
commit c4e87a1294
3 changed files with 70 additions and 1 deletions

View file

@ -0,0 +1,21 @@
<h1>Astrocyte</h1>
<p>
Spider type. 2 decks. No redeal.
<h3>Object</h3>
<p>
Group all the cards in sets of 13 cards in descending sequence
by suit from King to Ace and move such sets to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="spider.html">Spider</a>,
but with eight columns of eight cards each, plus four free cells.
<h3>Notes</h3>
<p>
Astrocyte was invented by Jan Wolter, and first appeared in his app
<a href="https://politaire.com">Politaire</a>. The game was a combination
of a couple different variants of <a href="spidercells.html">Spidercells</a>,
and is named for star-shaped cells in the brain that are sometimes called
"spider cells".

View file

@ -492,6 +492,7 @@ class GI:
415, 427, 458, 495, 496, 497, 508,
800, 814, 820, 825, 889, 911,)),
("Mary Whitmore Jones", (421, 624,)),
("Jan Wolter", (917,)),
)
GAMES_BY_PYSOL_VERSION = (
@ -574,7 +575,7 @@ class GI:
('fc-2.20', tuple(range(855, 897))),
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
tuple(range(13160, 13163)) + (16682,)),
('dev', tuple(range(906, 917)) + tuple(range(11017, 11020)) +
('dev', tuple(range(906, 918)) + tuple(range(11017, 11020)) +
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
)

View file

@ -1480,6 +1480,51 @@ class ScorpionTowers(Game):
return True
# ************************************************************************
# * Astrocyte
# ************************************************************************
class Astrocyte(Game):
def createGame(self):
# create layout
l, s = Layout(self), self.s
# set window
self.setSize(l.XM + 14 * l.XS, l.YM + 2 * l.YS + 20 * l.YOFFSET)
# create stacks
x, y = l.XM + 1.5 * l.XS, l.YM
for i in range(4):
stack = ReserveStack(x, y, self, max_cards=1)
s.reserves.append(stack)
stack.CARD_YOFFSET = l.YOFFSET
x += l.XS
x, y = l.XM + 6 * l.XS, l.YM
for i in range(8):
s.foundations.append(Spider_SS_Foundation(x, y, self))
x += l.XS
x, y = l.XM + 3 * l.XS, l.YM + l.YS
for i in range(8):
s.rows.append(Spider_RowStack(x, y, self))
x += l.XS
x, y = l.XM, l.YM
s.talon = DealRowTalonStack(x, y, self)
l.createText(s.talon, "ne")
# define stack-groups
l.defaultStackGroups()
def startGame(self):
for i in range(7):
self.s.talon.dealRow(flip=0, frames=0)
self._startAndDealRow()
# register the game
registerGame(GameInfo(10, RelaxedSpider, "Relaxed Spider",
GI.GT_SPIDER | GI.GT_RELAXED, 2, 0, GI.SL_MOSTLY_SKILL))
@ -1614,3 +1659,5 @@ registerGame(GameInfo(825, ScorpionTowers, "Scorpion Towers",
GI.GT_SPIDER | GI.GT_OPEN, 1, 0, GI.SL_SKILL))
registerGame(GameInfo(870, FairMaids, "Fair Maids",
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(917, Astrocyte, "Astrocyte",
GI.GT_SPIDER, 2, 0, GI.SL_MOSTLY_SKILL))