;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Maintain a chess game that is being played or viewed ;; ;; $Revision$ ;;; Commentary: ;; A chess game is represented by a set of tags that describe the ;; game, and a list of plies representing the main variation. (require 'chess-ply) (require 'chess-algebraic) (require 'chess-fen) (defvar chess-illegal nil) (put 'chess-illegal 'error-conditions '(error)) (defconst chess-game-default-tags `(("Event" . "Computer chess game") ("Round" . "-") ("Site" . ,(system-name)) ("White" . "?") ("Black" . "?") ("Result" . "*") ("TimeControl" . "-"))) (defsubst chess-game-tags (game) "Return the tags alist associated with GAME." (car game)) (defsubst chess-game-set-tags (game tags) "Return the tags alist associated with GAME." (setcar game tags)) (defsubst chess-game-plies (game) "Return the tags alist associated with GAME." (cddr game)) (defsubst chess-game-set-plies (game plies) "Return the tags alist associated with GAME." (setcdr (cdr game) plies)) (defsubst chess-game-search-function (game) "Return the tags alist associated with GAME." (cadr game)) (defsubst chess-game-set-search-function (game func) "Return the tags alist associated with GAME." (setcar (cdr game) func)) (defsubst chess-game-tag (game tag) "Return the value for TAG in GAME." (let ((tags (chess-game-tags game))) (and tags (cdr (assoc tag tags))))) (defun chess-game-set-tag (game tag value) "Set a TAG for GAME to VALUE." (let ((tags (chess-game-tags game))) (if (null tags) (setcar game (list (cons tag value))) (let ((entry (assoc tag tags))) (if entry (setcdr entry value) (nconc (car game) (list (cons tag value)))))))) (defun chess-game-del-tag (game tag) "Set a TAG for GAME to VALUE." (setcar game (assq-delete-all tag (chess-game-tags game)))) (defsubst chess-game-index (game) "Return the GAME's current position index." (1- (length (chess-game-plies game)))) (defsubst chess-game-seq (game) "Return the current GAME sequence." (1+ (/ (chess-game-index game) 2))) (defsubst chess-game-side-to-move (game) (chess-pos-side-to-move (chess-game-pos game))) (defun chess-game-ply (game &optional index) "Return the position related to GAME's INDEX position." (if index (nth index (chess-game-plies game)) (car (last (chess-game-plies game))))) (defun chess-game-add-ply (game ply) "Return the position related to GAME's INDEX position." (let ((plies (chess-game-plies game))) (if plies (nconc plies (list ply)) (chess-game-set-plies game (list ply))))) (defsubst chess-game-pos (game &optional index) "Return the position related to GAME's INDEX position." (car (chess-game-ply game index))) (defun chess-game-create (&optional position search-func tags) "Create a new chess game object. Optionally use the given starting POSITION (which is recorded using the game's FEN tag). SEARCH-FUNC specifies the function used to test the legality of moves. TAGS is the starting set of game tags (which can always be changed later using the various tag-related methods)." (let ((game (list tags (or search-func 'chess-standard-search-position)))) (dolist (tag (cons (cons "Date" (format-time-string "%Y.%m.%d")) chess-game-default-tags)) (unless (chess-game-tag game (car tag)) (chess-game-set-tag game (car tag) (cdr tag)))) (chess-game-add-ply game (chess-ply-create (or position (chess-pos-create)))) (if position (chess-game-set-tag game "FEN" (chess-pos-to-fen position))) game)) (defun chess-game-move (game ply) "Make a move in the current GAME, from FROM to TO. This creates a new position and adds it to the main variation. The 'changes' of the last ply reflect whether the game is currently in progress (nil), if it is drawn, resigned, mate, etc." (let ((current-ply (chess-game-ply game)) (changes (chess-ply-changes ply)) (position (chess-ply-pos ply))) (unless (equal position (chess-ply-pos current-ply)) (error "Positions do not match")) (unless (funcall (chess-game-search-function game) position (cadr (chess-ply-changes ply)) (chess-pos-piece position (car (chess-ply-changes ply)))) (signal 'chess-illegal "Illegal move")) (chess-ply-set-changes current-ply changes) (cond ((or (memq ':draw changes) (memq ':perpetual changes) (memq ':repetition changes) (memq ':stalemate changes)) (chess-game-set-tag game "Result" "1/2-1/2")) ((or (memq ':resign changes) (memq ':checkmate changes)) (chess-game-set-tag game "Result" (if (chess-game-side-to-move game) "0-1" "1-0"))) (t (chess-game-add-ply game (chess-ply-create (chess-ply-next-pos current-ply))))))) ;; A few convenience functions (defsubst chess-game-legal-plies (game) "Return all legal plies from GAME's current position." (chess-legal-plies (chess-game-pos game) (chess-game-search-function game))) (defsubst chess-game-algebraic-to-ply (game move) (chess-algebraic-to-ply (chess-game-pos game) move (chess-game-search-function game))) (defsubst chess-game-ply-to-algebraic (game &optional ply long) (chess-ply-to-algebraic (or ply (chess-game-ply game)) long (chess-game-search-function game))) (provide 'chess-game) ;;; chess-game.el ends here