Add the rummy family: meld engine + Gin, Rummy, Rummy 500, Hand & Foot
Introduce a shared meld engine and four games built on it, all on cg-core/EIEIO with console UNICODE rendering. * cg-rummy.el: the meld engine and Gin Rummy. Set/run validation, candidate-meld enumeration, a bitmask-DP minimum-deadwood partition, and a layoff finder, plus the abstract cg-rummy-game base and shared render helpers. Gin is two-handed with draw/take/discard/knock, gin and undercut bonuses, opponent layoffs, and play to 100. * cg-rum500.el: the abstract cg-tablemeld-game (one mode and command set, dispatching on the subclass) driving Basic Rummy (meld out; score the cards left in other hands; to 100) and Rummy 500 (score the cards you lay down, lose those left in hand; ace high and worth 15; to 500). * cg-handfoot.el: Hand & Foot, a partnership Canasta cousin. Hand and foot packets, Twos and Jokers wild, rank books with clean/dirty piles, go-out bonus, and partnership scoring to 5000. Deliberately
This commit is contained in:
parent
b5410e1830
commit
86c44a362a
8 changed files with 1782 additions and 2 deletions
617
cg-rummy.el
Normal file
617
cg-rummy.el
Normal file
|
|
@ -0,0 +1,617 @@
|
|||
;;; cg-rummy.el --- Rummy meld engine and Gin Rummy -*- lexical-binding: t; -*-
|
||||
|
||||
;; Copyright (C) 2026 Corwin Brust
|
||||
|
||||
;; Author: Corwin Brust <corwin@bru.st>
|
||||
;; Maintainer: Corwin Brust <corwin@bru.st>
|
||||
;; Version: 1.0.60
|
||||
;; Package-Requires: ((emacs "26.1"))
|
||||
;; Keywords: games
|
||||
;; URL: https://code.bru.st/corwin/card-game.el
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU General Public License for more details.
|
||||
|
||||
;; You should have received a copy of the GNU General Public License
|
||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; The shared meld engine for the rummy family, plus Gin Rummy.
|
||||
;;
|
||||
;; A "meld" is a list of cards that is either a *set* (three or four cards
|
||||
;; of the same rank) or a *run* (three or more cards of the same suit in
|
||||
;; consecutive rank). The engine validates melds, enumerates the melds
|
||||
;; latent in a hand, and -- the hard part -- finds the layout that leaves
|
||||
;; the least deadwood, which drives both knock detection and the AI.
|
||||
;;
|
||||
;; Cards use the package-standard cons (SUIT . RANK) with SUIT 0 spades,
|
||||
;; 1 clubs, 2 diamonds, 3 hearts, and RANK 0 (Ace) .. 12 (King). A joker,
|
||||
;; used only by Hand & Foot, is the cons (joker . 0).
|
||||
;;
|
||||
;; Gin Rummy: a two-handed game of ten-card hands. Draw from the stock or
|
||||
;; take the discard, then discard one card. Knock when your deadwood is
|
||||
;; ten or less, or go gin with none; your opponent then lays off onto your
|
||||
;; melds. First to 100 points wins. This file also provides the abstract
|
||||
;; `cg-rummy-game' base and the rendering helpers reused by the other
|
||||
;; rummy games (cg-rum500.el, cg-handfoot.el).
|
||||
|
||||
;;; Code:
|
||||
|
||||
(require 'cl-lib)
|
||||
(require 'eieio)
|
||||
(require 'cg-core)
|
||||
|
||||
(defconst cg-rummy-ranks
|
||||
["A" "2" "3" "4" "5" "6" "7" "8" "9" "10" "J" "Q" "K"]
|
||||
"Rank labels indexed 0 (Ace) .. 12 (King).")
|
||||
|
||||
(defface cg-rummy-mark '((t :background "steelblue" :foreground "white"))
|
||||
"Face for a card the player has marked toward a meld."
|
||||
:group 'card-games)
|
||||
|
||||
(defun cg-rummy-card-string (card)
|
||||
"Return a short label for CARD, or a dot for nil."
|
||||
(cond ((null card) "·")
|
||||
((eq (car card) 'joker) (cg-suit-glyph 'joker))
|
||||
(t (concat (aref cg-rummy-ranks (cdr card)) (cg-suit-glyph (car card))))))
|
||||
|
||||
(defun cg-rummy-joker-p (card)
|
||||
"Return non-nil when CARD is a joker."
|
||||
(and card (eq (car card) 'joker)))
|
||||
|
||||
(defun cg-rummy-value (card &optional ace-15)
|
||||
"Return the point value of CARD.
|
||||
Faces and tens are 10, an Ace is 1 (or 15 when ACE-15 is non-nil), and
|
||||
other cards their pip value. A joker is worth 0 here; games that use
|
||||
jokers value them separately."
|
||||
(cond ((or (null card) (cg-rummy-joker-p card)) 0)
|
||||
(t (let ((r (cdr card)))
|
||||
(cond ((= r 0) (if ace-15 15 1))
|
||||
((<= r 8) (1+ r))
|
||||
(t 10))))))
|
||||
|
||||
|
||||
;;;; Meld predicates
|
||||
|
||||
(defun cg-rummy--consec-p (ranks)
|
||||
"Return non-nil when sorted RANKS rise by exactly one with no repeats."
|
||||
(let ((ok t) (prev nil))
|
||||
(dolist (r ranks ok)
|
||||
(when (and prev (/= r (1+ prev))) (setq ok nil))
|
||||
(setq prev r))))
|
||||
|
||||
(cl-defun cg-rummy-set-p (cards &key (min 3) distinct-suits)
|
||||
"Return non-nil when CARDS form a set (>= MIN cards of one rank).
|
||||
With DISTINCT-SUITS, every suit must differ (a single-deck rule)."
|
||||
(and (>= (length cards) min)
|
||||
(not (cl-some #'cg-rummy-joker-p cards))
|
||||
(let ((r (cdr (car cards))))
|
||||
(cl-every (lambda (c) (= (cdr c) r)) cards))
|
||||
(or (not distinct-suits)
|
||||
(let ((suits (mapcar #'car cards)))
|
||||
(= (length suits)
|
||||
(length (delete-dups (copy-sequence suits))))))))
|
||||
|
||||
(cl-defun cg-rummy-run-p (cards &key (min 3) ace-high)
|
||||
"Return non-nil when CARDS form a run (>= MIN cards, one suit, in sequence).
|
||||
With ACE-HIGH, an Ace may sit above the King (Q-K-A)."
|
||||
(and (>= (length cards) min)
|
||||
(not (cl-some #'cg-rummy-joker-p cards))
|
||||
(let ((suit (car (car cards)))
|
||||
(ranks (sort (mapcar #'cdr cards) #'<)))
|
||||
(and (cl-every (lambda (c) (= (car c) suit)) cards)
|
||||
(= (length ranks) (length (delete-dups (copy-sequence ranks))))
|
||||
(or (cg-rummy--consec-p ranks)
|
||||
(and ace-high (eql (car ranks) 0)
|
||||
(cg-rummy--consec-p (sort (cons 13 (cdr ranks)) #'<))))))))
|
||||
|
||||
(cl-defun cg-rummy-meld-p (cards &key (min 3) ace-high distinct-suits)
|
||||
"Return non-nil when CARDS form a valid set or run.
|
||||
MIN, ACE-HIGH and DISTINCT-SUITS are passed through to the predicates."
|
||||
(or (cg-rummy-set-p cards :min min :distinct-suits distinct-suits)
|
||||
(cg-rummy-run-p cards :min min :ace-high ace-high)))
|
||||
|
||||
|
||||
;;;; Candidate melds and best partition
|
||||
|
||||
(defun cg-rummy--combinations (lst k)
|
||||
"Return all K-element combinations of LST, each as a list."
|
||||
(cond ((= k 0) (list nil))
|
||||
((null lst) nil)
|
||||
(t (append
|
||||
(mapcar (lambda (c) (cons (car lst) c))
|
||||
(cg-rummy--combinations (cdr lst) (1- k)))
|
||||
(cg-rummy--combinations (cdr lst) k)))))
|
||||
|
||||
(defun cg-rummy--runs-in (pairs)
|
||||
"Return index-lists of runs (length >= 3) within PAIRS.
|
||||
PAIRS is a list of (RANK . INDEX) sorted ascending by RANK."
|
||||
(let ((res '()) (vec (vconcat pairs)))
|
||||
(let ((n (length vec)))
|
||||
(dotimes (i n)
|
||||
(let ((idxs (list (cdr (aref vec i))))
|
||||
(last (car (aref vec i)))
|
||||
(j (1+ i)))
|
||||
(while (and (< j n) (= (car (aref vec j)) (1+ last)))
|
||||
(setq last (car (aref vec j)))
|
||||
(setq idxs (cons (cdr (aref vec j)) idxs))
|
||||
(when (>= (length idxs) 3)
|
||||
(push (reverse idxs) res))
|
||||
(setq j (1+ j))))))
|
||||
res))
|
||||
|
||||
(cl-defun cg-rummy--candidate-melds (cards &key ace-high)
|
||||
"Return candidate melds for CARDS as a list of index-lists.
|
||||
Each index-list refers to positions in CARDS. With ACE-HIGH, high runs
|
||||
ending in an Ace are also generated."
|
||||
(let* ((vec (vconcat cards)) (n (length vec)) (melds '()))
|
||||
;; sets, grouped by rank
|
||||
(let ((byrank (make-hash-table :test 'eql)))
|
||||
(dotimes (i n)
|
||||
(let ((c (aref vec i)))
|
||||
(unless (cg-rummy-joker-p c)
|
||||
(push i (gethash (cdr c) byrank)))))
|
||||
(maphash
|
||||
(lambda (_r idxs)
|
||||
(when (>= (length idxs) 3)
|
||||
(dolist (k '(3 4))
|
||||
(dolist (combo (cg-rummy--combinations idxs k))
|
||||
(when (cg-rummy-set-p (mapcar (lambda (i) (aref vec i)) combo)
|
||||
:distinct-suits t)
|
||||
(push (sort (copy-sequence combo) #'<) melds))))))
|
||||
byrank))
|
||||
;; runs, grouped by suit
|
||||
(let ((bysuit (make-hash-table :test 'eql)))
|
||||
(dotimes (i n)
|
||||
(let ((c (aref vec i)))
|
||||
(unless (cg-rummy-joker-p c)
|
||||
(push (cons (cdr c) i) (gethash (car c) bysuit)))))
|
||||
(maphash
|
||||
(lambda (_s pairs)
|
||||
(let ((sorted (sort (copy-sequence pairs)
|
||||
(lambda (a b) (< (car a) (car b))))))
|
||||
(dolist (m (cg-rummy--runs-in sorted)) (push (sort m #'<) melds)))
|
||||
(when (and ace-high (assq 0 pairs))
|
||||
(let* ((hi (mapcar (lambda (p) (if (= (car p) 0) (cons 13 (cdr p)) p))
|
||||
pairs))
|
||||
(sh (sort hi (lambda (a b) (< (car a) (car b))))))
|
||||
(dolist (m (cg-rummy--runs-in sh)) (push (sort m #'<) melds)))))
|
||||
bysuit))
|
||||
(delete-dups melds)))
|
||||
|
||||
(cl-defun cg-rummy-best-partition (cards &key ace-high ace-15)
|
||||
"Return the lowest-deadwood layout of CARDS.
|
||||
The result is a plist (:melds MELDS :deadwood CARDS :count N) where MELDS
|
||||
is a list of card-lists, DEADWOOD the unmelded cards and N their value
|
||||
sum. ACE-HIGH allows Q-K-A runs; ACE-15 scores Aces at 15."
|
||||
(let* ((vec (vconcat cards)) (n (length vec))
|
||||
(cand (cg-rummy--candidate-melds cards :ace-high ace-high))
|
||||
(mmasks (mapcar (lambda (m)
|
||||
(let ((b 0)) (dolist (i m) (setq b (logior b (ash 1 i))))
|
||||
b))
|
||||
cand))
|
||||
(memo (make-hash-table :test 'eql))
|
||||
(full (1- (ash 1 n))))
|
||||
(cl-labels
|
||||
((cval (i) (cg-rummy-value (aref vec i) ace-15))
|
||||
(lowbit (avail)
|
||||
(let ((i 0)) (while (zerop (logand avail (ash 1 i))) (setq i (1+ i))) i))
|
||||
(solve (avail)
|
||||
(if (zerop avail) (cons 0 '())
|
||||
(or (gethash avail memo)
|
||||
(let* ((i (lowbit avail))
|
||||
(ibit (ash 1 i))
|
||||
(sub0 (solve (logxor avail ibit)))
|
||||
(best (cons (+ (cval i) (car sub0)) (cdr sub0))))
|
||||
(dolist (mask mmasks)
|
||||
(when (and (/= 0 (logand mask ibit))
|
||||
(= mask (logand mask avail)))
|
||||
(let ((sub (solve (logand avail (lognot mask)))))
|
||||
(when (< (car sub) (car best))
|
||||
(setq best (cons (car sub) (cons mask (cdr sub))))))))
|
||||
(puthash avail best memo)
|
||||
best)))))
|
||||
(let* ((res (solve full)) (maskmelds (cdr res)) (used 0))
|
||||
(dolist (m maskmelds) (setq used (logior used m)))
|
||||
(list :melds
|
||||
(mapcar (lambda (mask)
|
||||
(let ((cl '()))
|
||||
(dotimes (i n)
|
||||
(when (/= 0 (logand mask (ash 1 i)))
|
||||
(push (aref vec i) cl)))
|
||||
(nreverse cl)))
|
||||
maskmelds)
|
||||
:deadwood
|
||||
(let ((dl '()))
|
||||
(dotimes (i n)
|
||||
(when (= 0 (logand used (ash 1 i))) (push (aref vec i) dl)))
|
||||
(nreverse dl))
|
||||
:count (car res))))))
|
||||
|
||||
(defun cg-rummy-deadwood (cards &optional ace-high ace-15)
|
||||
"Return the minimum deadwood value of CARDS.
|
||||
ACE-HIGH and ACE-15 are passed to `cg-rummy-best-partition'."
|
||||
(plist-get (cg-rummy-best-partition cards :ace-high ace-high :ace-15 ace-15)
|
||||
:count))
|
||||
|
||||
(defun cg-rummy-layoff-p (card melds &optional ace-high)
|
||||
"Return the first meld in MELDS that CARD extends, or nil.
|
||||
ACE-HIGH allows extending a run with a high Ace."
|
||||
(cl-find-if (lambda (m)
|
||||
(cg-rummy-meld-p (cons card m) :min 3 :ace-high ace-high))
|
||||
melds))
|
||||
|
||||
|
||||
;;;; Shared deck and base game
|
||||
|
||||
(defun cg-rummy-deck (&optional ndecks jokers)
|
||||
"Return a shuffled deck of NDECKS standard packs plus JOKERS jokers each.
|
||||
NDECKS defaults to 1 and JOKERS to 0."
|
||||
(random t)
|
||||
(let ((cards '()))
|
||||
(dotimes (_ (or ndecks 1))
|
||||
(dotimes (s 4) (dotimes (r 13) (push (cons s r) cards)))
|
||||
(dotimes (_ (or jokers 0)) (push (cons 'joker 0) cards)))
|
||||
(cg-shuffle cards)))
|
||||
|
||||
(defclass cg-rummy-game (cg-game) ()
|
||||
"Abstract base for rummy-style draw-and-discard games."
|
||||
:abstract t)
|
||||
|
||||
(defsubst cg-rummy--hand (game s) (aref (cg-get game :hands) s))
|
||||
(defsubst cg-rummy--set-hand (game s v) (aset (cg-get game :hands) s v))
|
||||
(defsubst cg-rummy--top (game) (car (cg-get game :discard)))
|
||||
|
||||
(defun cg-rummy-sort-hand (cards)
|
||||
"Return CARDS sorted by suit then rank for display, jokers last."
|
||||
(sort (copy-sequence cards)
|
||||
(lambda (a b)
|
||||
(let ((sa (if (cg-rummy-joker-p a) 99 (car a)))
|
||||
(sb (if (cg-rummy-joker-p b) 99 (car b))))
|
||||
(if (= sa sb) (< (cdr a) (cdr b)) (< sa sb))))))
|
||||
|
||||
(defun cg-rummy--render-cards (cards cursor marks &optional hint-fn)
|
||||
"Return a propertized row of CARDS.
|
||||
CURSOR is the highlighted index, MARKS a list of marked indices, and
|
||||
HINT-FN an optional predicate marking playable cards."
|
||||
(let ((i 0) (out '()))
|
||||
(dolist (c cards)
|
||||
(let ((cs (cg-rummy-card-string c)) (faces nil))
|
||||
(when (and (not (cg-rummy-joker-p c)) (cg-red-suit-p (car c)))
|
||||
(push 'cg-red-suit faces))
|
||||
(when (and hint-fn (funcall hint-fn c)) (push 'cg-hint faces))
|
||||
(when (memq i marks) (push 'cg-rummy-mark faces))
|
||||
(when (eql i cursor) (push 'cg-cursor faces))
|
||||
(push (propertize (format "%4s" cs) 'face (or faces 'default)) out))
|
||||
(setq i (1+ i)))
|
||||
(apply #'concat (nreverse out))))
|
||||
|
||||
(defun cg-rummy--melds-string (melds)
|
||||
"Return a one-line depiction of MELDS (a list of card-lists)."
|
||||
(mapconcat (lambda (m) (mapconcat #'cg-rummy-card-string m " "))
|
||||
melds " | "))
|
||||
|
||||
|
||||
;;;; Gin Rummy
|
||||
|
||||
(defcustom cg-gin-target 100
|
||||
"Points needed to win a game of Gin Rummy."
|
||||
:type 'integer :group 'card-games)
|
||||
|
||||
(defclass cg-gin-game (cg-rummy-game)
|
||||
((vname :initform "Gin Rummy"))
|
||||
"A two-handed game of Gin Rummy.")
|
||||
|
||||
(cl-defmethod cg-gin--deal ((game cg-gin-game))
|
||||
"Deal a fresh Gin hand into GAME."
|
||||
(let ((deck (cg-rummy-deck)) (hands (make-vector 2 nil)))
|
||||
(dotimes (s 2)
|
||||
(aset hands s (cg-rummy-sort-hand (cl-loop repeat 10 collect (pop deck)))))
|
||||
(cg-put game :hands hands)
|
||||
(cg-put game :discard (list (pop deck)))
|
||||
(cg-put game :stock deck)
|
||||
(cg-put game :turn 0)
|
||||
(cg-put game :step 'draw)
|
||||
(cg-put game :phase 'play)
|
||||
(cg-put game :cursor 0)
|
||||
(unless (cg-get game :scores) (cg-put game :scores (make-vector 2 0)))
|
||||
(cg-put game :message
|
||||
"Your turn: s draws from stock, t takes the discard.")
|
||||
game))
|
||||
|
||||
(defun cg-gin--deadwood (cards) (cg-rummy-deadwood cards))
|
||||
|
||||
(defun cg-gin--draw (game s)
|
||||
"Move one stock card to seat S's hand; return it or nil if stock empty."
|
||||
(let ((stock (cg-get game :stock)))
|
||||
(when stock
|
||||
(let ((c (pop stock)))
|
||||
(cg-put game :stock stock)
|
||||
(cg-rummy--set-hand game s (cons c (cg-rummy--hand game s)))
|
||||
c))))
|
||||
|
||||
(defun cg-gin--take (game s)
|
||||
"Move the discard top to seat S's hand and return it."
|
||||
(let ((c (cg-rummy--top game)))
|
||||
(cg-put game :discard (cdr (cg-get game :discard)))
|
||||
(cg-rummy--set-hand game s (cons c (cg-rummy--hand game s)))
|
||||
c))
|
||||
|
||||
(defun cg-gin--discard (game s card)
|
||||
"Discard CARD from seat S's hand onto the pile."
|
||||
(cg-rummy--set-hand game s (cg-rummy-sort-hand
|
||||
(remove card (cg-rummy--hand game s))))
|
||||
(cg-put game :discard (cons card (cg-get game :discard))))
|
||||
|
||||
(defun cg-gin--ai-best-discard (game s)
|
||||
"Return the card seat S should discard to minimise its deadwood."
|
||||
(let ((hand (cg-rummy--hand game s)) (best nil) (bestv most-positive-fixnum))
|
||||
(dolist (c hand best)
|
||||
(let ((d (cg-gin--deadwood (remove c hand))))
|
||||
(when (or (< d bestv)
|
||||
(and (= d bestv) best
|
||||
(> (cg-rummy-value c) (cg-rummy-value best))))
|
||||
(setq best c bestv d))))))
|
||||
|
||||
(cl-defmethod cg-gin--ai-turn ((game cg-gin-game) s)
|
||||
"Play seat S's whole turn, then hand control back."
|
||||
(let* ((hand (cg-rummy--hand game s))
|
||||
(cur (cg-gin--deadwood hand))
|
||||
(up (cg-rummy--top game))
|
||||
(with (and up (cg-gin--deadwood (cons up hand))))
|
||||
;; take the discard only when it strictly helps
|
||||
(drew (if (and up with (< with cur))
|
||||
(cg-gin--take game s)
|
||||
(cg-gin--draw game s))))
|
||||
(if (not drew)
|
||||
(cg-gin--exhaust game) ; stock exhausted: wash the hand
|
||||
(let ((card (cg-gin--ai-best-discard game s)))
|
||||
(cg-gin--discard game s card)
|
||||
(let ((dw (cg-gin--deadwood (cg-rummy--hand game s))))
|
||||
(if (<= dw 10)
|
||||
(cg-gin--knock game s)
|
||||
(cg-put game :turn 0)
|
||||
(cg-put game :step 'draw)
|
||||
(cg-put game :message
|
||||
(format "Opponent discarded %s. s draws, t takes."
|
||||
(cg-rummy-card-string card)))))))))
|
||||
|
||||
(cl-defmethod cg-gin--knock ((game cg-gin-game) knocker)
|
||||
"Resolve the hand when KNOCKER knocks; score and end the hand."
|
||||
(let* ((kpart (cg-rummy-best-partition (cg-rummy--hand game knocker)))
|
||||
(kmelds (plist-get kpart :melds))
|
||||
(kdw (plist-get kpart :count))
|
||||
(opp (- 1 knocker))
|
||||
(opart (cg-rummy-best-partition (cg-rummy--hand game opp)))
|
||||
(odead (plist-get opart :deadwood))
|
||||
(gin (= kdw 0)))
|
||||
;; opponent lays off onto the knocker's melds (not allowed on gin)
|
||||
(unless gin
|
||||
(let (remaining)
|
||||
(dolist (c odead)
|
||||
(let ((m (cg-rummy-layoff-p c kmelds)))
|
||||
(if m (setcdr (last m) (list c)) ; extend that meld in place
|
||||
(push c remaining))))
|
||||
(setq odead (nreverse remaining))))
|
||||
(let* ((odw (apply #'+ (mapcar #'cg-rummy-value odead)))
|
||||
(scores (cg-get game :scores))
|
||||
(winner knocker) (pts 0) (note ""))
|
||||
(cond
|
||||
(gin (setq pts (+ 25 odw) note "Gin!"))
|
||||
((< kdw odw) (setq pts (- odw kdw) note "Knock."))
|
||||
(t ;; undercut: defender wins
|
||||
(setq winner opp pts (+ 25 (- kdw odw)) note "Undercut!")))
|
||||
(aset scores winner (+ (aref scores winner) pts))
|
||||
(cg-put game :phase 'hand-over)
|
||||
(cg-put game :reveal t)
|
||||
(cg-put game :winner winner)
|
||||
(cg-put game :message
|
||||
(format "%s %s scores %d. %s (n: next hand)"
|
||||
note
|
||||
(if (= winner 0) "You" "Opponent") pts
|
||||
(if (>= (aref scores winner) cg-gin-target)
|
||||
(progn (cg-put game :phase 'game-over)
|
||||
(format "%s wins the game!"
|
||||
(if (= winner 0) "You" "Opponent")))
|
||||
(format "Score %d-%d."
|
||||
(aref scores 0) (aref scores 1))))))))
|
||||
|
||||
(cl-defmethod cg-gin--exhaust ((game cg-gin-game))
|
||||
"End a hand washed out because the stock ran dry."
|
||||
(cg-put game :phase 'hand-over)
|
||||
(cg-put game :reveal t)
|
||||
(cg-put game :message "Stock exhausted -- the hand is a wash. n: next hand."))
|
||||
|
||||
;;;; Gin UI
|
||||
|
||||
(defvar-local cg-gin--game nil "The Gin Rummy game in the current buffer.")
|
||||
|
||||
(cl-defmethod cg-render ((game cg-gin-game))
|
||||
"Return a propertized depiction of the Gin GAME for a text display."
|
||||
(let* ((out '()) (scores (cg-get game :scores))
|
||||
(reveal (cg-get game :reveal))
|
||||
(hand (cg-rummy--hand game 0)) (cursor (cg-get game :cursor)))
|
||||
(push (format " Gin Rummy first to %d\n\n" cg-gin-target) out)
|
||||
(push (format " Opponent: %d cards score %d\n"
|
||||
(length (cg-rummy--hand game 1)) (aref scores 1)) out)
|
||||
(when reveal
|
||||
(let ((p (cg-rummy-best-partition (cg-rummy--hand game 1))))
|
||||
(push (format " melds: %s\n deadwood: %s (%d)\n"
|
||||
(cg-rummy--melds-string (plist-get p :melds))
|
||||
(mapconcat #'cg-rummy-card-string (plist-get p :deadwood) " ")
|
||||
(plist-get p :count))
|
||||
out)))
|
||||
(push (format "\n Discard: %s Stock: %d\n\n"
|
||||
(let ((cs (cg-rummy-card-string (cg-rummy--top game))))
|
||||
(if (and (cg-rummy--top game) (cg-red-suit-p (car (cg-rummy--top game))))
|
||||
(propertize cs 'face 'cg-red-suit) cs))
|
||||
(length (cg-get game :stock)))
|
||||
out)
|
||||
(push (format " Your hand (deadwood %d, score %d):\n "
|
||||
(cg-gin--deadwood hand) (aref scores 0)) out)
|
||||
(push (cg-rummy--render-cards hand cursor nil) out)
|
||||
(when reveal
|
||||
(let ((p (cg-rummy-best-partition hand)))
|
||||
(push (format "\n melds: %s\n deadwood: %s"
|
||||
(cg-rummy--melds-string (plist-get p :melds))
|
||||
(mapconcat #'cg-rummy-card-string (plist-get p :deadwood) " "))
|
||||
out)))
|
||||
(push (format "\n\n %s\n" (cg-get game :message)) out)
|
||||
(apply #'concat (nreverse out))))
|
||||
|
||||
(defun cg-gin--redisplay ()
|
||||
"Redraw the Gin Rummy buffer."
|
||||
(let ((game cg-gin--game) (inhibit-read-only t))
|
||||
(setq-local mode-line-process
|
||||
(format " [%s]" (or (cg-get game :step) (cg-get game :phase))))
|
||||
(erase-buffer) (insert (cg-render game)) (goto-char (point-min))))
|
||||
|
||||
(defun cg-gin--cursor-card ()
|
||||
"Return the card under the cursor in your hand."
|
||||
(nth (cg-get cg-gin--game :cursor) (cg-rummy--hand cg-gin--game 0)))
|
||||
|
||||
(defun cg-gin-left ()
|
||||
"Move the hand cursor left."
|
||||
(interactive)
|
||||
(let* ((g cg-gin--game) (n (length (cg-rummy--hand g 0))))
|
||||
(when (> n 0) (cg-put g :cursor (mod (1- (cg-get g :cursor)) n)))
|
||||
(cg-gin--redisplay)))
|
||||
|
||||
(defun cg-gin-right ()
|
||||
"Move the hand cursor right."
|
||||
(interactive)
|
||||
(let* ((g cg-gin--game) (n (length (cg-rummy--hand g 0))))
|
||||
(when (> n 0) (cg-put g :cursor (mod (1+ (cg-get g :cursor)) n)))
|
||||
(cg-gin--redisplay)))
|
||||
|
||||
(defun cg-gin--my-turn-p (g)
|
||||
"Return non-nil when it is your turn to act in G."
|
||||
(and (eq (cg-get g :phase) 'play) (= (cg-get g :turn) 0)))
|
||||
|
||||
(defun cg-gin-draw-stock ()
|
||||
"Draw the top stock card into your hand."
|
||||
(interactive)
|
||||
(let ((g cg-gin--game))
|
||||
(cond
|
||||
((not (cg-gin--my-turn-p g)) (cg-put g :message "Not your turn."))
|
||||
((not (eq (cg-get g :step) 'draw)) (cg-put g :message "Discard first (RET)."))
|
||||
((cg-gin--draw g 0)
|
||||
(cg-put g :step 'discard)
|
||||
(cg-put g :cursor 0)
|
||||
(cg-put g :message "Choose a card and discard with RET, or knock with k."))
|
||||
(t (cg-gin--exhaust g)))
|
||||
(cg-gin--redisplay)))
|
||||
|
||||
(defun cg-gin-take-discard ()
|
||||
"Take the discard top into your hand."
|
||||
(interactive)
|
||||
(let ((g cg-gin--game))
|
||||
(cond
|
||||
((not (cg-gin--my-turn-p g)) (cg-put g :message "Not your turn."))
|
||||
((not (eq (cg-get g :step) 'draw)) (cg-put g :message "Discard first (RET)."))
|
||||
((null (cg-rummy--top g)) (cg-put g :message "The discard pile is empty."))
|
||||
(t (let ((c (cg-gin--take g 0)))
|
||||
(cg-put g :step 'discard)
|
||||
(cg-put g :cursor 0)
|
||||
(cg-put g :message
|
||||
(format "Took %s. Discard with RET, or knock with k."
|
||||
(cg-rummy-card-string c))))))
|
||||
(cg-gin--redisplay)))
|
||||
|
||||
(defun cg-gin--after-discard (g)
|
||||
"Hand control to the opponent after you discard in G."
|
||||
(cg-put g :turn 1)
|
||||
(cg-put g :step 'draw)
|
||||
(cg-gin--ai-turn g 1)
|
||||
(cg-gin--redisplay))
|
||||
|
||||
(defun cg-gin-discard ()
|
||||
"Discard the selected card and end your turn."
|
||||
(interactive)
|
||||
(let* ((g cg-gin--game) (card (cg-gin--cursor-card)))
|
||||
(cond
|
||||
((not (cg-gin--my-turn-p g)) (cg-put g :message "Not your turn.")
|
||||
(cg-gin--redisplay))
|
||||
((not (eq (cg-get g :step) 'discard))
|
||||
(cg-put g :message "Draw first (s or t).") (cg-gin--redisplay))
|
||||
((null card) (cg-put g :message "No card selected.") (cg-gin--redisplay))
|
||||
(t (cg-gin--discard g 0 card)
|
||||
(cg-put g :message (format "You discarded %s." (cg-rummy-card-string card)))
|
||||
(cg-gin--after-discard g)))))
|
||||
|
||||
(defun cg-gin-knock ()
|
||||
"Knock, discarding the selected card, if your deadwood allows."
|
||||
(interactive)
|
||||
(let* ((g cg-gin--game) (card (cg-gin--cursor-card)))
|
||||
(cond
|
||||
((not (cg-gin--my-turn-p g)) (cg-put g :message "Not your turn."))
|
||||
((not (eq (cg-get g :step) 'discard))
|
||||
(cg-put g :message "Draw first (s or t)."))
|
||||
((null card) (cg-put g :message "No card selected."))
|
||||
(t (let ((dw (cg-gin--deadwood (remove card (cg-rummy--hand g 0)))))
|
||||
(if (> dw 10)
|
||||
(cg-put g :message
|
||||
(format "Can't knock: that leaves %d deadwood (need <= 10)." dw))
|
||||
(cg-gin--discard g 0 card)
|
||||
(cg-gin--knock g 0)))))
|
||||
(cg-gin--redisplay)))
|
||||
|
||||
(defun cg-gin-new ()
|
||||
"Deal a fresh hand (or a new game when one is over)."
|
||||
(interactive)
|
||||
(let ((g cg-gin--game))
|
||||
(when (eq (cg-get g :phase) 'game-over) (cg-put g :scores (make-vector 2 0)))
|
||||
(cg-put g :reveal nil)
|
||||
(cg-gin--deal g)
|
||||
(cg-gin--redisplay)))
|
||||
|
||||
(defun cg-gin-redraw () "Redraw the board." (interactive) (cg-gin--redisplay))
|
||||
|
||||
(defun cg-gin-help ()
|
||||
"Describe the Gin Rummy controls."
|
||||
(interactive)
|
||||
(message "Arrows: choose s: draw stock t: take discard RET: discard k: knock n: new g: redraw"))
|
||||
|
||||
(defvar cg-gin-mode-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(define-key map (kbd "<left>") #'cg-gin-left)
|
||||
(define-key map (kbd "<right>") #'cg-gin-right)
|
||||
(define-key map "s" #'cg-gin-draw-stock)
|
||||
(define-key map "t" #'cg-gin-take-discard)
|
||||
(define-key map (kbd "RET") #'cg-gin-discard)
|
||||
(define-key map "k" #'cg-gin-knock)
|
||||
(define-key map "n" #'cg-gin-new)
|
||||
(define-key map "g" #'cg-gin-redraw)
|
||||
(define-key map "?" #'cg-gin-help)
|
||||
map)
|
||||
"Keymap for `cg-gin-mode'.")
|
||||
|
||||
(define-derived-mode cg-gin-mode special-mode "Gin"
|
||||
"Major mode for Gin Rummy."
|
||||
(setq-local truncate-lines t))
|
||||
|
||||
;;;###autoload
|
||||
(defun cg-gin ()
|
||||
"Play Gin Rummy against the computer."
|
||||
(interactive)
|
||||
(let ((buf (get-buffer-create "*Gin Rummy*")))
|
||||
(with-current-buffer buf
|
||||
(cg-gin-mode)
|
||||
(setq cg-gin--game (cg-gin-game))
|
||||
(cg-gin--deal cg-gin--game)
|
||||
(cg-gin--redisplay))
|
||||
(switch-to-buffer buf)))
|
||||
|
||||
;;;###autoload
|
||||
(defalias 'cg-gin-rummy #'cg-gin)
|
||||
|
||||
(provide 'cg-rummy)
|
||||
;;; cg-rummy.el ends here
|
||||
Loading…
Add table
Add a link
Reference in a new issue