annotate lisp/games/gomoku.el @ 48:56c54cf7c5b6 r19-16b90

Import from CVS: tag r19-16b90
author cvs
date Mon, 13 Aug 2007 08:56:04 +0200
parents b82b59fe008d
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gomoku.el --- Gomoku game between you and Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1988, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Philippe Schnoebelen <phs@lifia.imag.fr>
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
6 ;; Adapted-By: ESR
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Keywords: games
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
24 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
26 ;;; Synched up with: FSF 19.30.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
30 ;;; Gomoku game between you and GNU Emacs. Last modified on 13 Sep 1988
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
31 ;;;
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
32 ;;; Written by Ph. Schnoebelen (phs@lifia.imag.fr), 1987, 1988
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
33 ;;; with precious advices from J.-F. Rit.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
34 ;;; This has been tested with GNU Emacs 18.50.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
35
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; RULES:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; Gomoku is a game played between two players on a rectangular board. Each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; player, in turn, marks a free square of its choice. The winner is the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; one to mark five contiguous squares in any direction (horizontally,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; vertically or diagonally).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;; I have been told that, in "The TRUE Gomoku", some restrictions are made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; about the squares where one may play, or else there is a known forced win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;; for the first player. This program has no such restriction, but it does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;; know about the forced win, nor do I. Furthermore, you probably do not know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;; it yourself :-).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;; There are two main places where you may want to customize the program: key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;; bindings and board display. These features are commented in the code. Go
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; and see.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;; HOW TO USE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; The command "M-x gomoku" displays a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;; board, the size of which depends on the size of the current window. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; size of the board is easily modified by giving numeric arguments to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; gomoku command and/or by customizing the displaying parameters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; Emacs plays when it is its turn. When it is your turn, just put the cursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;; on the square where you want to play and hit RET, or X, or whatever key you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ;; bind to the command gomoku-human-plays. When it is your turn, Emacs is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;; idle: you may switch buffers, read your mail, ... Just come back to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;; *Gomoku* buffer and resume play.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;; ALGORITHM:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; The algorithm is briefly described in section "THE SCORE TABLE". Some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; parameters may be modified if you want to change the style exhibited by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;;; GOMOKU MODE AND KEYMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (defvar gomoku-mode-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 "If non-nil, its value is called on entry to Gomoku mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (defvar gomoku-mode-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 "Local keymap to use in Gomoku mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
86 (if gomoku-mode-map
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
87 nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (setq gomoku-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (set-keymap-name gomoku-mode-map 'gomoku-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
91 ;; Key bindings for cursor motion. Arrow keys are just "function"
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
92 ;; keys, see below.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
93 (define-key gomoku-mode-map "y" 'gomoku-move-nw) ; Y
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
94 (define-key gomoku-mode-map "u" 'gomoku-move-ne) ; U
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
95 (define-key gomoku-mode-map "b" 'gomoku-move-sw) ; B
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
96 (define-key gomoku-mode-map "n" 'gomoku-move-se) ; N
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
97 (define-key gomoku-mode-map "h" 'gomoku-move-left) ; H
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
98 (define-key gomoku-mode-map "l" 'gomoku-move-right) ; L
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
99 (define-key gomoku-mode-map "j" 'gomoku-move-down) ; J
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
100 (define-key gomoku-mode-map "k" 'gomoku-move-up) ; K
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
101 (define-key gomoku-mode-map "\C-n" 'gomoku-move-down) ; C-N
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
102 (define-key gomoku-mode-map "\C-p" 'gomoku-move-up) ; C-P
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
103 (define-key gomoku-mode-map "\C-f" 'gomoku-move-right) ; C-F
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
104 (define-key gomoku-mode-map "\C-b" 'gomoku-move-left) ; C-B
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 ;; Key bindings for entering Human moves.
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
107 ;; If you have a mouse, you may also bind some mouse click ...
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (define-key gomoku-mode-map "X" 'gomoku-human-plays) ; X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (define-key gomoku-mode-map "x" 'gomoku-human-plays) ; x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (define-key gomoku-mode-map "\C-m" 'gomoku-human-plays) ; RET
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
111 (define-key gomoku-mode-map "\C-c\C-p" 'gomoku-human-plays) ; C-C C-P
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
112 (define-key gomoku-mode-map "\C-c\C-b" 'gomoku-human-takes-back) ; C-C C-B
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
113 (define-key gomoku-mode-map "\C-c\C-r" 'gomoku-human-resigns) ; C-C C-R
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
114 (define-key gomoku-mode-map "\C-c\C-e" 'gomoku-emacs-plays) ; C-C C-E
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
116 (define-key gomoku-mode-map [up] 'gomoku-move-up)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
117 (define-key gomoku-mode-map [down] 'gomoku-move-down)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
118 (define-key gomoku-mode-map [left] 'gomoku-move-left)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
119 (define-key gomoku-mode-map [right] 'gomoku-move-right)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
120 (define-key gomoku-mode-map [kp-enter] 'gomoku-human-plays)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
121 (define-key gomoku-mode-map [button2] 'gomoku-click)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
122 (define-key gomoku-mode-map [insert] 'gomoku-human-plays))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (defun gomoku-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 "Major mode for playing Gomoku against Emacs.
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
127 You and Emacs play in turn by marking a free square. You mark it with X
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
128 and Emacs marks it with O. The winner is the first to get five contiguous
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 marks horizontally, vertically or in diagonal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 You play by moving the cursor over the square you choose and hitting \\[gomoku-human-plays].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Other useful commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 \\{gomoku-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 Entry to this mode calls the value of `gomoku-mode-hook' if that value
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
134 is non-nil."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (setq major-mode 'gomoku-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 mode-name "Gomoku")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (gomoku-display-statistics)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (use-local-map gomoku-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (run-hooks 'gomoku-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 ;;; THE BOARD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ;; The board is a rectangular grid. We code empty squares with 0, X's with 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 ;; and O's with 6. The rectangle is recorded in a one dimensional vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 ;; containing padding squares (coded with -1). These squares allow us to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ;; detect when we are trying to move out of the board. We denote a square by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 ;; its (X,Y) coords, or by the INDEX corresponding to them in the vector. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ;; leftmost topmost square has coords (1,1) and index gomoku-board-width + 2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 ;; Similarly, vectors between squares may be given by two DX, DY coords or by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ;; one DEPL (the difference between indexes).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (defvar gomoku-board-width nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 "Number of columns on the Gomoku board.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (defvar gomoku-board-height nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 "Number of lines on the Gomoku board.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (defvar gomoku-board nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 "Vector recording the actual state of the Gomoku board.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (defvar gomoku-vector-length nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 "Length of gomoku-board vector.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (defvar gomoku-draw-limit nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;; This is usually set to 70% of the number of squares.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 "After how many moves will Emacs offer a draw?")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (defun gomoku-xy-to-index (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 "Translate X, Y cartesian coords into the corresponding board index."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (+ (* y gomoku-board-width) x y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (defun gomoku-index-to-x (index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 "Return corresponding x-coord of board INDEX."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (% index (1+ gomoku-board-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (defun gomoku-index-to-y (index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 "Return corresponding y-coord of board INDEX."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (/ index (1+ gomoku-board-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (defun gomoku-init-board ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 "Create the gomoku-board vector and fill it with initial values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (setq gomoku-board (make-vector gomoku-vector-length 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ;; Every square is 0 (i.e. empty) except padding squares:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (let ((i 0) (ii (1- gomoku-vector-length)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (while (<= i gomoku-board-width) ; The squares in [0..width] and in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (aset gomoku-board i -1) ; [length - width - 1..length - 1]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (aset gomoku-board ii -1) ; are padding squares.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (setq i (1+ i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 ii (1- ii))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (let ((i 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (while (< i gomoku-vector-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (aset gomoku-board i -1) ; and also all k*(width+1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (setq i (+ i gomoku-board-width 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 ;;; THE SCORE TABLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ;; Every (free) square has a score associated to it, recorded in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 ;; GOMOKU-SCORE-TABLE vector. The program always plays in the square having
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 ;; the highest score.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (defvar gomoku-score-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 "Vector recording the actual score of the free squares.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 ;; The key point point about the algorithm is that, rather than considering
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 ;; the board as just a set of squares, we prefer to see it as a "space" of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 ;; internested 5-tuples of contiguous squares (called qtuples).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 ;; The aim of the program is to fill one qtuple with its O's while preventing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ;; you from filling another one with your X's. To that effect, it computes a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 ;; score for every qtuple, with better qtuples having better scores. Of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 ;; course, the score of a qtuple (taken in isolation) is just determined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 ;; its contents as a set, i.e. not considering the order of its elements. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 ;; highest score is given to the "OOOO" qtuples because playing in such a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 ;; qtuple is winning the game. Just after this comes the "XXXX" qtuple because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 ;; not playing in it is just loosing the game, and so on. Note that a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 ;; "polluted" qtuple, i.e. one containing at least one X and at least one O,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ;; has score zero because there is no more any point in playing in it, from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 ;; both an attacking and a defending point of view.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 ;; Given the score of every qtuple, the score of a given free square on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 ;; board is just the sum of the scores of all the qtuples to which it belongs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 ;; because playing in that square is playing in all its containing qtuples at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 ;; once. And it is that function which takes into account the internesting of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 ;; the qtuples.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 ;; This algorithm is rather simple but anyway it gives a not so dumb level of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 ;; play. It easily extends to "n-dimensional Gomoku", where a win should not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ;; be obtained with as few as 5 contiguous marks: 6 or 7 (depending on n !)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 ;; should be preferred.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ;; Here are the scores of the nine "non-polluted" configurations. Tuning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 ;; these values will change (hopefully improve) the strength of the program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 ;; and may change its style (rather aggressive here).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (defconst nil-score 7 "Score of an empty qtuple.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (defconst Xscore 15 "Score of a qtuple containing one X.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (defconst XXscore 400 "Score of a qtuple containing two X's.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (defconst XXXscore 1800 "Score of a qtuple containing three X's.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (defconst XXXXscore 100000 "Score of a qtuple containing four X's.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (defconst Oscore 35 "Score of a qtuple containing one O.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (defconst OOscore 800 "Score of a qtuple containing two O's.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (defconst OOOscore 15000 "Score of a qtuple containing three O's.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (defconst OOOOscore 800000 "Score of a qtuple containing four O's.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 ;; These values are not just random: if, given the following situation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 ;; . . . . . . . O .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ;; . X X a . . . X .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; . . . X . . . X .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 ;; . . . X . . . X .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 ;; . . . . . . . b .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;; you want Emacs to play in "a" and not in "b", then the parameters must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 ;; satisfy the inequality:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 ;; 6 * XXscore > XXXscore + XXscore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 ;; because "a" mainly belongs to six "XX" qtuples (the others are less
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;; important) while "b" belongs to one "XXX" and one "XX" qtuples. Other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 ;; conditions are required to obtain sensible moves, but the previous example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 ;; should illustrate the point. If you manage to improve on these values,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 ;; please send me a note. Thanks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
273 ;; As we choosed values 0, 1 and 6 to denote empty, X and O squares, the
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
274 ;; contents of a qtuple is uniquely determined by the sum of its elements and
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 ;; we just have to set up a translation table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (defconst gomoku-score-trans-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (vector nil-score Xscore XXscore XXXscore XXXXscore 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 Oscore 0 0 0 0 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 OOscore 0 0 0 0 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 OOOscore 0 0 0 0 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 OOOOscore 0 0 0 0 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 "Vector associating qtuple contents to their score.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ;; If you do not modify drastically the previous constants, the only way for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 ;; square to have a score higher than OOOOscore is to belong to a "OOOO"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 ;; qtuple, thus to be a winning move. Similarly, the only way for a square to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 ;; have a score between XXXXscore and OOOOscore is to belong to a "XXXX"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 ;; qtuple. We may use these considerations to detect when a given move is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 ;; winning or loosing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (defconst gomoku-winning-threshold OOOOscore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 "Threshold score beyond which an Emacs move is winning.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (defconst gomoku-loosing-threshold XXXXscore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 "Threshold score beyond which a human move is winning.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (defun gomoku-strongest-square ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 "Compute index of free square with highest score, or nil if none."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 ;; We just have to loop other all squares. However there are two problems:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ;; 1/ The SCORE-TABLE only gives correct scores to free squares. To speed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;; up future searches, we set the score of padding or occupied squares
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 ;; to -1 whenever we meet them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 ;; 2/ We want to choose randomly between equally good moves.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (let ((score-max 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (count 0) ; Number of equally good moves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (square (gomoku-xy-to-index 1 1)) ; First square
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (end (gomoku-xy-to-index gomoku-board-width gomoku-board-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 best-square score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (while (<= square end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 ;; If score is lower (i.e. most of the time), skip to next:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 ((< (aref gomoku-score-table square) score-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 ;; If score is better, beware of non free squares:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 ((> (setq score (aref gomoku-score-table square)) score-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (if (zerop (aref gomoku-board square)) ; is it free ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (setq count 1 ; yes: take it !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 best-square square
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 score-max score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (aset gomoku-score-table square -1))) ; no: kill it !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 ;; If score is equally good, choose randomly. But first check freeness:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 ((not (zerop (aref gomoku-board square)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (aset gomoku-score-table square -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ((zerop (random (setq count (1+ count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (setq best-square square
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 score-max score)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (setq square (1+ square))) ; try next square
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 best-square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 ;;; INITIALIZING THE SCORE TABLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 ;; At initialization the board is empty so that every qtuple amounts for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 ;; nil-score. Therefore, the score of any square is nil-score times the number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 ;; of qtuples that pass through it. This number is 3 in a corner and 20 if you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 ;; are sufficiently far from the sides. As computing the number is time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 ;; consuming, we initialize every square with 20*nil-score and then only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 ;; consider squares at less than 5 squares from one side. We speed this up by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ;; taking symmetry into account.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ;; Also, as it is likely that successive games will be played on a board with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ;; same size, it is a good idea to save the initial SCORE-TABLE configuration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (defvar gomoku-saved-score-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 "Recorded initial value of previous score table.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (defvar gomoku-saved-board-width nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 "Recorded value of previous board width.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (defvar gomoku-saved-board-height nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 "Recorded value of previous board height.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (defun gomoku-init-score-table ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 "Create the score table vector and fill it with initial values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (if (and gomoku-saved-score-table ; Has it been stored last time ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (= gomoku-board-width gomoku-saved-board-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (= gomoku-board-height gomoku-saved-board-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (setq gomoku-score-table (copy-sequence gomoku-saved-score-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 ;; No, compute it:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (setq gomoku-score-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (make-vector gomoku-vector-length (* 20 nil-score)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (let (i j maxi maxj maxi2 maxj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (setq maxi (/ (1+ gomoku-board-width) 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 maxj (/ (1+ gomoku-board-height) 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 maxi2 (min 4 maxi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 maxj2 (min 4 maxj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 ;; We took symmetry into account and could use it more if the board
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 ;; would have been square and not rectangular !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 ;; In our case we deal with all (i,j) in the set [1..maxi2]*[1..maxj] U
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 ;; [maxi2+1..maxi]*[1..maxj2]. Maxi2 and maxj2 are used because the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 ;; board may well be less than 8 by 8 !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (setq i 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (while (<= i maxi2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (setq j 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (while (<= j maxj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (gomoku-init-square-score i j)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (setq j (1+ j)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (while (<= i maxi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (setq j 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (while (<= j maxj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (gomoku-init-square-score i j)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (setq j (1+ j)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (setq i (1+ i))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (setq gomoku-saved-score-table (copy-sequence gomoku-score-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 gomoku-saved-board-width gomoku-board-width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 gomoku-saved-board-height gomoku-board-height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (defun gomoku-nb-qtuples (i j)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 "Return the number of qtuples containing square I,J."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ;; This function is complicated because we have to deal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 ;; with ugly cases like 3 by 6 boards, but it works.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 ;; If you have a simpler (and correct) solution, send it to me. Thanks !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (let ((left (min 4 (1- i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (right (min 4 (- gomoku-board-width i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (up (min 4 (1- j)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (down (min 4 (- gomoku-board-height j))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (+ -12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (min (max (+ left right) 3) 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (min (max (+ up down) 3) 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (min (max (+ (min left up) (min right down)) 3) 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (min (max (+ (min right up) (min left down)) 3) 8))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (defun gomoku-init-square-score (i j)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 "Give initial score to square I,J and to its mirror images."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (let ((ii (1+ (- gomoku-board-width i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (jj (1+ (- gomoku-board-height j)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (sc (* (gomoku-nb-qtuples i j) (aref gomoku-score-trans-table 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (aset gomoku-score-table (gomoku-xy-to-index i j) sc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (aset gomoku-score-table (gomoku-xy-to-index ii j) sc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (aset gomoku-score-table (gomoku-xy-to-index i jj) sc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (aset gomoku-score-table (gomoku-xy-to-index ii jj) sc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 ;;; MAINTAINING THE SCORE TABLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 ;; We do not provide functions for computing the SCORE-TABLE given the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 ;; contents of the BOARD. This would involve heavy nested loops, with time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 ;; proportional to the size of the board. It is better to update the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 ;; SCORE-TABLE after each move. Updating needs not modify more than 36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 ;; squares: it is done in constant time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (defun gomoku-update-score-table (square dval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 "Update score table after SQUARE received a DVAL increment."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 ;; The board has already been updated when this function is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 ;; Updating scores is done by looking for qtuples boundaries in all four
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 ;; directions and then calling update-score-in-direction.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 ;; Finally all squares received the right increment, and then are up to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 ;; date, except possibly for SQUARE itself if we are taking a move back for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 ;; its score had been set to -1 at the time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (let* ((x (gomoku-index-to-x square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (y (gomoku-index-to-y square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (imin (max -4 (- 1 x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (jmin (max -4 (- 1 y)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (imax (min 0 (- gomoku-board-width x 4)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (jmax (min 0 (- gomoku-board-height y 4))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (gomoku-update-score-in-direction imin imax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 square 1 0 dval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (gomoku-update-score-in-direction jmin jmax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 square 0 1 dval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (gomoku-update-score-in-direction (max imin jmin) (min imax jmax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 square 1 1 dval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (gomoku-update-score-in-direction (max (- 1 y) -4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (- x gomoku-board-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (min 0 (- x 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (- gomoku-board-height y 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 square -1 1 dval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (defun gomoku-update-score-in-direction (left right square dx dy dval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 "Update scores for all squares in the qtuples starting between the LEFTth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 square and the RIGHTth after SQUARE, along the DX, DY direction, considering
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 that DVAL has been added on SQUARE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 ;; We always have LEFT <= 0, RIGHT <= 0 and DEPL > 0 but we may very well
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 ;; have LEFT > RIGHT, indicating that no qtuple contains SQUARE along that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 ;; DX,DY direction.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 ((> left right)) ; Quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (t ; Else ..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (let (depl square0 square1 square2 count delta)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (setq depl (gomoku-xy-to-index dx dy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 square0 (+ square (* left depl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 square1 (+ square (* right depl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 square2 (+ square0 (* 4 depl)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 ;; Compute the contents of the first qtuple:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (setq square square0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 count 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (while (<= square square2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (setq count (+ count (aref gomoku-board square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 square (+ square depl)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (while (<= square0 square1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 ;; Update the squares of the qtuple beginning in SQUARE0 and ending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 ;; in SQUARE2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (setq delta (- (aref gomoku-score-trans-table count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (aref gomoku-score-trans-table (- count dval))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (cond ((not (zerop delta)) ; or else nothing to update
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (setq square square0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (while (<= square square2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (if (zerop (aref gomoku-board square)) ; only for free squares
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (aset gomoku-score-table square
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (+ (aref gomoku-score-table square) delta)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (setq square (+ square depl)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 ;; Then shift the qtuple one square along DEPL, this only requires
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 ;; modifying SQUARE0 and SQUARE2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (setq square2 (+ square2 depl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 count (+ count (- (aref gomoku-board square0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (aref gomoku-board square2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 square0 (+ square0 depl)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 ;;; GAME CONTROL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 ;; Several variables are used to monitor a game, including a GAME-HISTORY (the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 ;; list of all (SQUARE . PREVSCORE) played) that allows to take moves back
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 ;; (anti-updating the score table) and to compute the table from scratch in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 ;; case of an interruption.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (defvar gomoku-game-in-progress nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 "Non-nil if a game is in progress.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (defvar gomoku-game-history nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 "A record of all moves that have been played during current game.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (defvar gomoku-number-of-moves nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 "Number of moves already played in current game.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (defvar gomoku-number-of-human-moves nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 "Number of moves already played by human in current game.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (defvar gomoku-emacs-played-first nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 "Non-nil if Emacs played first.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (defvar gomoku-human-took-back nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 "Non-nil if Human took back a move during the game.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (defvar gomoku-human-refused-draw nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 "Non-nil if Human refused Emacs offer of a draw.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (defvar gomoku-emacs-is-computing nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 ;; This is used to detect interruptions. Hopefully, it should not be needed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 "Non-nil if Emacs is in the middle of a computation.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (defun gomoku-start-game (n m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 "Initialize a new game on an N by M board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (setq gomoku-emacs-is-computing t) ; Raise flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (setq gomoku-game-in-progress t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (setq gomoku-board-width n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 gomoku-board-height m
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 gomoku-vector-length (1+ (* (+ m 2) (1+ n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 gomoku-draw-limit (/ (* 7 n m) 10))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
537 (setq gomoku-game-history nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 gomoku-number-of-moves 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 gomoku-number-of-human-moves 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 gomoku-emacs-played-first nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 gomoku-human-took-back nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 gomoku-human-refused-draw nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (gomoku-init-display n m) ; Display first: the rest takes time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (gomoku-init-score-table) ; INIT-BOARD requires that the score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (gomoku-init-board) ; table be already created.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (setq gomoku-emacs-is-computing nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (defun gomoku-play-move (square val &optional dont-update-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 "Go to SQUARE, play VAL and update everything."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (setq gomoku-emacs-is-computing t) ; Raise flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (cond ((= 1 val) ; a Human move
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (setq gomoku-number-of-human-moves (1+ gomoku-number-of-human-moves)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 ((zerop gomoku-number-of-moves) ; an Emacs move. Is it first ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (setq gomoku-emacs-played-first t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (setq gomoku-game-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (cons (cons square (aref gomoku-score-table square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 gomoku-game-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 gomoku-number-of-moves (1+ gomoku-number-of-moves))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (gomoku-plot-square square val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (aset gomoku-board square val) ; *BEFORE* UPDATE-SCORE !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (if dont-update-score nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (gomoku-update-score-table square val) ; previous val was 0: dval = val
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (aset gomoku-score-table square -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (setq gomoku-emacs-is-computing nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (defun gomoku-take-back ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 "Take back last move and update everything."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (setq gomoku-emacs-is-computing t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (let* ((last-move (car gomoku-game-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (square (car last-move))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (oldval (aref gomoku-board square)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (if (= 1 oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (setq gomoku-number-of-human-moves (1- gomoku-number-of-human-moves)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (setq gomoku-game-history (cdr gomoku-game-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 gomoku-number-of-moves (1- gomoku-number-of-moves))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (gomoku-plot-square square 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (aset gomoku-board square 0) ; *BEFORE* UPDATE-SCORE !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (gomoku-update-score-table square (- oldval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (aset gomoku-score-table square (cdr last-move)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (setq gomoku-emacs-is-computing nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 ;;; SESSION CONTROL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (defvar gomoku-number-of-emacs-wins 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 "Number of games Emacs won in this session.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (defvar gomoku-number-of-human-wins 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 "Number of games you won in this session.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (defvar gomoku-number-of-draws 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 "Number of games already drawn in this session.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (defun gomoku-terminate-game (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 "Terminate the current game with RESULT."
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
598 (let (message)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
599 (cond
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
600 ((eq result 'emacs-won)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
601 (setq gomoku-number-of-emacs-wins (1+ gomoku-number-of-emacs-wins))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
602 (setq message
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
603 (cond ((< gomoku-number-of-moves 20)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
604 "This was a REALLY QUICK win.")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
605 (gomoku-human-refused-draw
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
606 "I won... Too bad you refused my offer of a draw !")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
607 (gomoku-human-took-back
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
608 "I won... Taking moves back will not help you !")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
609 ((not gomoku-emacs-played-first)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
610 "I won... Playing first did not help you much !")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
611 ((and (zerop gomoku-number-of-human-wins)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
612 (zerop gomoku-number-of-draws)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
613 (> gomoku-number-of-emacs-wins 1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
614 "I'm becoming tired of winning...")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
615 (t
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
616 "I won."))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
617 ((eq result 'human-won)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
618 (setq gomoku-number-of-human-wins (1+ gomoku-number-of-human-wins))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
619 (setq message
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
620 (cond
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
621 (gomoku-human-took-back
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
622 "OK, you won this one. I, for one, never take my moves back...")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
623 (gomoku-emacs-played-first
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
624 "OK, you won this one... so what ?")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
625 (t
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
626 "OK, you won this one. Now, let me play first just once."))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
627 ((eq result 'human-resigned)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
628 (setq gomoku-number-of-emacs-wins (1+ gomoku-number-of-emacs-wins))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
629 (setq message "So you resign. That's just one more win for me."))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
630 ((eq result 'nobody-won)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
631 (setq gomoku-number-of-draws (1+ gomoku-number-of-draws))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
632 (setq message
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
633 (cond
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
634 (gomoku-human-took-back
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
635 "This is a draw. I, for one, never take my moves back...")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
636 (gomoku-emacs-played-first
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
637 "This is a draw. Just chance, I guess.")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
638 (t
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
639 "This is a draw. Now, let me play first just once."))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
640 ((eq result 'draw-agreed)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
641 (setq gomoku-number-of-draws (1+ gomoku-number-of-draws))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
642 (setq message
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
643 (cond
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
644 (gomoku-human-took-back
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
645 "Draw agreed. I, for one, never take my moves back...")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
646 (gomoku-emacs-played-first
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
647 "Draw agreed. You were lucky.")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
648 (t
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
649 "Draw agreed. Now, let me play first just once."))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
650 ((eq result 'crash-game)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
651 (setq message
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
652 "Sorry, I have been interrupted and cannot resume that game...")))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
653
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
654 (gomoku-display-statistics)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
655 (if message (message message))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
656 (ding)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
657 (setq gomoku-game-in-progress nil)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (defun gomoku-crash-game ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 "What to do when Emacs detects it has been interrupted."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (setq gomoku-emacs-is-computing nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (gomoku-terminate-game 'crash-game)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (sit-for 4) ; Let's see the message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (gomoku-prompt-for-other-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 ;;; INTERACTIVE COMMANDS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (defun gomoku (&optional n m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 "Start a Gomoku game between you and Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 If a game is in progress, this command allow you to resume it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 If optional arguments N and M are given, an N by M board is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
676 You and Emacs play in turn by marking a free square. You mark it with X
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 and Emacs marks it with O. The winner is the first to get five contiguous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 marks horizontally, vertically or in diagonal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 You play by moving the cursor over the square you choose and hitting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 \\<gomoku-mode-map>\\[gomoku-human-plays].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 Use \\[describe-mode] for more info."
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
682 (interactive)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (gomoku-switch-to-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (gomoku-emacs-is-computing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (gomoku-crash-game))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
687 ((not gomoku-game-in-progress)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (let ((max-width (gomoku-max-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (max-height (gomoku-max-height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (or n (setq n max-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (or m (setq m max-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (cond ((< n 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (error "I need at least 1 column"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 ((< m 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (error "I need at least 1 row"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 ((> n max-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (error "I cannot display %d columns in that window" n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (if (and (> m max-height)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
699 (not (equal m gomoku-saved-board-height))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
700 ;; Use EQUAL because SAVED-BOARD-HEIGHT may be nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (not (y-or-n-p (format "Do you really want %d rows " m))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (setq m max-height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (message "One moment, please...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (gomoku-start-game n m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (if (y-or-n-p "Do you allow me to play first ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (gomoku-emacs-plays)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (gomoku-prompt-for-move)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 ((y-or-n-p "Shall we continue our game ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (gomoku-prompt-for-move))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (gomoku-human-resigns))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (defun gomoku-emacs-plays ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 "Compute Emacs next move and play it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (gomoku-switch-to-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (gomoku-emacs-is-computing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (gomoku-crash-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 ((not gomoku-game-in-progress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (gomoku-prompt-for-other-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (message "Let me think...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (let (square score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (setq square (gomoku-strongest-square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (cond ((null square)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (gomoku-terminate-game 'nobody-won))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (setq score (aref gomoku-score-table square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (gomoku-play-move square 6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (cond ((>= score gomoku-winning-threshold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (gomoku-find-filled-qtuple square 6)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
733 (gomoku-cross-winning-qtuple)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (gomoku-terminate-game 'emacs-won))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 ((zerop score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (gomoku-terminate-game 'nobody-won))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 ((and (> gomoku-number-of-moves gomoku-draw-limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (not gomoku-human-refused-draw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (gomoku-offer-a-draw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (gomoku-terminate-game 'draw-agreed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (gomoku-prompt-for-move)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (defun gomoku-click (click)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 "Play at the square where you click."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (interactive "e")
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
747 (mouse-set-point click)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
748 (gomoku-human-plays))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (defun gomoku-human-plays ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 "Signal to the Gomoku program that you have played.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 You must have put the cursor on the square where you want to play.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 If the game is finished, this command requests for another game."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (gomoku-switch-to-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (gomoku-emacs-is-computing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 (gomoku-crash-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 ((not gomoku-game-in-progress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (gomoku-prompt-for-other-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (let (square score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (setq square (gomoku-point-square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (cond ((null square)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (error "Your point is not on a square. Retry !"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 ((not (zerop (aref gomoku-board square)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (error "Your point is not on a free square. Retry !"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (setq score (aref gomoku-score-table square))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (gomoku-play-move square 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (cond ((and (>= score gomoku-loosing-threshold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 ;; Just testing SCORE > THRESHOLD is not enough for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 ;; detecting wins, it just gives an indication that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 ;; we confirm with GOMOKU-FIND-FILLED-QTUPLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (gomoku-find-filled-qtuple square 1))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
776 (gomoku-cross-winning-qtuple)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (gomoku-terminate-game 'human-won))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (gomoku-emacs-plays)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (defun gomoku-human-takes-back ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 "Signal to the Gomoku program that you wish to take back your last move."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (gomoku-switch-to-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (gomoku-emacs-is-computing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (gomoku-crash-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 ((not gomoku-game-in-progress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (message "Too late for taking back...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (sit-for 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (gomoku-prompt-for-other-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 ((zerop gomoku-number-of-human-moves)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (message "You have not played yet... Your move ?"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (message "One moment, please...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 ;; It is possible for the user to let Emacs play several consecutive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 ;; moves, so that the best way to know when to stop taking back moves is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 ;; to count the number of human moves:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (setq gomoku-human-took-back t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (let ((number gomoku-number-of-human-moves))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (while (= number gomoku-number-of-human-moves)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (gomoku-take-back)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (gomoku-prompt-for-move))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (defun gomoku-human-resigns ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 "Signal to the Gomoku program that you may want to resign."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (gomoku-switch-to-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (gomoku-emacs-is-computing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 (gomoku-crash-game))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 ((not gomoku-game-in-progress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (message "There is no game in progress"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 ((y-or-n-p "You mean, you resign ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (gomoku-terminate-game 'human-resigned))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 ((y-or-n-p "You mean, we continue ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (gomoku-prompt-for-move))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (gomoku-terminate-game 'human-resigned)))) ; OK. Accept it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 ;;; PROMPTING THE HUMAN PLAYER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (defun gomoku-prompt-for-move ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 "Display a message asking for Human's move."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (message (if (zerop gomoku-number-of-human-moves)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 "Your move ? (move to a free square and hit X, RET ...)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 "Your move ?"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 ;; This may seem silly, but if one omits the following line (or a similar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 ;; one), the cursor may very well go to some place where POINT is not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (save-excursion (set-buffer (other-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (defun gomoku-prompt-for-other-game ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 "Ask for another game, and start it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (if (y-or-n-p "Another game ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (gomoku gomoku-board-width gomoku-board-height)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
838 (message "Chicken !")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (defun gomoku-offer-a-draw ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 "Offer a draw and return T if Human accepted it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (or (y-or-n-p "I offer you a draw. Do you accept it ")
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
843 (prog1 (setq gomoku-human-refused-draw t)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
844 nil)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 ;;; DISPLAYING THE BOARD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 ;; You may change these values if you have a small screen or if the squares
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 ;; look rectangular, but spacings SHOULD be at least 2 (MUST BE at least 1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (defconst gomoku-square-width 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 "*Horizontal spacing between squares on the Gomoku board.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (defconst gomoku-square-height 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 "*Vertical spacing between squares on the Gomoku board.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (defconst gomoku-x-offset 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 "*Number of columns between the Gomoku board and the side of the window.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (defconst gomoku-y-offset 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 "*Number of lines between the Gomoku board and the top of the window.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (defun gomoku-max-width ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 "Largest possible board width for the current window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (1+ (/ (- (window-width (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 gomoku-x-offset gomoku-x-offset 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 gomoku-square-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (defun gomoku-max-height ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 "Largest possible board height for the current window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (1+ (/ (- (window-height (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 gomoku-y-offset gomoku-y-offset 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 ;; 2 instead of 1 because WINDOW-HEIGHT includes the mode line !
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 gomoku-square-height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
879 (defun gomoku-point-x ()
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
880 "Return the board column where point is, or nil if it is not a board column."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
881 (let ((col (- (current-column) gomoku-x-offset)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
882 (if (and (>= col 0)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
883 (zerop (% col gomoku-square-width))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
884 (<= (setq col (1+ (/ col gomoku-square-width)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
885 gomoku-board-width))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
886 col)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
887
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 (defun gomoku-point-y ()
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
889 "Return the board row where point is, or nil if it is not a board row."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
890 (let ((row (- (count-lines 1 (point)) gomoku-y-offset 1)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
891 (if (and (>= row 0)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
892 (zerop (% row gomoku-square-height))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
893 (<= (setq row (1+ (/ row gomoku-square-height)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
894 gomoku-board-height))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
895 row)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (defun gomoku-point-square ()
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
898 "Return the index of the square point is on, or nil if not on the board."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
899 (let (x y)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
900 (and (setq x (gomoku-point-x))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
901 (setq y (gomoku-point-y))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
902 (gomoku-xy-to-index x y))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (defun gomoku-goto-square (index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 "Move point to square number INDEX."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (gomoku-goto-xy (gomoku-index-to-x index) (gomoku-index-to-y index)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (defun gomoku-goto-xy (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 "Move point to square at X, Y coords."
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
910 (goto-line (+ 1 gomoku-y-offset (* gomoku-square-height (1- y))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (move-to-column (+ gomoku-x-offset (* gomoku-square-width (1- x)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (defun gomoku-plot-square (square value)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
914 "Draw 'X', 'O' or '.' on SQUARE (depending on VALUE), leave point there."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
915 (gomoku-goto-square square)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
916 (gomoku-put-char (cond ((= value 1) ?X)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
917 ((= value 6) ?O)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
918 (t ?.)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
919 (sit-for 0)) ; Display NOW
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
920
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
921 (defun gomoku-put-char (char)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
922 "Draw CHAR on the Gomoku screen."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
923 (let ((inhibit-read-only t))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
924 (insert char)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (delete-char 1)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
926 (backward-char 1)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (defun gomoku-init-display (n m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 "Display an N by M Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (buffer-disable-undo (current-buffer))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
931 (let ((inhibit-read-only t))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (erase-buffer)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
933 (let (string1 string2 string3 string4)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
934 ;; We do not use gomoku-plot-square which would be too slow for
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
935 ;; initializing the display. Rather we build STRING1 for lines where
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
936 ;; board squares are to be found, and STRING2 for empty lines. STRING1 is
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
937 ;; like STRING2 except for dots every DX squares. Empty lines are filled
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
938 ;; with spaces so that cursor moving up and down remains on the same
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
939 ;; column.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
940 (setq string1 (concat (make-string (1- gomoku-square-width) ? ) ".")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
941 string1 (apply 'concat
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
942 (make-list (1- n) string1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
943 string1 (concat (make-string gomoku-x-offset ? ) "." string1 "\n")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
944 string2 (make-string (+ 1 gomoku-x-offset
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
945 (* (1- n) gomoku-square-width))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
946 ? )
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
947 string2 (concat string2 "\n")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
948 string3 (apply 'concat
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
949 (make-list (1- gomoku-square-height) string2))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
950 string3 (concat string3 string1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
951 string3 (apply 'concat
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
952 (make-list (1- m) string3))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
953 string4 (apply 'concat
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
954 (make-list gomoku-y-offset string2)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
955 (insert string4 string1 string3))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
956 (gomoku-goto-xy (/ (1+ n) 2) (/ (1+ m) 2)) ; center of the board
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
957 (sit-for 0))) ; Display NOW
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (defun gomoku-display-statistics ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 "Obnoxiously display some statistics about previous games in mode line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 ;; We store this string in the mode-line-process local variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 ;; This is certainly not the cleanest way out ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (setq mode-line-process
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
964 (cond
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
965 ((not (zerop gomoku-number-of-draws))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
966 (format ": Won %d, lost %d, drew %d"
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
967 gomoku-number-of-human-wins
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
968 gomoku-number-of-emacs-wins
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
969 gomoku-number-of-draws))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
970 (t
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
971 (format ": Won %d, lost %d"
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
972 gomoku-number-of-human-wins
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
973 gomoku-number-of-emacs-wins))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (force-mode-line-update))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (defun gomoku-switch-to-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 "Find or create the Gomoku buffer, and display it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (let ((buff (get-buffer "*Gomoku*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (if buff ; Buffer exists:
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
981 (switch-to-buffer buff) ; no problem.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
982 (if gomoku-game-in-progress
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
983 (gomoku-crash-game)) ; buffer has been killed or something
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
984 (switch-to-buffer "*Gomoku*") ; Anyway, start anew.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
985 (gomoku-mode))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 ;;; CROSSING WINNING QTUPLES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 ;; When someone succeeds in filling a qtuple, we draw a line over the five
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 ;; corresponding squares. One problem is that the program does not know which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 ;; squares ! It only knows the square where the last move has been played and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 ;; who won. The solution is to scan the board along all four directions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
996 (defvar gomoku-winning-qtuple-beg nil
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
997 "First square of the winning qtuple.")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
998
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
999 (defvar gomoku-winning-qtuple-end nil
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1000 "Last square of the winning qtuple.")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1001
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1002 (defvar gomoku-winning-qtuple-dx nil
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1003 "Direction of the winning qtuple (along the X axis).")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1004
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1005 (defvar gomoku-winning-qtuple-dy nil
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1006 "Direction of the winning qtuple (along the Y axis).")
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1007
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1008
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 (defun gomoku-find-filled-qtuple (square value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 "Return T if SQUARE belongs to a qtuple filled with VALUEs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (or (gomoku-check-filled-qtuple square value 1 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (gomoku-check-filled-qtuple square value 0 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (gomoku-check-filled-qtuple square value 1 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (gomoku-check-filled-qtuple square value -1 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (defun gomoku-check-filled-qtuple (square value dx dy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 "Return T if SQUARE belongs to a qtuple filled with VALUEs along DX, DY."
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1018 ;; And record it in the WINNING-QTUPLE-... variables.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (let ((a 0) (b 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (left square) (right square)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1021 (depl (gomoku-xy-to-index dx dy))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1022 a+4)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (while (and (> a -4) ; stretch tuple left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (= value (aref gomoku-board (setq left (- left depl)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 (setq a (1- a)))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1026 (setq a+4 (+ a 4))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1027 (while (and (< b a+4) ; stretch tuple right
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (= value (aref gomoku-board (setq right (+ right depl)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (setq b (1+ b)))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1030 (cond ((= b a+4) ; tuple length = 5 ?
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1031 (setq gomoku-winning-qtuple-beg (+ square (* a depl))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1032 gomoku-winning-qtuple-end (+ square (* b depl))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1033 gomoku-winning-qtuple-dx dx
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1034 gomoku-winning-qtuple-dy dy)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1037 (defun gomoku-cross-winning-qtuple ()
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1038 "Cross winning qtuple, as found by `gomoku-find-filled-qtuple'."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1039 (gomoku-cross-qtuple gomoku-winning-qtuple-beg
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1040 gomoku-winning-qtuple-end
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1041 gomoku-winning-qtuple-dx
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1042 gomoku-winning-qtuple-dy))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1043
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (defun gomoku-cross-qtuple (square1 square2 dx dy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 "Cross every square between SQUARE1 and SQUARE2 in the DX, DY direction."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 (save-excursion ; Not moving point from last square
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1047 (let ((depl (gomoku-xy-to-index dx dy)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 ;; WARNING: this function assumes DEPL > 0 and SQUARE2 > SQUARE1
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1049 (while (not (= square1 square2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (gomoku-goto-square square1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (setq square1 (+ square1 depl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (cond
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1053 ((and (= dx 1) (= dy 0)) ; Horizontal
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1054 (let ((n 1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1055 (while (< n gomoku-square-width)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1056 (setq n (1+ n))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1057 (forward-char 1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1058 (gomoku-put-char ?-))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1059 ((and (= dx 0) (= dy 1)) ; Vertical
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1060 (let ((n 1))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (while (< n gomoku-square-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 (setq n (1+ n))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1063 (next-line 1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1064 (gomoku-put-char ?|))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1065 ((and (= dx -1) (= dy 1)) ; 1st Diagonal
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1066 (backward-char (/ gomoku-square-width 2))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1067 (next-line (/ gomoku-square-height 2))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1068 (gomoku-put-char ?/))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1069 ((and (= dx 1) (= dy 1)) ; 2nd Diagonal
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1070 (forward-char (/ gomoku-square-width 2))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1071 (next-line (/ gomoku-square-height 2))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1072 (gomoku-put-char ?\\))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (sit-for 0)) ; Display NOW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 ;;; CURSOR MOTION.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 ;;;
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1078 (defun gomoku-move-left ()
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1079 "Move point backward one column on the Gomoku board."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1080 (interactive)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1081 (let ((x (gomoku-point-x)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1082 (backward-char (cond ((null x) 1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1083 ((> x 1) gomoku-square-width)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1084 (t 0)))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1085
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1086 (defun gomoku-move-right ()
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1087 "Move point forward one column on the Gomoku board."
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1088 (interactive)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1089 (let ((x (gomoku-point-x)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1090 (forward-char (cond ((null x) 1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1091 ((< x gomoku-board-width) gomoku-square-width)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1092 (t 0)))))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1093
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (defun gomoku-move-down ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 "Move point down one row on the Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (interactive)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1097 (let ((y (gomoku-point-y)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1098 (next-line (cond ((null y) 1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1099 ((< y gomoku-board-height) gomoku-square-height)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1100 (t 0)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 (defun gomoku-move-up ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 "Move point up one row on the Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (interactive)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1105 (let ((y (gomoku-point-y)))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1106 (previous-line (cond ((null y) 1)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1107 ((> y 1) gomoku-square-height)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1108 (t 0)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 (defun gomoku-move-ne ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 "Move point North East on the Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 (gomoku-move-up)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1114 (gomoku-move-right))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (defun gomoku-move-se ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 "Move point South East on the Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (gomoku-move-down)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1120 (gomoku-move-right))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (defun gomoku-move-nw ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 "Move point North West on the Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (gomoku-move-up)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1126 (gomoku-move-left))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (defun gomoku-move-sw ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 "Move point South West on the Gomoku board."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 (gomoku-move-down)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 4
diff changeset
1132 (gomoku-move-left))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (provide 'gomoku)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 ;;; gomoku.el ends here