cookie1.el small cleanup
[bpt/emacs.git] / lisp / obsolete / yow.el
CommitLineData
8b2120f4 1;;; yow.el --- quote random zippyisms
6cf0d154 2
ab422c4d 3;; Copyright (C) 1993-1995, 2000-2013 Free Software Foundation, Inc.
58142744 4
6cf0d154 5;; Maintainer: FSF
f6dd89c6 6;; Author: Richard Mlynarik
6251ee24 7;; Keywords: games
4e16ddf4 8;; Obsolete-since: 24.4
76d7458e 9
a18d567f
RS
10;; This file is part of GNU Emacs.
11
b1fc2b50 12;; GNU Emacs is free software: you can redistribute it and/or modify
a18d567f 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.
a18d567f
RS
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/>.
a18d567f 24
6cf0d154
ER
25;;; Commentary:
26
eb8c3be9 27;; Important pinheadery for GNU Emacs.
4e16ddf4
GM
28;; This file is obsolete. For similar functionality, see
29;; fortune.el and cookie1.el.
6cf0d154
ER
30
31;;; Code:
32
269d869f 33(require 'cookie1)
ed73b256 34
323f7c49
SE
35(defgroup yow nil
36 "Quote random zippyisms."
37 :prefix "yow-"
38 :group 'games)
39
f53a85a9 40(defcustom yow-file (expand-file-name "yow.lines" data-directory)
323f7c49
SE
41 "File containing pertinent pinhead phrases."
42 :type 'file
43 :group 'yow)
a18d567f 44
6f579a69
NF
45(defconst yow-load-message "Am I CONSING yet?...")
46(defconst yow-after-load-message "I have SEEN the CONSING!!")
47
7229064d 48;;;###autoload
b85b15f3 49(defun yow (&optional insert display)
b6173cae 50 "Return or display a random Zippy quotation. With prefix arg, insert it."
b85b15f3 51 (interactive "P\np")
6f579a69 52 (let ((yow (cookie yow-file yow-load-message yow-after-load-message)))
b6173cae
RM
53 (cond (insert
54 (insert yow))
b85b15f3 55 ((not display)
a18d567f 56 yow)
a18d567f 57 (t
1be14568 58 (message "%s" yow)))))
a18d567f 59
2694dfb9
RM
60(defsubst read-zippyism (prompt &optional require-match)
61 "Read a Zippyism from the minibuffer with completion, prompting with PROMPT.
62If optional second arg is non-nil, require input to match a completion."
e7a526e3 63 (cookie-read prompt yow-file yow-load-message yow-after-load-message
2694dfb9 64 require-match))
b6173cae
RM
65
66;;;###autoload
67(defun insert-zippyism (&optional zippyism)
68 "Prompt with completion for a known Zippy quotation, and insert it at point."
69 (interactive (list (read-zippyism "Pinhead wisdom: " t)))
70 (insert zippyism))
6f579a69
NF
71
72;;;###autoload
73(defun apropos-zippy (regexp)
74 "Return a list of all Zippy quotes matching REGEXP.
75If called interactively, display a list of matches."
76 (interactive "sApropos Zippy (regexp): ")
77 ;; Make sure yows are loaded
78 (cookie yow-file yow-load-message yow-after-load-message)
79 (let* ((case-fold-search t)
80 (cookie-table-symbol (intern yow-file cookie-cache))
81 (string-table (symbol-value cookie-table-symbol))
82 (matches nil)
83 (len (length string-table))
84 (i 0))
85 (save-match-data
86 (while (< i len)
87 (and (string-match regexp (aref string-table i))
88 (setq matches (cons (aref string-table i) matches)))
89 (setq i (1+ i))))
90 (and matches
91 (setq matches (sort matches 'string-lessp)))
32226619 92 (and (called-interactively-p 'interactive)
6f579a69
NF
93 (cond ((null matches)
94 (message "No matches found."))
95 (t
96 (let ((l matches))
97 (with-output-to-temp-buffer "*Zippy Apropos*"
98 (while l
99 (princ (car l))
100 (setq l (cdr l))
7a5ea63f 101 (and l (princ "\n\n")))
d5d105e8 102 (help-print-return-message))))))
6f579a69
NF
103 matches))
104
a18d567f 105\f
6f579a69
NF
106;; Yowza!! Feed zippy quotes to the doctor. Watch results.
107;; fun, fun, fun. Entertainment for hours...
108;;
109;; written by Kayvan Aghaiepour
a18d567f 110
004a00f4
DN
111(declare-function doctor-ret-or-read "doctor" (arg))
112
7229064d 113;;;###autoload
a18d567f
RS
114(defun psychoanalyze-pinhead ()
115 "Zippy goes to the analyst."
116 (interactive)
117 (doctor) ; start the psychotherapy
a18d567f
RS
118 (message "")
119 (switch-to-buffer "*doctor*")
120 (sit-for 0)
121 (while (not (input-pending-p))
967732f6 122 (insert (yow))
a18d567f
RS
123 (sit-for 0)
124 (doctor-ret-or-read 1)
125 (doctor-ret-or-read 1)))
126
49116ac0
JB
127(provide 'yow)
128
76d7458e 129;;; yow.el ends here