Card backs: new patterns, Emacs-logo backs, and a random default
* cg-svg.el (cg-svg-card-back): default to random; add lattice/waves/diamond and the emacs/emacs-classic/gnu/splash logo backs. (cg-svg--back-*, cg-svg--draw-back): draw them. (cg-svg--card-backs, cg-svg--random-back, cg-svg--roll-back, cg-svg-shuffle-card-back, cg-svg--effective-back): random machinery. * card-games.el (card-game): re-roll the random back on each menu visit. * test/card-games-tests.el: add cgt-svg-logo-smoke, cgt-svg-card-back-smoke. * NEWS: note the card backs and random default.
This commit is contained in:
parent
4b4a7fc52f
commit
9af486526d
4 changed files with 133 additions and 18 deletions
|
|
@ -787,6 +787,21 @@
|
|||
(should (null (cg-crap--reserve g 1)))
|
||||
(should (member '(2 . 5) (cg-crap--reserve g 0))))) ; loaded onto you
|
||||
|
||||
(ert-deftest cgt-svg-logo-smoke ()
|
||||
(dolist (choice '(modern classic gnu splash drawn none nonexistent))
|
||||
(let ((cg-svg-emacs-logo choice) (svg (svg-create 200 120)))
|
||||
(cg-svg-draw-logo svg 100 60 1.0)
|
||||
(should (imagep (svg-image svg))))))
|
||||
|
||||
(ert-deftest cgt-svg-card-back-smoke ()
|
||||
(dolist (b '(dots rings solid lattice waves diamond
|
||||
emacs emacs-classic gnu splash random))
|
||||
(let ((cg-svg-card-back b) (svg (svg-create 80 100)))
|
||||
(cg-svg-card svg 12 10 :down t)
|
||||
(should (imagep (svg-image svg)))))
|
||||
(cg-svg--roll-back)
|
||||
(should (memq cg-svg--random-back cg-svg--card-backs)))
|
||||
|
||||
(ert-deftest cgt-crap-house-run ()
|
||||
(let ((g (cg-crap--deal (cg-crapette-game))))
|
||||
(aset (cg-get g :houses) 0 (list '(2 . 8) '(0 . 7) '(3 . 6))) ; 9D 8S 7H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue