1996-12-29 16:15:32 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
|
|
|
|
"""Solitaire game, much like the one that comes with MS Windows.
|
|
|
|
|
|
|
|
Limitations:
|
|
|
|
|
|
|
|
- No cute graphical images for the playing cards faces or backs.
|
|
|
|
- No scoring or timer.
|
|
|
|
- No undo.
|
|
|
|
- No option to turn 3 cards at a time.
|
|
|
|
- No keyboard shortcuts.
|
|
|
|
- Less fancy animation when you win.
|
|
|
|
- The determination of which stack you drag to is more relaxed.
|
2004-07-18 03:16:08 -03:00
|
|
|
|
1996-12-29 16:15:32 -04:00
|
|
|
Apology:
|
|
|
|
|
|
|
|
I'm not much of a card player, so my terminology in these comments may
|
|
|
|
at times be a little unusual. If you have suggestions, please let me
|
|
|
|
know!
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Imports
|
|
|
|
|
|
|
|
import math
|
|
|
|
import random
|
|
|
|
|
2009-01-04 14:53:28 -04:00
|
|
|
from tkinter import *
|
1996-12-29 22:20:29 -04:00
|
|
|
from Canvas import Rectangle, CanvasText, Group, Window
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Fix a bug in Canvas.Group as distributed in Python 1.4. The
|
1996-12-29 22:20:29 -04:00
|
|
|
# distributed bind() method is broken. Rather than asking you to fix
|
|
|
|
# the source, we fix it here by deriving a subclass:
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
class Group(Group):
|
|
|
|
def bind(self, sequence=None, command=None):
|
2004-07-18 03:16:08 -03:00
|
|
|
return self.canvas.tag_bind(self.id, sequence, command)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Constants determining the size and lay-out of cards and stacks. We
|
|
|
|
# work in a "grid" where each card/stack is surrounded by MARGIN
|
|
|
|
# pixels of space on each side, so adjacent stacks are separated by
|
1996-12-29 22:20:29 -04:00
|
|
|
# 2*MARGIN pixels. OFFSET is the offset used for displaying the
|
|
|
|
# face down cards in the row stacks.
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
CARDWIDTH = 100
|
|
|
|
CARDHEIGHT = 150
|
|
|
|
MARGIN = 10
|
|
|
|
XSPACING = CARDWIDTH + 2*MARGIN
|
|
|
|
YSPACING = CARDHEIGHT + 4*MARGIN
|
|
|
|
OFFSET = 5
|
|
|
|
|
|
|
|
# The background color, green to look like a playing table. The
|
|
|
|
# standard green is way too bright, and dark green is way to dark, so
|
|
|
|
# we use something in between. (There are a few more colors that
|
|
|
|
# could be customized, but they are less controversial.)
|
|
|
|
|
|
|
|
BACKGROUND = '#070'
|
|
|
|
|
|
|
|
|
|
|
|
# Suits and colors. The values of the symbolic suit names are the
|
|
|
|
# strings used to display them (you change these and VALNAMES to
|
|
|
|
# internationalize the game). The COLOR dictionary maps suit names to
|
|
|
|
# colors (red and black) which must be Tk color names. The keys() of
|
|
|
|
# the COLOR dictionary conveniently provides us with a list of all
|
|
|
|
# suits (in arbitrary order).
|
|
|
|
|
|
|
|
HEARTS = 'Heart'
|
|
|
|
DIAMONDS = 'Diamond'
|
|
|
|
CLUBS = 'Club'
|
|
|
|
SPADES = 'Spade'
|
|
|
|
|
|
|
|
RED = 'red'
|
|
|
|
BLACK = 'black'
|
|
|
|
|
|
|
|
COLOR = {}
|
|
|
|
for s in (HEARTS, DIAMONDS):
|
|
|
|
COLOR[s] = RED
|
|
|
|
for s in (CLUBS, SPADES):
|
|
|
|
COLOR[s] = BLACK
|
|
|
|
|
2007-07-17 17:59:35 -03:00
|
|
|
ALLSUITS = list(COLOR.keys())
|
1996-12-29 16:15:32 -04:00
|
|
|
NSUITS = len(ALLSUITS)
|
|
|
|
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
# Card values are 1-13. We also define symbolic names for the picture
|
|
|
|
# cards. ALLVALUES is a list of all card values.
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
ACE = 1
|
|
|
|
JACK = 11
|
|
|
|
QUEEN = 12
|
|
|
|
KING = 13
|
|
|
|
ALLVALUES = range(1, 14) # (one more than the highest value)
|
1996-12-29 22:20:29 -04:00
|
|
|
NVALUES = len(ALLVALUES)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
# VALNAMES is a list that maps a card value to string. It contains a
|
|
|
|
# dummy element at index 0 so it can be indexed directly with the card
|
|
|
|
# value.
|
|
|
|
|
2007-07-17 17:59:35 -03:00
|
|
|
VALNAMES = ["", "A"] + list(map(str, range(2, 11))) + ["J", "Q", "K"]
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Solitaire constants. The only one I can think of is the number of
|
|
|
|
# row stacks.
|
|
|
|
|
|
|
|
NROWS = 7
|
|
|
|
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
# The rest of the program consists of class definitions. These are
|
|
|
|
# further described in their documentation strings.
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
class Card:
|
|
|
|
|
|
|
|
"""A playing card.
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
A card doesn't record to which stack it belongs; only the stack
|
|
|
|
records this (it turns out that we always know this from the
|
|
|
|
context, and this saves a ``double update'' with potential for
|
|
|
|
inconsistencies).
|
|
|
|
|
1996-12-29 16:15:32 -04:00
|
|
|
Public methods:
|
|
|
|
|
|
|
|
moveto(x, y) -- move the card to an absolute position
|
|
|
|
moveby(dx, dy) -- move the card by a relative offset
|
|
|
|
tkraise() -- raise the card to the top of its stack
|
|
|
|
showface(), showback() -- turn the card face up or down & raise it
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
Public read-only instance variables:
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
suit, value, color -- the card's suit, value and color
|
1996-12-29 16:15:32 -04:00
|
|
|
face_shown -- true when the card is shown face up, else false
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
Semi-public read-only instance variables (XXX should be made
|
|
|
|
private):
|
2004-07-18 03:16:08 -03:00
|
|
|
|
1996-12-29 16:15:32 -04:00
|
|
|
group -- the Canvas.Group representing the card
|
|
|
|
x, y -- the position of the card's top left corner
|
|
|
|
|
|
|
|
Private instance variables:
|
|
|
|
|
|
|
|
__back, __rect, __text -- the canvas items making up the card
|
|
|
|
|
|
|
|
(To show the card face up, the text item is placed in front of
|
|
|
|
rect and the back is placed behind it. To show it face down, this
|
1996-12-29 22:20:29 -04:00
|
|
|
is reversed. The card is created face down.)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def __init__(self, suit, value, canvas):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Card constructor.
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
Arguments are the card's suit and value, and the canvas widget.
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
The card is created at position (0, 0), with its face down
|
|
|
|
(adding it to a stack will position it according to that
|
|
|
|
stack's rules).
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
"""
|
|
|
|
self.suit = suit
|
|
|
|
self.value = value
|
|
|
|
self.color = COLOR[suit]
|
|
|
|
self.face_shown = 0
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
self.x = self.y = 0
|
|
|
|
self.group = Group(canvas)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
text = "%s %s" % (VALNAMES[value], suit)
|
Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66394 | benjamin.peterson | 2008-09-11 17:04:02 -0500 (Thu, 11 Sep 2008) | 1 line
fix typo
........
r66404 | gerhard.haering | 2008-09-12 08:54:06 -0500 (Fri, 12 Sep 2008) | 2 lines
sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API.
........
r66412 | gerhard.haering | 2008-09-12 13:58:57 -0500 (Fri, 12 Sep 2008) | 2 lines
Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.
........
r66414 | gerhard.haering | 2008-09-12 17:33:22 -0500 (Fri, 12 Sep 2008) | 2 lines
Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
........
r66424 | andrew.kuchling | 2008-09-12 20:22:08 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.)
........
r66425 | andrew.kuchling | 2008-09-12 20:27:33 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing
........
r66426 | andrew.kuchling | 2008-09-12 20:34:41 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section
........
r66427 | andrew.kuchling | 2008-09-12 20:42:55 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons
........
r66428 | andrew.kuchling | 2008-09-12 20:43:28 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division.
........
r66429 | andrew.kuchling | 2008-09-12 20:47:02 -0500 (Fri, 12 Sep 2008) | 1 line
Remove semicolon
........
r66430 | andrew.kuchling | 2008-09-12 20:48:36 -0500 (Fri, 12 Sep 2008) | 1 line
Subclass exception
........
r66431 | andrew.kuchling | 2008-09-12 20:56:56 -0500 (Fri, 12 Sep 2008) | 1 line
Fix SyntaxError
........
r66432 | andrew.kuchling | 2008-09-12 20:57:25 -0500 (Fri, 12 Sep 2008) | 1 line
Update uses of string exceptions
........
r66433 | andrew.kuchling | 2008-09-12 21:08:30 -0500 (Fri, 12 Sep 2008) | 1 line
Use title case
........
r66434 | andrew.kuchling | 2008-09-12 21:09:15 -0500 (Fri, 12 Sep 2008) | 1 line
Remove extra 'the'; the following title includes it
........
r66435 | andrew.kuchling | 2008-09-12 21:11:51 -0500 (Fri, 12 Sep 2008) | 1 line
#3288: Document as_integer_ratio
........
r66436 | andrew.kuchling | 2008-09-12 21:14:15 -0500 (Fri, 12 Sep 2008) | 1 line
Use title case
........
2008-09-13 12:58:53 -03:00
|
|
|
self.__text = CanvasText(canvas, CARDWIDTH//2, 0,
|
2004-07-18 03:16:08 -03:00
|
|
|
anchor=N, fill=self.color, text=text)
|
|
|
|
self.group.addtag_withtag(self.__text)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
self.__rect = Rectangle(canvas, 0, 0, CARDWIDTH, CARDHEIGHT,
|
|
|
|
outline='black', fill='white')
|
|
|
|
self.group.addtag_withtag(self.__rect)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
self.__back = Rectangle(canvas, MARGIN, MARGIN,
|
|
|
|
CARDWIDTH-MARGIN, CARDHEIGHT-MARGIN,
|
|
|
|
outline='black', fill='blue')
|
|
|
|
self.group.addtag_withtag(self.__back)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def __repr__(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Return a string for debug print statements."""
|
|
|
|
return "Card(%r, %r)" % (self.suit, self.value)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def moveto(self, x, y):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Move the card to absolute position (x, y)."""
|
|
|
|
self.moveby(x - self.x, y - self.y)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def moveby(self, dx, dy):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Move the card by (dx, dy)."""
|
|
|
|
self.x = self.x + dx
|
|
|
|
self.y = self.y + dy
|
|
|
|
self.group.move(dx, dy)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def tkraise(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Raise the card above all other objects in its canvas."""
|
|
|
|
self.group.tkraise()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def showface(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Turn the card's face up."""
|
|
|
|
self.tkraise()
|
|
|
|
self.__rect.tkraise()
|
|
|
|
self.__text.tkraise()
|
|
|
|
self.face_shown = 1
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def showback(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Turn the card's face down."""
|
|
|
|
self.tkraise()
|
|
|
|
self.__rect.tkraise()
|
|
|
|
self.__back.tkraise()
|
|
|
|
self.face_shown = 0
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
class Stack:
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
"""A generic stack of cards.
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
This is used as a base class for all other stacks (e.g. the deck,
|
|
|
|
the suit stacks, and the row stacks).
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
Public methods:
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
add(card) -- add a card to the stack
|
|
|
|
delete(card) -- delete a card from the stack
|
|
|
|
showtop() -- show the top card (if any) face up
|
|
|
|
deal() -- delete and return the top card, or None if empty
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
Method that subclasses may override:
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
position(card) -- move the card to its proper (x, y) position
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
The default position() method places all cards at the stack's
|
|
|
|
own (x, y) position.
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
userclickhandler(), userdoubleclickhandler() -- called to do
|
|
|
|
subclass specific things on single and double clicks
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
The default user (single) click handler shows the top card
|
|
|
|
face up. The default user double click handler calls the user
|
2004-07-18 03:16:08 -03:00
|
|
|
single click handler.
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
usermovehandler(cards) -- called to complete a subpile move
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
The default user move handler moves all moved cards back to
|
|
|
|
their original position (by calling the position() method).
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
Private methods:
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
clickhandler(event), doubleclickhandler(event),
|
|
|
|
motionhandler(event), releasehandler(event) -- event handlers
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
The default event handlers turn the top card of the stack with
|
|
|
|
its face up on a (single or double) click, and also support
|
|
|
|
moving a subpile around.
|
2004-07-18 03:16:08 -03:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
startmoving(event) -- begin a move operation
|
|
|
|
finishmoving() -- finish a move operation
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, x, y, game=None):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Stack constructor.
|
|
|
|
|
|
|
|
Arguments are the stack's nominal x and y position (the top
|
|
|
|
left corner of the first card placed in the stack), and the
|
|
|
|
game object (which is used to get the canvas; subclasses use
|
|
|
|
the game object to find other stacks).
|
|
|
|
|
|
|
|
"""
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
self.game = game
|
|
|
|
self.cards = []
|
|
|
|
self.group = Group(self.game.canvas)
|
|
|
|
self.group.bind('<1>', self.clickhandler)
|
|
|
|
self.group.bind('<Double-1>', self.doubleclickhandler)
|
|
|
|
self.group.bind('<B1-Motion>', self.motionhandler)
|
|
|
|
self.group.bind('<ButtonRelease-1>', self.releasehandler)
|
|
|
|
self.makebottom()
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def makebottom(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
pass
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def __repr__(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Return a string for debug print statements."""
|
|
|
|
return "%s(%d, %d)" % (self.__class__.__name__, self.x, self.y)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
# Public methods
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def add(self, card):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.cards.append(card)
|
|
|
|
card.tkraise()
|
|
|
|
self.position(card)
|
|
|
|
self.group.addtag_withtag(card.group)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def delete(self, card):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.cards.remove(card)
|
|
|
|
card.group.dtag(self.group)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def showtop(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
if self.cards:
|
|
|
|
self.cards[-1].showface()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def deal(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
if not self.cards:
|
|
|
|
return None
|
|
|
|
card = self.cards[-1]
|
|
|
|
self.delete(card)
|
|
|
|
return card
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
# Subclass overridable methods
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def position(self, card):
|
2004-07-18 03:16:08 -03:00
|
|
|
card.moveto(self.x, self.y)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def userclickhandler(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.showtop()
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def userdoubleclickhandler(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.userclickhandler()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def usermovehandler(self, cards):
|
2004-07-18 03:16:08 -03:00
|
|
|
for card in cards:
|
|
|
|
self.position(card)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
# Event handlers
|
|
|
|
|
|
|
|
def clickhandler(self, event):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.finishmoving() # In case we lost an event
|
|
|
|
self.userclickhandler()
|
|
|
|
self.startmoving(event)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def motionhandler(self, event):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.keepmoving(event)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def releasehandler(self, event):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.keepmoving(event)
|
|
|
|
self.finishmoving()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def doubleclickhandler(self, event):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.finishmoving() # In case we lost an event
|
|
|
|
self.userdoubleclickhandler()
|
|
|
|
self.startmoving(event)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
# Move internals
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
moving = None
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def startmoving(self, event):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.moving = None
|
|
|
|
tags = self.game.canvas.gettags('current')
|
|
|
|
for i in range(len(self.cards)):
|
|
|
|
card = self.cards[i]
|
|
|
|
if card.group.tag in tags:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
if not card.face_shown:
|
|
|
|
return
|
|
|
|
self.moving = self.cards[i:]
|
|
|
|
self.lastx = event.x
|
|
|
|
self.lasty = event.y
|
|
|
|
for card in self.moving:
|
|
|
|
card.tkraise()
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def keepmoving(self, event):
|
2004-07-18 03:16:08 -03:00
|
|
|
if not self.moving:
|
|
|
|
return
|
|
|
|
dx = event.x - self.lastx
|
|
|
|
dy = event.y - self.lasty
|
|
|
|
self.lastx = event.x
|
|
|
|
self.lasty = event.y
|
|
|
|
if dx or dy:
|
|
|
|
for card in self.moving:
|
|
|
|
card.moveby(dx, dy)
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def finishmoving(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
cards = self.moving
|
|
|
|
self.moving = None
|
|
|
|
if cards:
|
|
|
|
self.usermovehandler(cards)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
class Deck(Stack):
|
|
|
|
|
|
|
|
"""The deck is a stack with support for shuffling.
|
|
|
|
|
|
|
|
New methods:
|
|
|
|
|
|
|
|
fill() -- create the playing cards
|
|
|
|
shuffle() -- shuffle the playing cards
|
|
|
|
|
|
|
|
A single click moves the top card to the game's open deck and
|
|
|
|
moves it face up; if we're out of cards, it moves the open deck
|
|
|
|
back to the deck.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def makebottom(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
bottom = Rectangle(self.game.canvas,
|
|
|
|
self.x, self.y,
|
|
|
|
self.x+CARDWIDTH, self.y+CARDHEIGHT,
|
|
|
|
outline='black', fill=BACKGROUND)
|
|
|
|
self.group.addtag_withtag(bottom)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def fill(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
for suit in ALLSUITS:
|
|
|
|
for value in ALLVALUES:
|
|
|
|
self.add(Card(suit, value, self.game.canvas))
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def shuffle(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
n = len(self.cards)
|
|
|
|
newcards = []
|
|
|
|
for i in randperm(n):
|
|
|
|
newcards.append(self.cards[i])
|
|
|
|
self.cards = newcards
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def userclickhandler(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
opendeck = self.game.opendeck
|
|
|
|
card = self.deal()
|
|
|
|
if not card:
|
|
|
|
while 1:
|
|
|
|
card = opendeck.deal()
|
|
|
|
if not card:
|
|
|
|
break
|
|
|
|
self.add(card)
|
|
|
|
card.showback()
|
|
|
|
else:
|
|
|
|
self.game.opendeck.add(card)
|
|
|
|
card.showface()
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
def randperm(n):
|
|
|
|
"""Function returning a random permutation of range(n)."""
|
|
|
|
r = range(n)
|
|
|
|
x = []
|
|
|
|
while r:
|
2004-07-18 03:16:08 -03:00
|
|
|
i = random.choice(r)
|
|
|
|
x.append(i)
|
|
|
|
r.remove(i)
|
1996-12-29 22:20:29 -04:00
|
|
|
return x
|
|
|
|
|
|
|
|
|
|
|
|
class OpenStack(Stack):
|
|
|
|
|
1996-12-29 22:37:07 -04:00
|
|
|
def acceptable(self, cards):
|
2004-07-18 03:16:08 -03:00
|
|
|
return 0
|
1996-12-29 22:37:07 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def usermovehandler(self, cards):
|
2004-07-18 03:16:08 -03:00
|
|
|
card = cards[0]
|
|
|
|
stack = self.game.closeststack(card)
|
|
|
|
if not stack or stack is self or not stack.acceptable(cards):
|
|
|
|
Stack.usermovehandler(self, cards)
|
|
|
|
else:
|
|
|
|
for card in cards:
|
|
|
|
self.delete(card)
|
|
|
|
stack.add(card)
|
|
|
|
self.game.wincheck()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def userdoubleclickhandler(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
if not self.cards:
|
|
|
|
return
|
|
|
|
card = self.cards[-1]
|
|
|
|
if not card.face_shown:
|
|
|
|
self.userclickhandler()
|
|
|
|
return
|
|
|
|
for s in self.game.suits:
|
|
|
|
if s.acceptable([card]):
|
|
|
|
self.delete(card)
|
|
|
|
s.add(card)
|
|
|
|
self.game.wincheck()
|
|
|
|
break
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
class SuitStack(OpenStack):
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def makebottom(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
bottom = Rectangle(self.game.canvas,
|
|
|
|
self.x, self.y,
|
|
|
|
self.x+CARDWIDTH, self.y+CARDHEIGHT,
|
|
|
|
outline='black', fill='')
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def userclickhandler(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
pass
|
1996-12-29 16:15:32 -04:00
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
def userdoubleclickhandler(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
pass
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def acceptable(self, cards):
|
2004-07-18 03:16:08 -03:00
|
|
|
if len(cards) != 1:
|
|
|
|
return 0
|
|
|
|
card = cards[0]
|
|
|
|
if not self.cards:
|
|
|
|
return card.value == ACE
|
|
|
|
topcard = self.cards[-1]
|
|
|
|
return card.suit == topcard.suit and card.value == topcard.value + 1
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
1996-12-29 22:20:29 -04:00
|
|
|
class RowStack(OpenStack):
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def acceptable(self, cards):
|
2004-07-18 03:16:08 -03:00
|
|
|
card = cards[0]
|
|
|
|
if not self.cards:
|
|
|
|
return card.value == KING
|
|
|
|
topcard = self.cards[-1]
|
|
|
|
if not topcard.face_shown:
|
|
|
|
return 0
|
|
|
|
return card.color != topcard.color and card.value == topcard.value - 1
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def position(self, card):
|
2004-07-18 03:16:08 -03:00
|
|
|
y = self.y
|
|
|
|
for c in self.cards:
|
|
|
|
if c == card:
|
|
|
|
break
|
|
|
|
if c.face_shown:
|
|
|
|
y = y + 2*MARGIN
|
|
|
|
else:
|
|
|
|
y = y + OFFSET
|
|
|
|
card.moveto(self.x, y)
|
1996-12-29 22:20:29 -04:00
|
|
|
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
class Solitaire:
|
|
|
|
|
|
|
|
def __init__(self, master):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.master = master
|
|
|
|
|
|
|
|
self.canvas = Canvas(self.master,
|
|
|
|
background=BACKGROUND,
|
|
|
|
highlightthickness=0,
|
|
|
|
width=NROWS*XSPACING,
|
|
|
|
height=3*YSPACING + 20 + MARGIN)
|
|
|
|
self.canvas.pack(fill=BOTH, expand=TRUE)
|
|
|
|
|
|
|
|
self.dealbutton = Button(self.canvas,
|
|
|
|
text="Deal",
|
|
|
|
highlightthickness=0,
|
|
|
|
background=BACKGROUND,
|
|
|
|
activebackground="green",
|
|
|
|
command=self.deal)
|
|
|
|
Window(self.canvas, MARGIN, 3*YSPACING + 20,
|
|
|
|
window=self.dealbutton, anchor=SW)
|
|
|
|
|
|
|
|
x = MARGIN
|
|
|
|
y = MARGIN
|
|
|
|
|
|
|
|
self.deck = Deck(x, y, self)
|
|
|
|
|
|
|
|
x = x + XSPACING
|
|
|
|
self.opendeck = OpenStack(x, y, self)
|
|
|
|
|
|
|
|
x = x + XSPACING
|
|
|
|
self.suits = []
|
|
|
|
for i in range(NSUITS):
|
|
|
|
x = x + XSPACING
|
|
|
|
self.suits.append(SuitStack(x, y, self))
|
|
|
|
|
|
|
|
x = MARGIN
|
|
|
|
y = y + YSPACING
|
|
|
|
|
|
|
|
self.rows = []
|
|
|
|
for i in range(NROWS):
|
|
|
|
self.rows.append(RowStack(x, y, self))
|
|
|
|
x = x + XSPACING
|
|
|
|
|
|
|
|
self.openstacks = [self.opendeck] + self.suits + self.rows
|
|
|
|
|
|
|
|
self.deck.fill()
|
|
|
|
self.deal()
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def wincheck(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
for s in self.suits:
|
|
|
|
if len(s.cards) != NVALUES:
|
|
|
|
return
|
|
|
|
self.win()
|
|
|
|
self.deal()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def win(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
"""Stupid animation when you win."""
|
|
|
|
cards = []
|
|
|
|
for s in self.openstacks:
|
|
|
|
cards = cards + s.cards
|
|
|
|
while cards:
|
|
|
|
card = random.choice(cards)
|
|
|
|
cards.remove(card)
|
|
|
|
self.animatedmoveto(card, self.deck)
|
1996-12-30 12:45:14 -04:00
|
|
|
|
|
|
|
def animatedmoveto(self, card, dest):
|
2004-07-18 03:16:08 -03:00
|
|
|
for i in range(10, 0, -1):
|
Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66394 | benjamin.peterson | 2008-09-11 17:04:02 -0500 (Thu, 11 Sep 2008) | 1 line
fix typo
........
r66404 | gerhard.haering | 2008-09-12 08:54:06 -0500 (Fri, 12 Sep 2008) | 2 lines
sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API.
........
r66412 | gerhard.haering | 2008-09-12 13:58:57 -0500 (Fri, 12 Sep 2008) | 2 lines
Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.
........
r66414 | gerhard.haering | 2008-09-12 17:33:22 -0500 (Fri, 12 Sep 2008) | 2 lines
Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
........
r66424 | andrew.kuchling | 2008-09-12 20:22:08 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.)
........
r66425 | andrew.kuchling | 2008-09-12 20:27:33 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing
........
r66426 | andrew.kuchling | 2008-09-12 20:34:41 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section
........
r66427 | andrew.kuchling | 2008-09-12 20:42:55 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons
........
r66428 | andrew.kuchling | 2008-09-12 20:43:28 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division.
........
r66429 | andrew.kuchling | 2008-09-12 20:47:02 -0500 (Fri, 12 Sep 2008) | 1 line
Remove semicolon
........
r66430 | andrew.kuchling | 2008-09-12 20:48:36 -0500 (Fri, 12 Sep 2008) | 1 line
Subclass exception
........
r66431 | andrew.kuchling | 2008-09-12 20:56:56 -0500 (Fri, 12 Sep 2008) | 1 line
Fix SyntaxError
........
r66432 | andrew.kuchling | 2008-09-12 20:57:25 -0500 (Fri, 12 Sep 2008) | 1 line
Update uses of string exceptions
........
r66433 | andrew.kuchling | 2008-09-12 21:08:30 -0500 (Fri, 12 Sep 2008) | 1 line
Use title case
........
r66434 | andrew.kuchling | 2008-09-12 21:09:15 -0500 (Fri, 12 Sep 2008) | 1 line
Remove extra 'the'; the following title includes it
........
r66435 | andrew.kuchling | 2008-09-12 21:11:51 -0500 (Fri, 12 Sep 2008) | 1 line
#3288: Document as_integer_ratio
........
r66436 | andrew.kuchling | 2008-09-12 21:14:15 -0500 (Fri, 12 Sep 2008) | 1 line
Use title case
........
2008-09-13 12:58:53 -03:00
|
|
|
dx, dy = (dest.x-card.x)//i, (dest.y-card.y)//i
|
2004-07-18 03:16:08 -03:00
|
|
|
card.moveby(dx, dy)
|
|
|
|
self.master.update_idletasks()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def closeststack(self, card):
|
2004-07-18 03:16:08 -03:00
|
|
|
closest = None
|
|
|
|
cdist = 999999999
|
|
|
|
# Since we only compare distances,
|
|
|
|
# we don't bother to take the square root.
|
|
|
|
for stack in self.openstacks:
|
|
|
|
dist = (stack.x - card.x)**2 + (stack.y - card.y)**2
|
|
|
|
if dist < cdist:
|
|
|
|
closest = stack
|
|
|
|
cdist = dist
|
|
|
|
return closest
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
def deal(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
self.reset()
|
|
|
|
self.deck.shuffle()
|
|
|
|
for i in range(NROWS):
|
|
|
|
for r in self.rows[i:]:
|
|
|
|
card = self.deck.deal()
|
|
|
|
r.add(card)
|
|
|
|
for r in self.rows:
|
|
|
|
r.showtop()
|
1996-12-29 22:20:29 -04:00
|
|
|
|
|
|
|
def reset(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
for stack in self.openstacks:
|
|
|
|
while 1:
|
|
|
|
card = stack.deal()
|
|
|
|
if not card:
|
|
|
|
break
|
|
|
|
self.deck.add(card)
|
|
|
|
card.showback()
|
1996-12-29 16:15:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Main function, run when invoked as a stand-alone Python program.
|
|
|
|
|
|
|
|
def main():
|
|
|
|
root = Tk()
|
|
|
|
game = Solitaire(root)
|
|
|
|
root.protocol('WM_DELETE_WINDOW', root.quit)
|
|
|
|
root.mainloop()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|