annotate lisp/games/blackbox.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children b82b59fe008d
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 ;;; blackbox.el --- blackbox game in Emacs Lisp
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) 1985, 1986, 1987, 1992 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: F. Thomas May <uw-nsr!uw-warp!tom@beaver.cs.washington.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Adapted-By: ESR
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; Synched up with: FSF 19.28.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ; by F. Thomas May <uw-nsr!uw-warp!tom@beaver.cs.washington.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ; doc comment by Root Boy Jim <rbj@dsys.icst.nbs.gov>, 27 Apr 89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ; interface improvements by ESR, Dec 5 1991.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ; The object of the game is to find four hidden balls by shooting rays
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ; into the black box. There are four possibilities: 1) the ray will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ; pass thru the box undisturbed, 2) it will hit a ball and be absorbed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ; 3) it will be deflected and exit the box, or 4) be deflected immediately,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ; not even being allowed entry into the box.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ; The strange part is the method of deflection. It seems that rays will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ; not pass next to a ball, and change direction at right angles to avoid it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ; R 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ; 1 - - - - - - - - 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ; - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ; - O - - - - - - 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ; 2 - - - - O - O -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ; 4 - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ; 5 - - - - - - - - 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ; - - - - - - - - R
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ; H - - - - - - - O
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ; 2 H 4 H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ; Rays which enter and exit are numbered. You can see that rays 1 & 5 pass
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ; thru the box undisturbed. Ray 2 is deflected by the northwesternmost
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ; ball. Likewise rays 3 and 4. Rays which hit balls and are absorbed are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ; marked with H. The bottom of the left and the right of the bottom hit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ; the southeastern ball directly. Rays may also hit balls after being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ; reflected. Consider the H on the bottom next to the 4. It bounces off
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ; the NW-ern most ball and hits the central ball. A ray shot from above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ; the right side 5 would hit the SE-ern most ball. The R beneath the 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ; is because the ball is returned instantly. It is not allowed into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ; the box if it would reflect immediately. The R on the top is a more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ; leisurely return. Both central balls would tend to deflect it east
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ; or west, but it cannot go either way, so it just retreats.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ; At the end of the game, if you've placed guesses for as many balls as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ; there are in the box, the true board position will be revealed. Each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 ; `x' is an incorrect guess of yours; `o' is the true location of a ball.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (defvar blackbox-mode-map nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (if blackbox-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (setq blackbox-mode-map (make-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (suppress-keymap blackbox-mode-map t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (define-key blackbox-mode-map "\C-f" 'bb-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (define-key blackbox-mode-map [right] 'bb-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (define-key blackbox-mode-map "\C-b" 'bb-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (define-key blackbox-mode-map [left] 'bb-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (define-key blackbox-mode-map "\C-p" 'bb-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (define-key blackbox-mode-map [up] 'bb-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (define-key blackbox-mode-map "\C-n" 'bb-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (define-key blackbox-mode-map [down] 'bb-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (define-key blackbox-mode-map "\C-e" 'bb-eol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (define-key blackbox-mode-map "\C-a" 'bb-bol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (define-key blackbox-mode-map " " 'bb-romp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (define-key blackbox-mode-map [insert] 'bb-romp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (define-key blackbox-mode-map "\C-m" 'bb-done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (define-key blackbox-mode-map [kp_enter] 'bb-done))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;; Blackbox mode is suitable only for specially formatted data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (put 'blackbox-mode 'mode-class 'special)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (defvar bb-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (defvar bb-balls-placed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (defvar bb-x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (defvar bb-y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (defvar bb-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (defvar bb-detour-count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (defun blackbox-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 "Major mode for playing blackbox. To learn how to play blackbox,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 see the documentation for function `blackbox'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 The usual mnemonic keys move the cursor around the box.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 \\<blackbox-mode-map>\\[bb-bol] and \\[bb-eol] move to the beginning and end of line, respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 \\[bb-romp] -- send in a ray from point, or toggle a ball at point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 \\[bb-done] -- end game and get score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (use-local-map blackbox-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (setq truncate-lines t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (setq major-mode 'blackbox-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (setq mode-name "Blackbox"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (defun blackbox (num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 "Play blackbox. Optional prefix argument is the number of balls;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 the default is 4.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 What is blackbox?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 Blackbox is a game of hide and seek played on an 8 by 8 grid (the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Blackbox). Your opponent (Emacs, in this case) has hidden several
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 balls (usually 4) within this box. By shooting rays into the box and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 observing where they emerge it is possible to deduce the positions of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 the hidden balls. The fewer rays you use to find the balls, the lower
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 your score.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 Overview of play:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 \\<blackbox-mode-map>\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 To play blackbox, type \\[blackbox]. An optional prefix argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 specifies the number of balls to be hidden in the box; the default is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 four.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 The cursor can be moved around the box with the standard cursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 movement keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 To shoot a ray, move the cursor to the edge of the box and press SPC.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 The result will be determined and the playfield updated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 You may place or remove balls in the box by moving the cursor into the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 box and pressing \\[bb-romp].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 When you think the configuration of balls you have placed is correct,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 press \\[bb-done]. You will be informed whether you are correct or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 not, and be given your score. Your score is the number of letters and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 numbers around the outside of the box plus five for each incorrectly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 placed ball. If you placed any balls incorrectly, they will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 indicated with `x', and their actual positions indicated with `o'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 Details:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 There are three possible outcomes for each ray you send into the box:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 Detour: the ray is deflected and emerges somewhere other than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 where you sent it in. On the playfield, detours are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 denoted by matching pairs of numbers -- one where the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 ray went in, and the other where it came out.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 Reflection: the ray is reflected and emerges in the same place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 it was sent in. On the playfield, reflections are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 denoted by the letter `R'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 Hit: the ray strikes a ball directly and is absorbed. It does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 not emerge from the box. On the playfield, hits are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 denoted by the letter `H'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 The rules for how balls deflect rays are simple and are best shown by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 example.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 As a ray approaches a ball it is deflected ninety degrees. Rays can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 be deflected multiple times. In the diagrams below, the dashes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 represent empty box locations and the letter `O' represents a ball.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 The entrance and exit points of each ray are marked with numbers as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 described under \"Detour\" above. Note that the entrance and exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 points are always interchangeable. `*' denotes the path taken by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ray.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 Note carefully the relative positions of the ball and the ninety
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 degree deflection it causes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 - * - - - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 - * - - - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 1 * * - - - - - - - - - - - - - - - O - - - - O -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 - - O - - - - - - - O - - - - - - - * * * * - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 - - - - - - - - - - - * * * * * 2 3 * * * - - * - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 - - - - - - - - - - - * - - - - - - - O - * - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 - - - - - - - - - - - * - - - - - - - - * * - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 - - - - - - - - - - - * - - - - - - - - * - O -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 2 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 As mentioned above, a reflection occurs when a ray emerges from the same point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 it was sent in. This can happen in several ways:
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 - - - - - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 - - - - O - - - - - O - O - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 R * * * * - - - - - - - * - - - - O - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 - - - - O - - - - - - * - - - - R - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 - - - - - - - - - - - * - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 - - - - - - - - - - - * - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 - - - - - - - - R * * * * - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 - - - - - - - - - - - - O - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 In the first example, the ray is deflected downwards by the upper
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 ball, then left by the lower ball, and finally retraces its path to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 its point of origin. The second example is similar. The third
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 example is a bit anomalous but can be rationalized by realizing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ray never gets a chance to get into the box. Alternatively, the ray
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 can be thought of as being deflected downwards and immediately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 emerging from the box.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 A hit occurs when a ray runs straight into a ball:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 - - - - - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 - - - - - - - - - - - - - - - - - - - - O - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 - - - - - - - - - - - - O - - - H * * * * - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 - - - - - - - - H * * * * O - - - - - - * - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 - - - - - - - - - - - - O - - - - - - O - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 H * * * O - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 - - - - - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 - - - - - - - - - - - - - - - - - - - - - - - -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 Be sure to compare the second example of a hit with the first example of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 a reflection."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (switch-to-buffer "*Blackbox*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (blackbox-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (setq buffer-read-only t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (buffer-disable-undo (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (make-local-variable 'bb-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (setq bb-board (bb-init-board (or num 4)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (make-local-variable 'bb-balls-placed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (setq bb-balls-placed nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (make-local-variable 'bb-x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (setq bb-x -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (make-local-variable 'bb-y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (setq bb-y -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (make-local-variable 'bb-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (setq bb-score 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (make-local-variable 'bb-detour-count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (setq bb-detour-count 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (bb-insert-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (bb-goto (cons bb-x bb-y)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (defun bb-init-board (num-balls)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (random t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (let (board pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (while (>= (setq num-balls (1- num-balls)) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (setq pos (cons (random 8) (random 8)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (bb-member pos board)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (setq board (cons pos board)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 board))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (defun bb-insert-board ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (let (i (buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (insert " \n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (setq i 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (while (>= (setq i (1- i)) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (insert " - - - - - - - - \n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (insert " \n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (insert (format "\nThere are %d balls in the box" (length bb-board)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (defun bb-right ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (if (= bb-x 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (forward-char 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (setq bb-x (1+ bb-x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (defun bb-left ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (if (= bb-x -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (backward-char 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (setq bb-x (1- bb-x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (defun bb-up ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (if (= bb-y -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (previous-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (setq bb-y (1- bb-y))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (defun bb-down ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (if (= bb-y 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (next-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (setq bb-y (1+ bb-y))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (defun bb-eol ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (setq bb-x 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (bb-goto (cons bb-x bb-y)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (defun bb-bol ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (setq bb-x -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (bb-goto (cons bb-x bb-y)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (defun bb-romp ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 ((and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (or (= bb-x -1) (= bb-x 8))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (or (= bb-y -1) (= bb-y 8))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 ((bb-outside-box bb-x bb-y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (bb-trace-ray bb-x bb-y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (bb-place-ball bb-x bb-y))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (defun bb-place-ball (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (let ((coord (cons x y)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ((bb-member coord bb-balls-placed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (setq bb-balls-placed (bb-delete coord bb-balls-placed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (bb-update-board "-"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (setq bb-balls-placed (cons coord bb-balls-placed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (bb-update-board "O")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (defun bb-trace-ray (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (let ((result (bb-trace-ray-2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 ((= x -1) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 ((= x 8) -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (t 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 y
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ((= y -1) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ((= y 8) -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (t 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ((eq result 'hit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (bb-update-board "H")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (setq bb-score (1+ bb-score)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 ((equal result (cons x y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (bb-update-board "R")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (setq bb-score (1+ bb-score)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (setq bb-detour-count (1+ bb-detour-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (bb-update-board (format "%d" bb-detour-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (bb-goto result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (bb-update-board (format "%d" bb-detour-count)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (setq bb-score (+ bb-score 2))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (defun bb-trace-ray-2 (first x dx y dy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 ((and (not first)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (bb-outside-box x y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (cons x y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 ((bb-member (cons (+ x dx) (+ y dy)) bb-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 'hit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 ((bb-member (cons (+ x dx dy) (+ y dy dx)) bb-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (bb-trace-ray-2 nil x (- dy) y (- dx)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 ((bb-member (cons (+ x dx (- dy)) (+ y dy (- dx))) bb-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (bb-trace-ray-2 nil x dy y dx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (bb-trace-ray-2 nil (+ x dx) dx (+ y dy) dy))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (defun bb-done ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 "Finish the game and report score."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (let (bogus-balls)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 ((not (= (length bb-balls-placed) (length bb-board)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (message "There %s %d hidden ball%s; you have placed %d."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (if (= (length bb-board) 1) "is" "are")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (length bb-board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (if (= (length bb-board) 1) "" "s")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (length bb-balls-placed)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (setq bogus-balls (bb-show-bogus-balls bb-balls-placed bb-board))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (if (= bogus-balls 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (message "Right! Your score is %d." bb-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (message "Oops! You missed %d ball%s. Your score is %d."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 bogus-balls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (if (= bogus-balls 1) "" "s")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (+ bb-score (* 5 bogus-balls))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (bb-goto '(-1 . -1))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (defun bb-show-bogus-balls (balls-placed board)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (bb-show-bogus-balls-2 balls-placed board "x")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (bb-show-bogus-balls-2 board balls-placed "o"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (defun bb-show-bogus-balls-2 (list-1 list-2 c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 ((null list-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 ((bb-member (car list-1) list-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (bb-show-bogus-balls-2 (cdr list-1) list-2 c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (bb-goto (car list-1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (bb-update-board c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (1+ (bb-show-bogus-balls-2 (cdr list-1) list-2 c)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (defun bb-outside-box (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (or (= x -1) (= x 8) (= y -1) (= y 8)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (defun bb-goto (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (goto-char (+ (* (car pos) 2) (* (cdr pos) 22) 26)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (defun bb-update-board (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (backward-char (1- (length c)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (delete-char (length c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (insert c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (backward-char 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (defun bb-member (elt list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 "Returns non-nil if ELT is an element of LIST."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (eval (cons 'or (mapcar (function (lambda (x) (equal x elt))) list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (defun bb-delete (item list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 "Deletes ITEM from LIST and returns a copy."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 ((equal item (car list)) (cdr list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (t (cons (car list) (bb-delete item (cdr list))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 ;;; blackbox.el ends here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437