]> code.delx.au - gnu-emacs-elpa/blob - chess.el
*** no comment ***
[gnu-emacs-elpa] / chess.el
1 a0 243
2 ;;; chess.el --- Play chess in Emacs
3
4 ;; Copyright (C) 2001 John Wiegley <johnw@gnu.org>
5
6 ;; Emacs Lisp Archive Entry
7 ;; Filename: chess.el
8 ;; Version: 2.0
9 ;; Keywords: games
10 ;; Author: John Wiegley <johnw@gnu.org>
11 ;; Maintainer: John Wiegley <johnw@gnu.org>
12 ;; Description: Play chess in Emacs
13 ;; URL: http://www.gci-net.com/~johnw/Emacs/packages/chess.tar.gz
14 ;; Compatibility: Emacs20, Emacs21, XEmacs21
15
16 ;; This file is not part of GNU Emacs.
17
18 ;; This is free software; you can redistribute it and/or modify it under
19 ;; the terms of the GNU General Public License as published by the Free
20 ;; Software Foundation; either version 2, or (at your option) any later
21 ;; version.
22 ;;
23 ;; This is distributed in the hope that it will be useful, but WITHOUT
24 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
25 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 ;; for more details.
27 ;;
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs; see the file COPYING. If not, write to the
30 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
31 ;; MA 02111-1307, USA.
32
33 ;;; Commentary:
34
35 ;; Welcome to Emacs Chess, a chess playing module for GNU Emacs.
36 ;;
37 ;; This program will not play chess against you; it is not a chess
38 ;; computer. It can use a chess computer, however, to simulate your
39 ;; opponent's moves. This is decided when you choose your opponent.
40 ;; You must, of course, have that chess computer installed. See the
41 ;; top of chess-player.el for more information.
42 ;;
43 ;; To just get a chessboard up, put the following in your .emacs file:
44 ;;
45 ;; (add-to-list 'load-list "<the path to Emacs Chess>")
46 ;;
47 ;; (autoload 'chess "chess" "Play a game of chess" t)
48 ;;
49 ;; Now you can type `M-x chess', and play chess against anyone else in
50 ;; the room with you, without having to install anything more.
51 ;;
52 ;; Once this is working, the next thing to do is to customize
53 ;; `chess-use-modules'. This is a list of functionality modules used
54 ;; by chess.el to provide its functionality. You can enable or
55 ;; disable modules so that Emacs Chess better suites your tastes.
56 ;; Those modules in turn often have configuration variables, and
57 ;; appropriate documentation at the top of the related file.
58 ;;
59 ;; Emacs Chess is designed in a highly modular fashion, using loosely
60 ;; coupled modules that respond to events on the chess board. This
61 ;; makes it very easy for programmers to add their own types of
62 ;; displays, opponents, analysis programs, etc. See the documentation
63 ;; in chess-module.el to learn more.
64 ;;
65 ;; There is no documentation for this program other than what exists
66 ;; in the source files. This is because the source files aim at being
67 ;; self documenting, and as chess is such a simple game, most chess
68 ;; players aren't going to need to know much about this program in
69 ;; particular.
70 ;;
71 ;; However, most people will probably be interested in reading the top
72 ;; of chess-display.el and chess-pgn.el, which describe the user
73 ;; interface commands available in each of those buffer types.
74
75 ;;; Code:
76 (require 'cl)
77
78
79 (require 'chess-game)
80 (require 'chess-display)
81 (require 'chess-engine)
82 (require 'chess-pgn)
83
84 (defgroup chess nil
85 "An Emacs chess playing program."
86 :group 'games)
87 (defconst chess-version "2.0a4"
88 (defconst chess-version "2.0a7"
89 "The version of the Emacs chess program.")
90
91 (defcustom chess-default-display (if (display-graphic-p)
92 'chess-images 'chess-ics1)
93 "Default module set to be used when starting a chess session."
94 :type 'sexp
95 :group 'chess)
96
97 (defcustom chess-default-engine 'chess-gnuchess
98 "Default engine to be used when starting a chess session."
99 :type 'sexp
100 :group 'chess)
101 (defcustom chess-announce-moves t
102 (defcustom chess-announce-moves t
103 This happens verbally if 'festival' is installed, otherwise it just
104 prints a message in your minibuffer, which works well for Emacspeak
105 users."
106 minibuffer, which works well for Emacspeak users."
107 :type 'boolean
108 :group 'chess)
109
110 (defun chess (&optional arg)
111 "Start a game of chess."
112 (interactive "P")
113 (let ((game (chess-game-create)) ; start out as white always
114 (my-color t)
115 display engine)
116 (game (chess-game-create)))
117
118
119 (require chess-default-display)
120 (chess-display-set-game
121 (chess-display-create chess-default-display my-color) game)
122 (chess-display-set-main display)
123 (let ((engine-module
124 (if arg
125 (intern (or (read-string "Engine module to play against: ")
126 "chess-none"))
127 chess-default-engine)))
128 (let ((engine-module (or engine chess-default-engine)))
129 (chess-engine-set-game (chess-engine-create engine-module) game)
130 (chess-engine-command engine 'ready))
131 (when chess-announce-moves
132 (require 'chess-announce)
133 (chess-announce-for-game game))))))
134 (cons display engine)))
135
136 ;;;###autoload
137 (defun chess-read-pgn (&optional file)
138 "Read and display a PGN game after point."
139 (interactive "P")
140 (if (or file (not (search-forward "[Event" nil t)))
141 (setq file (read-file-name "Read a PGN game from file: ")))
142 (if file
143 (find-file file))
144 (let ((game (chess-pgn-to-game)))
145 (when game
146 (require chess-default-display)
147 (chess-display-set-game
148 (chess-display-create chess-default-display
149 (chess-game-side-to-move game)) game))))
150
151 (defvar chess-puzzle-locations nil)
152
153 (defun chess-puzzle-next ()
154 "Play the next puzzle in the collection, selected randomly."
155 (interactive)
156 (if chess-puzzle-locations
157 (chess-puzzle (aref chess-puzzle-locations 0))))
158
159 ;;;###autoload
160 (defun chess-puzzle (file)
161 "Pick a random puzzle from FILE, and solve it against the default engine.
162 The spacebar in the display buffer is bound to `chess-puzzle-next',
163 making it easy to go on to the next puzzle once you've solved one."
164 (interactive "fRead chess puzzles from: ")
165 (save-excursion
166 (with-current-buffer (find-file-noselect file)
167 (when (or (null chess-puzzle-locations)
168 (not (equal file (aref chess-puzzle-locations 0))))
169 (let (locations)
170 (goto-char (point-min))
171 (while (search-forward "[Event" nil t)
172 (push (point) locations))
173 (setq chess-puzzle-locations (vector file locations nil nil)))
174 (random t))
175 (goto-char (nth (random (length (aref chess-puzzle-locations 1)))
176 (aref chess-puzzle-locations 1)))
177 (let ((game (chess-pgn-to-game)))
178 (when game
179 (require chess-default-display)
180 (let ((puzzle-display
181 (or (and (buffer-live-p (aref chess-puzzle-locations 2))
182 (aref chess-puzzle-locations 2))
183 (chess-display-create chess-default-display
184 (chess-game-side-to-move game)))))
185 (chess-display-set-game puzzle-display game)
186 (aset chess-puzzle-locations 2 puzzle-display)
187 ;; setup spacebar as a convenient way to jump to the next puzzle
188 (with-current-buffer puzzle-display
189 (define-key (current-local-map) [? ] 'chess-puzzle-next)))
190 (require chess-default-engine)
191 (let ((puzzle-engine
192 (or (and (buffer-live-p (aref chess-puzzle-locations 3))
193 (aref chess-puzzle-locations 3))
194 (chess-engine-create chess-default-engine))))
195 (chess-engine-set-game puzzle-engine game)
196 (aset chess-puzzle-locations 3 puzzle-engine)))))))
197
198 (provide 'chess)
199
200 ;;; chess.el ends here