home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / gnome-games / aisleriot / games / valentine.scm < prev    next >
Encoding:
Text File  |  2009-04-14  |  4.2 KB  |  156 lines

  1. ; AisleRiot - valentine.scm
  2. ; Copyright (C) 2001, 2003 Rosanna Yuen <zana@webwynk.net>
  3. ;
  4. ; This game is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2, or (at your option)
  7. ; any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  17. ; USA
  18.  
  19. (define (new-game)
  20.   (initialize-playing-area)
  21.   (set-ace-low)
  22.   (make-standard-deck)
  23.   (shuffle-deck)
  24.  
  25.   (add-normal-slot DECK)
  26.   (add-normal-slot '())
  27.  
  28.   (add-carriage-return-slot)
  29.  
  30.   (add-normal-slot '())
  31.   (add-normal-slot '())
  32.   (add-normal-slot '())
  33.   (add-normal-slot '())
  34.  
  35.   (deal-cards-face-up 0 '(2 3 4 5))
  36.  
  37.   (list 4 2))
  38.  
  39. (define (button-pressed slot-id card-list)
  40.   (and (> slot-id 0)
  41.        (not (empty-slot? slot-id))))
  42.  
  43. (define (droppable? start-slot card-list end-slot)
  44.   (and (not (empty-slot? end-slot))
  45.        (not (= start-slot end-slot))
  46.        (> end-slot 1)
  47.        (= (get-suit (get-top-card end-slot))
  48.       (get-suit (car card-list)))
  49.        (= (get-value (get-top-card end-slot))
  50.       (+ 1 (get-value (car card-list))))))
  51.  
  52. (define (button-released start-slot card-list end-slot)
  53.   (and (droppable? start-slot card-list end-slot)
  54.        (move-n-cards! start-slot end-slot card-list)))
  55.  
  56. (define (flip-each-card card-list)
  57.   (if (= (length card-list) 1)
  58.       (list (flip-card (car card-list)))
  59.       (cons (flip-card (car card-list)) (flip-each-card (cdr card-list)))))
  60.  
  61. (define (make-all-cards-invisible slot-id)
  62.   (if (< slot-id 6)
  63.       (begin    
  64.     (set-cards! slot-id (flip-each-card (get-cards slot-id)))
  65.     (make-all-cards-invisible (+ 1 slot-id)))
  66.       #t))
  67.  
  68. (define (button-clicked slot-id)
  69.   (cond ((or (> slot-id 0)
  70.          (and (empty-slot? 0)
  71.           (empty-slot? 1)))
  72.      #f)
  73.     ((or (empty-slot? 2)
  74.          (empty-slot? 3)
  75.          (empty-slot? 4)
  76.          (empty-slot? 5))
  77.      (and (or (not (empty-slot? 2))
  78.           (and (not (empty-slot? 1))
  79.                (deal-cards 1 '(2)))
  80.           (deal-cards-face-up 0 '(2)))
  81.           (or (not (empty-slot? 3))
  82.           (and (not (empty-slot? 1))
  83.                (deal-cards 1 '(3)))
  84.           (deal-cards-face-up 0 '(3)))
  85.           (or (not (empty-slot? 4))
  86.           (and (not (empty-slot? 1))
  87.                (deal-cards 1 '(4)))
  88.           (deal-cards-face-up 0 '(4)))
  89.           (or (not (empty-slot? 5))
  90.           (and (not (empty-slot? 1))
  91.                (deal-cards 1 '(5)))
  92.           (deal-cards-face-up 0 '(5)))))
  93.     ((empty-slot? 1)
  94.      (deal-cards-face-up 0 '(1)))
  95.     (#t
  96.      (and (make-all-cards-invisible 2)      
  97.           (set-cards! 0 (append (get-cards slot-id) 
  98.                     (reverse (get-cards 5))
  99.                     (reverse (get-cards 4))
  100.                     (reverse (get-cards 3))
  101.                     (reverse (get-cards 2))))
  102.           (set-cards! 2 '())
  103.           (set-cards! 3 '())
  104.           (set-cards! 4 '())
  105.           (set-cards! 5 '())          
  106.           (deal-cards 1 '(2))
  107.           (deal-cards-face-up 0 '(3 4 5))))))
  108.  
  109. (define (button-double-clicked slot-id)
  110.   #f)
  111.  
  112. (define (game-continuable)
  113.   (not (game-won)))
  114.  
  115. (define (game-won)
  116.   (and (empty-slot? 1)
  117.        (empty-slot? 0)))
  118.  
  119. (define (tableau-move? slot1 slot2)
  120.   (cond ((= slot1 6)
  121.      #f)
  122.     ((or (= slot2 6)
  123.          (empty-slot? slot1))
  124.      (tableau-move? (+ 1 slot1) 2))
  125.     ((and (not (empty-slot? slot2))
  126.           (= (get-suit (get-top-card slot1))
  127.          (get-suit (get-top-card slot2)))
  128.           (= (+ 1 (get-value (get-top-card slot1)))
  129.          (get-value (get-top-card slot2))))
  130.      (list 1 
  131.            (get-name (get-top-card slot1))
  132.            (get-name (get-top-card slot2))))
  133.     (#t (tableau-move? slot1 (+ 1 slot2)))))
  134.  
  135.  
  136. (define (get-hint)
  137.   (or (tableau-move? 1 2)
  138.       (list 0 (_"Deal more cards"))))
  139.  
  140.  
  141.  
  142. (define (get-options) 
  143.   #f)
  144.  
  145. (define (apply-options options) 
  146.   #f)
  147.  
  148. (define (timeout) 
  149.   #f)
  150.  
  151. (set-features droppable-feature scores-disabled)
  152.  
  153. (set-lambda new-game button-pressed button-released button-clicked
  154. button-double-clicked game-continuable game-won get-hint get-options
  155. apply-options timeout droppable?)
  156.