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

added new game, Daddy Longlegs

This commit is contained in:
Jim Sizelove 2011-11-17 21:38:31 -05:00
parent 39c479ab05
commit 8160ee1186
3 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<h1>Daddy Longlegs</h1>
<p>Spider type. 1 deck. No redeal.</p>
<h3>Object</h3>
<p>Group all the cards into four sets of 13 cards by suit in ascending sequence from Ace to King.</p>
<h3>Rules</h3>
<p>Cards are dealt four at a time, one card into each of four piles. A card can be moved onto the end of another pile, if it is the same suit and follows in sequence. The rest of the pile moves with the card. Only an Ace (with the rest of its pile) can move to an empty space.</p>
<p>At any time, you can deal more cards by clicking on the talon. One card will be added to each of the playing piles.</p>
<h3>History</h3>
<p>I created Daddy Longlegs in the early 1980's to amuse myself with a different solitaire variant. Over the years, I have implemented this game many times under the name of "Deal Four" as an exercise when learning new programming languages.</p>
<p>I learned of pysol in 2006 and almost immediately realized that it is a perfect platform for Daddy Longlegs. Thank you, Markus Oberhumer!</p>
<h3>Author</h3>
<p>Jim Sizelove</p>
<p>sizelji@comcast.net</p>
<p>March 8, 2007</p>

View file

@ -35,6 +35,7 @@ import camelot
import canfield
import capricieuse
import curdsandwhey
import daddylonglegs
import dieboesesieben
import diplomat
import doublets

View file

@ -0,0 +1,57 @@
## vim:ts=4:et:nowrap:fileencoding=utf-8
##
# imports
import sys
# PySol imports
from pysollib.gamedb import registerGame, GameInfo, GI
from pysollib.util import *
from pysollib.stack import *
from pysollib.game import Game
from pysollib.layout import Layout
#***********************************************************************
# Daddy Longlegs (by Jim Sizelove)
#***********************************************************************
class DaddyLonglegs(Game):
Talon_Class = DealRowTalonStack
RowStack_Class = StackWrapper(Yukon_SS_RowStack, dir=1, base_rank=ACE)
def createGame(self, **layout):
# create layout
l, s = Layout(self), self.s
# set window
self.setSize(l.XM + 6*l.XS, l.YM + 7*l.YS)
# create stacks
x, y, = l.XM, l.YM
s.talon = self.Talon_Class(x, y, self)
l.createText(s.talon, "ss")
x = x + 3*l.XS/2
for i in range(4):
s.rows.append(self.RowStack_Class(x, y, self))
x = x + l.XS
# define stack-groups
l.defaultStackGroups()
def startGame(self):
self.s.talon.dealRow()
def isGameWon(self):
if self.s.talon.cards:
return 0
for row in self.s.rows:
if not isSameSuitSequence(row.cards, dir=1):
return 0
return 1
# register the game
registerGame(GameInfo(555001, DaddyLonglegs, "Daddy Longlegs",
GI.GT_SPIDER, 1, 0, GI.SL_MOSTLY_SKILL,
rules_filename="daddylonglegs.html"))