* lisp/term/xterm.el (xterm-function-map): Support format used with
[bpt/emacs.git] / lisp / play / cookie1.el
CommitLineData
8eb74eec 1;;; cookie1.el --- retrieve random phrases from fortune cookie files
d5edbd11 2
ab422c4d 3;; Copyright (C) 1993, 2001-2013 Free Software Foundation, Inc.
d5edbd11
ER
4
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6;; Maintainer: FSF
0419a4af 7;; Keywords: games, extensions
d5edbd11
ER
8;; Created: Mon Mar 22 17:06:26 1993
9
10;; This file is part of GNU Emacs.
11
b1fc2b50 12;; GNU Emacs is free software: you can redistribute it and/or modify
d5edbd11 13;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
d5edbd11
ER
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
b1fc2b50 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
d5edbd11
ER
24
25;;; Commentary:
26
27;; Support for random cookie fetches from phrase files, used for such
28;; critical applications as emulating Zippy the Pinhead and confounding
29;; the NSA Trunk Trawler.
30;;
31;; The two entry points are `cookie' and `cookie-insert'. The helper
c5eeaf52 32;; function `shuffle-vector' may be of interest to programmers.
d5edbd11 33;;
45b44a5a
ER
34;; The code expects phrase files to be in one of two formats:
35;;
36;; * ITS-style LINS format (strings terminated by ASCII 0 characters,
37;; leading whitespace ignored).
38;;
39;; * UNIX fortune file format (quotes terminated by %% on a line by itself).
40;;
41;; Everything up to the first delimiter is treated as a comment. Other
42;; formats could be supported by adding alternates to the regexp
43;; `cookie-delimiter'.
d5edbd11 44;;
96ce5c4f
GM
45;; strfile(1) is the program used to compile the files for fortune(6).
46;; In order to achieve total compatibility with strfile(1), cookie files
47;; should start with two consecutive delimiters (and no comment).
48;;
22bcf204 49;; This code derives from Steve Strassmann's 1987 spook.el package, but
45b44a5a
ER
50;; has been generalized so that it supports multiple simultaneous
51;; cookie databases and fortune files. It is intended to be called
52;; from other packages such as yow.el and spook.el.
d5edbd11
ER
53
54;;; Code:
55
bfaef6dc 56(defconst cookie-delimiter "\n%%\n\\|\n%\n\\|\0"
d5edbd11
ER
57 "Delimiter used to separate cookie file entries.")
58
4054367c
RM
59(defvar cookie-cache (make-vector 511 0)
60 "Cache of cookie files that have already been snarfed.")
61
f58c6f70 62;;;###autoload
d5edbd11 63(defun cookie (phrase-file startmsg endmsg)
132c0cc0
PJ
64 "Return a random phrase from PHRASE-FILE.
65When the phrase file is read in, display STARTMSG at the beginning
66of load, ENDMSG at the end."
d5edbd11
ER
67 (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg)))
68 (shuffle-vector cookie-vector)
a2064b09 69 (aref cookie-vector 0)))
d5edbd11 70
f58c6f70 71;;;###autoload
d5edbd11 72(defun cookie-insert (phrase-file &optional count startmsg endmsg)
132c0cc0
PJ
73 "Insert random phrases from PHRASE-FILE; COUNT of them.
74When the phrase file is read in, display STARTMSG at the beginning
75of load, ENDMSG at the end."
d5edbd11
ER
76 (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg)))
77 (shuffle-vector cookie-vector)
78 (let ((start (point)))
79 (insert ?\n)
80 (cookie1 (min (- (length cookie-vector) 1) (or count 1)) cookie-vector)
81 (insert ?\n)
82 (fill-region-as-paragraph start (point) nil))))
83
84(defun cookie1 (arg cookie-vec)
85 "Inserts a cookie phrase ARG times."
86 (cond ((zerop arg) t)
87 (t (insert (aref cookie-vec arg))
88 (insert " ")
89 (cookie1 (1- arg) cookie-vec))))
90
f58c6f70 91;;;###autoload
d5edbd11 92(defun cookie-snarf (phrase-file startmsg endmsg)
b81d991d
RM
93 "Reads in the PHRASE-FILE, returns it as a vector of strings.
94Emit STARTMSG and ENDMSG before and after. Caches the result; second
95and subsequent calls on the same file won't go to disk."
e3ad7552
GM
96 (or (file-readable-p phrase-file)
97 (error "Cannot read file `%s'" phrase-file))
4054367c
RM
98 (let ((sym (intern-soft phrase-file cookie-cache)))
99 (and sym (not (equal (symbol-function sym)
100 (nth 5 (file-attributes phrase-file))))
101 (yes-or-no-p (concat phrase-file
102 " has changed. Read new contents? "))
103 (setq sym nil))
104 (if sym
105 (symbol-value sym)
106 (setq sym (intern phrase-file cookie-cache))
4120f5f5 107 (message "%s" startmsg)
4054367c
RM
108 (save-excursion
109 (let ((buf (generate-new-buffer "*cookie*"))
110 (result nil))
111 (set-buffer buf)
112 (fset sym (nth 5 (file-attributes phrase-file)))
113 (insert-file-contents (expand-file-name phrase-file))
114 (re-search-forward cookie-delimiter)
115 (while (progn (skip-chars-forward " \t\n\r\f") (not (eobp)))
116 (let ((beg (point)))
117 (re-search-forward cookie-delimiter)
bfaef6dc 118 (setq result (cons (buffer-substring beg (match-beginning 0))
4054367c
RM
119 result))))
120 (kill-buffer buf)
4120f5f5 121 (message "%s" endmsg)
4054367c 122 (set sym (apply 'vector result)))))))
d5edbd11 123
b81d991d
RM
124(defun read-cookie (prompt phrase-file startmsg endmsg &optional require-match)
125 "Prompt with PROMPT and read with completion among cookies in PHRASE-FILE.
126STARTMSG and ENDMSG are passed along to `cookie-snarf'.
127Optional fifth arg REQUIRE-MATCH non-nil forces a matching cookie."
128 ;; Make sure the cookies are in the cache.
129 (or (intern-soft phrase-file cookie-cache)
130 (cookie-snarf phrase-file startmsg endmsg))
131 (completing-read prompt
132 (let ((sym (intern phrase-file cookie-cache)))
133 ;; We cache the alist form of the cookie in a property.
134 (or (get sym 'completion-alist)
135 (let* ((alist nil)
136 (vec (cookie-snarf phrase-file
137 startmsg endmsg))
138 (i (length vec)))
\81ukasz Stelmach, 2010-08-26 17:33:52 +0200">d5720b4c 139 (while (>= (setq i (1- i)) 0)
b81d991d
RM
140 (setq alist (cons (list (aref vec i)) alist)))
141 (put sym 'completion-alist alist))))
142 nil require-match nil nil))
143
d5edbd11
ER
144; Thanks to Ian G Batten <BattenIG@CS.BHAM.AC.UK>
145; [of the University of Birmingham Computer Science Department]
146; for the iterative version of this shuffle.
147;
f58c6f70 148;;;###autoload
d5edbd11 149(defun shuffle-vector (vector)
132c0cc0 150 "Randomly permute the elements of VECTOR (all permutations equally likely)."
d5edbd11
ER
151 (let ((i 0)
152 j
153 temp
154 (len (length vector)))
155 (while (< i len)
c5eeaf52 156 (setq j (+ i (random (- len i))))
d5edbd11
ER
157 (setq temp (aref vector i))
158 (aset vector i (aref vector j))
159 (aset vector j temp)
160 (setq i (1+ i))))
161 vector)
162
3aa7cce7 163(provide 'cookie1)
d5edbd11 164
20a82895 165;;; cookie1.el ends here