Mercurial > emacs
annotate lisp/play/gamegrid.el @ 75519:b271481fb8d2
(url-get-authentication): Fix typo in docstring.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 29 Jan 2007 16:58:37 +0000 |
parents | 4b3089985bc1 |
children | 5c5cfff568a1 f83d17e1ace6 |
rev | line source |
---|---|
38425
c6e12c6b1498
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
22490
diff
changeset
|
1 ;;; gamegrid.el --- library for implementing grid-based games on Emacs |
22490 | 2 |
74509 | 3 ;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
22490 | 5 |
6 ;; Author: Glynn Clements <glynn@sensei.co.uk> | |
7 ;; Version: 1.02 | |
8 ;; Created: 1997-08-13 | |
9 ;; Keywords: games | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
22490 | 27 |
28 ;;; Commentary: | |
29 | |
38425
c6e12c6b1498
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
22490
diff
changeset
|
30 ;;; Code: |
c6e12c6b1498
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
22490
diff
changeset
|
31 |
22490 | 32 (eval-when-compile |
33 (require 'cl)) | |
34 | |
35 ;; ;;;;;;;;;;;;; buffer-local variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
36 | |
37 (defvar gamegrid-use-glyphs t | |
38 "Non-nil means use glyphs when available.") | |
39 | |
40 (defvar gamegrid-use-color t | |
41 "Non-nil means use color when available.") | |
42 | |
43 (defvar gamegrid-font "-*-courier-medium-r-*-*-*-140-100-75-*-*-iso8859-*" | |
44 "Name of the font used in X mode.") | |
45 | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
46 (defvar gamegrid-face nil |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
47 "Indicates the face to use as a default.") |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
48 (make-variable-buffer-local 'gamegrid-face) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
49 |
22490 | 50 (defvar gamegrid-display-options nil) |
51 | |
52 (defvar gamegrid-buffer-width 0) | |
53 (defvar gamegrid-buffer-height 0) | |
54 (defvar gamegrid-blank 0) | |
55 | |
56 (defvar gamegrid-timer nil) | |
57 | |
58 (defvar gamegrid-display-mode nil) | |
59 | |
60 (defvar gamegrid-display-table) | |
61 | |
62 (defvar gamegrid-face-table nil) | |
63 | |
64 (defvar gamegrid-buffer-start 1) | |
65 | |
66 (defvar gamegrid-score-file-length 50 | |
67 "Number of high scores to keep") | |
68 | |
45085
9cd63d47f45f
(gamegrid-user-score-file-directory): New variable.
Colin Walters <walters@gnu.org>
parents:
44989
diff
changeset
|
69 (defvar gamegrid-user-score-file-directory "~/.emacs.d/games" |
9cd63d47f45f
(gamegrid-user-score-file-directory): New variable.
Colin Walters <walters@gnu.org>
parents:
44989
diff
changeset
|
70 "A directory for game scores which can't be shared. |
9cd63d47f45f
(gamegrid-user-score-file-directory): New variable.
Colin Walters <walters@gnu.org>
parents:
44989
diff
changeset
|
71 If Emacs was built without support for shared game scores, then this |
9cd63d47f45f
(gamegrid-user-score-file-directory): New variable.
Colin Walters <walters@gnu.org>
parents:
44989
diff
changeset
|
72 directory will be used.") |
9cd63d47f45f
(gamegrid-user-score-file-directory): New variable.
Colin Walters <walters@gnu.org>
parents:
44989
diff
changeset
|
73 |
22490 | 74 (make-variable-buffer-local 'gamegrid-use-glyphs) |
75 (make-variable-buffer-local 'gamegrid-use-color) | |
76 (make-variable-buffer-local 'gamegrid-font) | |
77 (make-variable-buffer-local 'gamegrid-display-options) | |
78 (make-variable-buffer-local 'gamegrid-buffer-width) | |
79 (make-variable-buffer-local 'gamegrid-buffer-height) | |
80 (make-variable-buffer-local 'gamegrid-blank) | |
81 (make-variable-buffer-local 'gamegrid-timer) | |
82 (make-variable-buffer-local 'gamegrid-display-mode) | |
83 (make-variable-buffer-local 'gamegrid-display-table) | |
84 (make-variable-buffer-local 'gamegrid-face-table) | |
85 (make-variable-buffer-local 'gamegrid-buffer-start) | |
86 (make-variable-buffer-local 'gamegrid-score-file-length) | |
87 | |
88 ;; ;;;;;;;;;;;;; global variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
89 | |
90 (defvar gamegrid-grid-x-face nil) | |
91 (defvar gamegrid-mono-x-face nil) | |
92 (defvar gamegrid-mono-tty-face nil) | |
93 | |
94 ;; ;;;;;;;;;;;;; constants ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
95 | |
96 (defconst gamegrid-glyph-height 16) | |
97 | |
98 (defconst gamegrid-xpm "\ | |
99 /* XPM */ | |
100 static char *noname[] = { | |
101 /* width height ncolors chars_per_pixel */ | |
102 \"16 16 3 1\", | |
103 /* colors */ | |
104 \"+ s col1\", | |
105 \". s col2\", | |
106 \"- s col3\", | |
107 /* pixels */ | |
108 \"---------------+\", | |
109 \"--------------++\", | |
110 \"--............++\", | |
111 \"--............++\", | |
112 \"--............++\", | |
113 \"--............++\", | |
114 \"--............++\", | |
115 \"--............++\", | |
116 \"--............++\", | |
117 \"--............++\", | |
118 \"--............++\", | |
119 \"--............++\", | |
120 \"--............++\", | |
121 \"--............++\", | |
122 \"-+++++++++++++++\", | |
123 \"++++++++++++++++\" | |
124 }; | |
125 " | |
126 "XPM format image used for each square") | |
127 | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
128 (defvar gamegrid-xbm "\ |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
129 /* gamegrid XBM */ |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
130 #define gamegrid_width 16 |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
131 #define gamegrid_height 16 |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
132 static unsigned char gamegrid_bits[] = { |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
133 0xff, 0xff, 0xff, 0x7f, 0xff, 0x3f, 0xaf, 0x0a, 0x57, 0x15, 0xaf, 0x0a, |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
134 0x57, 0x15, 0xaf, 0x0a, 0x57, 0x15, 0xaf, 0x0a, 0x57, 0x15, 0xaf, 0x0a, |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
135 0x57, 0x15, 0x07, 0x00, 0x03, 0x00, 0x01, 0x00 };" |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
136 "XBM format image used for each square.") |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
137 |
22490 | 138 ;; ;;;;;;;;;;;;;;;; miscellaneous functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
139 | |
140 (defsubst gamegrid-characterp (arg) | |
141 (if (fboundp 'characterp) | |
142 (characterp arg) | |
143 (integerp arg))) | |
144 | |
145 (defsubst gamegrid-event-x (event) | |
146 (if (fboundp 'event-x) | |
147 (event-x event) | |
148 (car (posn-col-row (event-end event))))) | |
149 | |
150 (defsubst gamegrid-event-y (event) | |
151 (if (fboundp 'event-y) | |
152 (event-y event) | |
153 (cdr (posn-col-row (event-end event))))) | |
154 | |
155 ;; ;;;;;;;;;;;;; display functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
156 | |
157 (defun gamegrid-color (color shade) | |
158 (let* ((v (floor (* shade 255))) | |
159 (r (* v (aref color 0))) | |
160 (g (* v (aref color 1))) | |
161 (b (* v (aref color 2)))) | |
162 (format "#%02x%02x%02x" r g b))) | |
163 | |
164 (defun gamegrid-set-font (face) | |
165 (if gamegrid-font | |
166 (condition-case nil | |
167 (set-face-font face gamegrid-font) | |
43651
3075554223d1
(gamegrid-set-font, gamegrid-setup-face)
Richard M. Stallman <rms@gnu.org>
parents:
43117
diff
changeset
|
168 (error nil)))) |
22490 | 169 |
170 (defun gamegrid-setup-face (face color) | |
171 (set-face-foreground face color) | |
172 (set-face-background face color) | |
173 (gamegrid-set-font face) | |
174 (condition-case nil | |
175 (set-face-background-pixmap face [nothing]);; XEmacs | |
43651
3075554223d1
(gamegrid-set-font, gamegrid-setup-face)
Richard M. Stallman <rms@gnu.org>
parents:
43117
diff
changeset
|
176 (error nil)) |
22490 | 177 (condition-case nil |
178 (set-face-background-pixmap face nil);; Emacs | |
43651
3075554223d1
(gamegrid-set-font, gamegrid-setup-face)
Richard M. Stallman <rms@gnu.org>
parents:
43117
diff
changeset
|
179 (error nil))) |
22490 | 180 |
181 (defun gamegrid-make-mono-tty-face () | |
182 (let ((face (make-face 'gamegrid-mono-tty-face))) | |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
183 (set-face-inverse-video-p face t) |
22490 | 184 face)) |
185 | |
186 (defun gamegrid-make-color-tty-face (color) | |
47380
05670dbe9339
(gamegrid-make-color-tty-face): Handle string as COLOR arg.
Richard M. Stallman <rms@gnu.org>
parents:
45085
diff
changeset
|
187 (let* ((color-str (if (symbolp color) (symbol-value color) color)) |
43117
7541bec297e3
(gamegrid-display-type): Treat any
Eli Zaretskii <eliz@gnu.org>
parents:
41560
diff
changeset
|
188 (name (intern (format "gamegrid-color-tty-face-%s" color-str))) |
22490 | 189 (face (make-face name))) |
43117
7541bec297e3
(gamegrid-display-type): Treat any
Eli Zaretskii <eliz@gnu.org>
parents:
41560
diff
changeset
|
190 (gamegrid-setup-face face color-str) |
22490 | 191 face)) |
192 | |
193 (defun gamegrid-make-grid-x-face () | |
194 (let ((face (make-face 'gamegrid-x-border-face))) | |
195 (gamegrid-set-font face) | |
196 face)) | |
197 | |
198 (defun gamegrid-make-mono-x-face () | |
199 (let ((face (make-face 'gamegrid-mono-x-face)) | |
200 (color (face-foreground 'default))) | |
201 (if (null color) | |
202 (setq color | |
203 (cdr-safe (assq 'foreground-color (frame-parameters))))) | |
204 (gamegrid-setup-face face color) | |
205 face)) | |
206 | |
207 (defun gamegrid-make-color-x-face (color) | |
208 (let* ((hex (gamegrid-color color 1.0)) | |
209 (name (intern (format "gamegrid-color-x-face-%s" hex))) | |
210 (face (make-face name))) | |
43117
7541bec297e3
(gamegrid-display-type): Treat any
Eli Zaretskii <eliz@gnu.org>
parents:
41560
diff
changeset
|
211 (gamegrid-setup-face face hex) |
22490 | 212 face)) |
213 | |
214 (defun gamegrid-make-face (data-spec-list color-spec-list) | |
215 (let ((data (gamegrid-match-spec-list data-spec-list)) | |
216 (color (gamegrid-match-spec-list color-spec-list))) | |
217 (case data | |
218 ('color-x | |
219 (gamegrid-make-color-x-face color)) | |
220 ('grid-x | |
221 (unless gamegrid-grid-x-face | |
222 (setq gamegrid-grid-x-face (gamegrid-make-grid-x-face))) | |
223 gamegrid-grid-x-face) | |
224 ('mono-x | |
225 (unless gamegrid-mono-x-face | |
226 (setq gamegrid-mono-x-face (gamegrid-make-mono-x-face))) | |
227 gamegrid-mono-x-face) | |
228 ('color-tty | |
229 (gamegrid-make-color-tty-face color)) | |
230 ('mono-tty | |
231 (unless gamegrid-mono-tty-face | |
232 (setq gamegrid-mono-tty-face (gamegrid-make-mono-tty-face))) | |
233 gamegrid-mono-tty-face)))) | |
234 | |
235 (defun gamegrid-colorize-glyph (color) | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
236 (find-image `((:type xpm :data ,gamegrid-xpm |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
237 :ascent center |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47587
diff
changeset
|
238 :color-symbols |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
239 (("col1" . ,(gamegrid-color color 0.6)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
240 ("col2" . ,(gamegrid-color color 0.8)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
241 ("col3" . ,(gamegrid-color color 1.0)))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
242 (:type xbm :data ,gamegrid-xbm |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
243 :ascent center |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
244 :foreground ,(gamegrid-color color 1.0) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
245 :background ,(gamegrid-color color 0.5))))) |
22490 | 246 |
247 (defun gamegrid-match-spec (spec) | |
248 (let ((locale (car spec)) | |
249 (value (cadr spec))) | |
250 (and (or (eq locale t) | |
251 (and (listp locale) | |
252 (memq gamegrid-display-mode locale)) | |
253 (and (symbolp locale) | |
254 (eq gamegrid-display-mode locale))) | |
255 value))) | |
256 | |
257 (defun gamegrid-match-spec-list (spec-list) | |
258 (and spec-list | |
259 (or (gamegrid-match-spec (car spec-list)) | |
260 (gamegrid-match-spec-list (cdr spec-list))))) | |
261 | |
262 (defun gamegrid-make-glyph (data-spec-list color-spec-list) | |
263 (let ((data (gamegrid-match-spec-list data-spec-list)) | |
264 (color (gamegrid-match-spec-list color-spec-list))) | |
265 (cond ((gamegrid-characterp data) | |
266 (vector data)) | |
267 ((eq data 'colorize) | |
268 (gamegrid-colorize-glyph color)) | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
269 ((listp data) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
270 (find-image data)) ;untested! |
22490 | 271 ((vectorp data) |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
272 (gamegrid-make-image-from-vector data))))) |
22490 | 273 |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
274 (defun gamegrid-make-image-from-vector (vect) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
275 "Convert an XEmacs style \"glyph\" to an image-spec." |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
276 (let ((l (list 'image :type))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
277 (dotimes (n (length vect)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
278 (setf l (nconc l (list (aref vect n))))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
279 (nconc l (list :ascent 'center)))) |
22490 | 280 |
281 (defun gamegrid-display-type () | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
282 (cond ((and gamegrid-use-glyphs |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
283 (display-images-p)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
284 'glyph) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
285 ((and gamegrid-use-color |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
286 (display-graphic-p) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
287 (display-color-p)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
288 'color-x) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
289 ((display-graphic-p) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
290 'mono-x) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
291 ((and gamegrid-use-color |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
292 (display-color-p)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
293 'color-tty) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
294 ((display-multi-font-p) ;??? |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
295 'mono-tty) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
296 (t |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
297 'emacs-tty))) |
22490 | 298 |
299 (defun gamegrid-set-display-table () | |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
300 (if (featurep 'xemacs) |
22490 | 301 (add-spec-to-specifier current-display-table |
302 gamegrid-display-table | |
303 (current-buffer) | |
304 nil | |
305 'remove-locale) | |
306 (setq buffer-display-table gamegrid-display-table))) | |
307 | |
308 (defun gamegrid-setup-default-font () | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
309 (setq gamegrid-face |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
310 (copy-face 'default |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
311 (intern (concat "gamegrid-face-" (buffer-name))))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
312 (when (eq gamegrid-display-mode 'glyph) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
313 (let ((max-height nil)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
314 (loop for c from 0 to 255 do |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
315 (let ((glyph (aref gamegrid-display-table c))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
316 (when (and (listp glyph) (eq (car glyph) 'image)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
317 (let ((height (cdr (image-size glyph)))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
318 (if (or (null max-height) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
319 (< max-height height)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
320 (setq max-height height)))))) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
321 (when (and max-height (< max-height 1)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
322 (set-face-attribute gamegrid-face nil :height max-height))))) |
22490 | 323 |
324 (defun gamegrid-initialize-display () | |
325 (setq gamegrid-display-mode (gamegrid-display-type)) | |
326 (setq gamegrid-display-table (make-display-table)) | |
327 (setq gamegrid-face-table (make-vector 256 nil)) | |
328 (loop for c from 0 to 255 do | |
329 (let* ((spec (aref gamegrid-display-options c)) | |
330 (glyph (gamegrid-make-glyph (car spec) (caddr spec))) | |
331 (face (gamegrid-make-face (cadr spec) (caddr spec)))) | |
332 (aset gamegrid-face-table c face) | |
333 (aset gamegrid-display-table c glyph))) | |
334 (gamegrid-setup-default-font) | |
335 (gamegrid-set-display-table) | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
336 (setq cursor-type nil)) |
22490 | 337 |
338 | |
339 (defun gamegrid-set-face (c) | |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
340 (if (eq gamegrid-display-mode 'glyph) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
341 (add-text-properties (1- (point)) (point) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
342 (list 'display (list (aref gamegrid-display-table c)))) |
22490 | 343 (put-text-property (1- (point)) |
344 (point) | |
345 'face | |
346 (aref gamegrid-face-table c)))) | |
347 | |
348 (defun gamegrid-cell-offset (x y) | |
349 (+ gamegrid-buffer-start | |
350 (* (1+ gamegrid-buffer-width) y) | |
351 x)) | |
352 | |
353 ;; ;;;;;;;;;;;;;;;; grid functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
354 | |
355 (defun gamegrid-get-cell (x y) | |
356 (char-after (gamegrid-cell-offset x y))) | |
357 | |
358 (defun gamegrid-set-cell (x y c) | |
359 (save-excursion | |
360 (let ((buffer-read-only nil)) | |
361 (goto-char (gamegrid-cell-offset x y)) | |
362 (delete-char 1) | |
363 (insert-char c 1) | |
364 (gamegrid-set-face c)))) | |
365 | |
366 (defun gamegrid-init-buffer (width height blank) | |
367 (setq gamegrid-buffer-width width | |
368 gamegrid-buffer-height height) | |
369 (let ((line (concat | |
370 (make-string width blank) | |
371 "\n")) | |
372 (buffer-read-only nil)) | |
373 (erase-buffer) | |
374 (setq gamegrid-buffer-start (point)) | |
375 (dotimes (i height) | |
41560
7428670426b2
(gamegrid-init-buffer): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
38425
diff
changeset
|
376 (insert line)) |
47587
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
377 ;; Adjust the height of the default face to the height of the |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
378 ;; images. Unlike XEmacs, Emacs doesn't allow to make the default |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
379 ;; face buffer-local; so we do this with an overlay. |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
380 (when (eq gamegrid-display-mode 'glyph) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
381 (overlay-put (make-overlay (point-min) (point-max)) |
7e861822d947
(gamegrid-face): new variable to emulate a buffer-local default face.
Richard M. Stallman <rms@gnu.org>
parents:
47380
diff
changeset
|
382 'face gamegrid-face)) |
22490 | 383 (goto-char (point-min)))) |
384 | |
385 (defun gamegrid-init (options) | |
386 (setq buffer-read-only t | |
387 truncate-lines t | |
388 gamegrid-display-options options) | |
389 (buffer-disable-undo (current-buffer)) | |
390 (gamegrid-initialize-display)) | |
391 | |
392 ;; ;;;;;;;;;;;;;;;; timer functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
393 | |
394 (defun gamegrid-start-timer (period func) | |
395 (setq gamegrid-timer | |
396 (if (featurep 'itimer) | |
397 (start-itimer "Gamegrid" | |
398 func | |
399 period | |
400 period | |
401 nil | |
402 t | |
403 (current-buffer)) | |
404 (run-with-timer period | |
405 period | |
406 func | |
407 (current-buffer))))) | |
408 | |
409 (defun gamegrid-set-timer (delay) | |
410 (if gamegrid-timer | |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
411 (if (fboundp 'set-itimer-restart) |
22490 | 412 (set-itimer-restart gamegrid-timer delay) |
413 (timer-set-time gamegrid-timer | |
414 (list (aref gamegrid-timer 1) | |
415 (aref gamegrid-timer 2) | |
416 (aref gamegrid-timer 3)) | |
417 delay)))) | |
418 | |
419 (defun gamegrid-kill-timer () | |
420 (if gamegrid-timer | |
421 (if (featurep 'itimer) | |
422 (delete-itimer gamegrid-timer) | |
75483
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
423 (cancel-timer gamegrid-timer))) |
22490 | 424 (setq gamegrid-timer nil)) |
425 | |
426 ;; ;;;;;;;;;;;;;;; high score functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
427 | |
428 (defun gamegrid-add-score (file score) | |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
429 "Add the current score to the high score file. |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
430 |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
431 On POSIX systems there may be a shared game directory for all users in |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
432 which the scorefiles are kept. On such systems Emacs doesn't create |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
433 the score file FILE in this directory, if it doesn't already exist. In |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
434 this case Emacs searches for FILE in the directory specified by |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
435 `gamegrid-user-score-file-directory' and creates it there, if |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
436 necessary. |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
437 |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
438 To add the score file for a game to the system wide shared game |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
439 directory, create the file with the shell command \"touch\" in this |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
440 directory and make sure that it is owned by the correct user and |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
441 group. You probably need special user privileges to do this. |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
442 |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
443 On non-POSIX systems Emacs searches for FILE in the directory |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
444 specified by the variable `temporary-file-directory'. If necessary, |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
445 FILE is created there." |
44565
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
446 (case system-type |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
447 ((ms-dos windows-nt) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
448 (gamegrid-add-score-insecure file score)) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
449 (t |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
450 (gamegrid-add-score-with-update-game-score file score)))) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
451 |
50734
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
452 |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
453 ;; On POSIX systems there are four cases to distinguish: |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
454 |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
455 ;; 1. FILE is an absolute filename. Then it should be a file in |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
456 ;; temporary file directory. This is the way, |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
457 ;; `gamegrid-add-score' was supposed to be used in the past and |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
458 ;; is covered here for backward-compatibility. |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
459 ;; |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
460 ;; 2. The helper program "update-game-score" is setuid and the |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
461 ;; file FILE does already exist in a system wide shared game |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
462 ;; directory. This should be the normal case on POSIX systems, |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
463 ;; if the game was installed system wide. Use |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
464 ;; "update-game-score" to add the score to the file in the |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
465 ;; shared game directory. |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
466 ;; |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
467 ;; 3. "update-game-score" is setuid, but the file FILE does *not* |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
468 ;; exist in the system wide shared game directory. Use |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
469 ;; `gamegrid-add-score-insecure' to create--if necessary--and |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
470 ;; update FILE. This is for the case that a user has installed |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
471 ;; a game on her own. |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
472 ;; |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
473 ;; 4. "update-game-score" is not setuid. Use it to create/update |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
474 ;; FILE in the user's home directory. There is presumably no |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
475 ;; shared game directory. |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
476 |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
477 (defvar gamegrid-shared-game-dir) |
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
478 |
44565
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
479 (defun gamegrid-add-score-with-update-game-score (file score) |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
480 (let* ((result nil) ;; What is this good for? -- os |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
481 (gamegrid-shared-game-dir |
44989
78b836bc2213
(gamegrid-add-score-with-update-game-score): Test whether or not
Colin Walters <walters@gnu.org>
parents:
44792
diff
changeset
|
482 (not (zerop (logand (file-modes |
78b836bc2213
(gamegrid-add-score-with-update-game-score): Test whether or not
Colin Walters <walters@gnu.org>
parents:
44792
diff
changeset
|
483 (expand-file-name "update-game-score" |
78b836bc2213
(gamegrid-add-score-with-update-game-score): Test whether or not
Colin Walters <walters@gnu.org>
parents:
44792
diff
changeset
|
484 exec-directory)) |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
485 #o4000))))) |
50734
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
486 (cond ((file-name-absolute-p file) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
487 (gamegrid-add-score-insecure file score)) |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
488 ((and gamegrid-shared-game-dir |
50734
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
489 (file-exists-p (expand-file-name file shared-game-score-directory))) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
490 ;; Use the setuid "update-game-score" program to update a |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
491 ;; system-wide score file. |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
492 (gamegrid-add-score-with-update-game-score-1 file |
50734
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
493 (expand-file-name file shared-game-score-directory) score)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
494 ;; Else: Add the score to a score file in the user's home |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
495 ;; directory. |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
496 (gamegrid-shared-game-dir |
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
497 ;; If `gamegrid-shared-game-dir' is non-nil, then |
50734
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
498 ;; "update-gamescore" program is setuid, so don't use it. |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
499 (unless (file-exists-p |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
500 (directory-file-name gamegrid-user-score-file-directory)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
501 (make-directory gamegrid-user-score-file-directory t)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
502 (gamegrid-add-score-insecure file score |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
503 gamegrid-user-score-file-directory)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
504 (t (let ((f (expand-file-name |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
505 gamegrid-user-score-file-directory))) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
506 (when (file-writable-p f) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
507 (unless (eq (car-safe (file-attributes f)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
508 t) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
509 (make-directory f)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
510 (setq f (expand-file-name file f)) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
511 (unless (file-exists-p f) |
17be3e4887ea
Added a comment explaining the various ways to save a game score on POSIX
Juanma Barranquero <lekktu@gmail.com>
parents:
49986
diff
changeset
|
512 (write-region "" nil f nil 'silent nil 'excl))) |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
513 (gamegrid-add-score-with-update-game-score-1 file f score)))))) |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
514 |
64390
d5c99d67c76d
(gamegrid-shared-game-dir): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
515 (defun gamegrid-add-score-with-update-game-score-1 (file target score) |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
516 (let ((default-directory "/") |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
517 (errbuf (generate-new-buffer " *update-game-score loss*"))) |
75483
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
518 ;; This can be called from a timer, so enable local quits. |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
519 (with-local-quit |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
520 (apply |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
521 'call-process |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
522 (append |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
523 (list |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
524 (expand-file-name "update-game-score" exec-directory) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
525 nil errbuf nil |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
526 "-m" (int-to-string gamegrid-score-file-length) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
527 "-d" (if gamegrid-shared-game-dir |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
528 (expand-file-name shared-game-score-directory) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
529 (file-name-directory target)) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
530 file |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
531 (int-to-string score) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
532 (concat |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
533 (user-full-name) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
534 " <" |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
535 (cond ((fboundp 'user-mail-address) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
536 (user-mail-address)) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
537 ((boundp 'user-mail-address) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
538 user-mail-address) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
539 (t "")) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
540 "> " |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
541 (current-time-string)))))) |
44494 | 542 (if (buffer-modified-p errbuf) |
543 (progn | |
544 (display-buffer errbuf) | |
545 (error "Failed to update game score file")) | |
546 (kill-buffer errbuf)) | |
75483
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
547 (let ((buf (find-buffer-visiting target))) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
548 (if buf |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
549 (progn |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
550 (with-current-buffer buf |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
551 (revert-buffer nil t nil)) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
552 (display-buffer buf)) |
4b3089985bc1
(gamegrid-kill-timer): Cancel timer directly.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
553 (find-file-read-only-other-window target))))) |
44792
4648f6129f7f
(gamegrid-add-score-with-update-game-score): Handle the case where
Colin Walters <walters@gnu.org>
parents:
44565
diff
changeset
|
554 |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
555 (defun gamegrid-add-score-insecure (file score &optional directory) |
44565
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
556 (save-excursion |
49986
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
557 (setq file (expand-file-name file (or directory |
755c2ca7f6cf
(gamegrid-add-score): Add info to docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
558 temporary-file-directory))) |
44565
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
559 (find-file-other-window file) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
560 (setq buffer-read-only nil) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
561 (goto-char (point-max)) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
562 (insert (format "%05d\t%s\t%s <%s>\n" |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
563 score |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
564 (current-time-string) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
565 (user-full-name) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
566 (cond ((fboundp 'user-mail-address) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
567 (user-mail-address)) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
568 ((boundp 'user-mail-address) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
569 user-mail-address) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
570 (t "")))) |
54716
1ffff21d0989
(gamegrid-add-score-insecure): Use sort-fields.
Jesper Harder <harder@ifa.au.dk>
parents:
52401
diff
changeset
|
571 (sort-fields 1 (point-min) (point-max)) |
44565
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
572 (reverse-region (point-min) (point-max)) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
573 (goto-line (1+ gamegrid-score-file-length)) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
574 (delete-region (point) (point-max)) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
575 (setq buffer-read-only t) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
576 (save-buffer))) |
9bdd94e7a205
(gamegrid-add-score-with-update-game-score): Renamed from `gamegrid-add-score'.
Colin Walters <walters@gnu.org>
parents:
44494
diff
changeset
|
577 |
22490 | 578 |
579 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
580 | |
581 (provide 'gamegrid) | |
38425
c6e12c6b1498
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
22490
diff
changeset
|
582 |
52401 | 583 ;;; arch-tag: a96c2ff4-1c12-427e-bd3d-faeaf174cd46 |
38425
c6e12c6b1498
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
22490
diff
changeset
|
584 ;;; gamegrid.el ends here |