Mercurial > emacs
annotate lisp/play/yow.el @ 846:20674ae6bf52
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Wed, 22 Jul 1992 04:22:42 +0000 |
parents | 2cdce064065f |
children | ee096523431c |
rev | line source |
---|---|
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
1 ;;; yow.el --- generate random zippyisms |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
2 |
841 | 3 ;; Copyright (C) 1985, 1987 Free Software Foundation, Inc. |
4 | |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
5 ;; Maintainer: FSF |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: games |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
7 |
46 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
772
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
46 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
24 ;;; Commentary: |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
25 |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
26 ;; Important pinheaddery for GNU Emacs. |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
27 ;; Expects file emacs/etc/yow.lines to be in ITS-style LINS format |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
28 ;; (ie strings terminated by ascii 0 characters. Leading whitespace ignored) |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
29 ;; Everything up to the first \000 is a comment. |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
30 |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
31 ;;; Code: |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
32 |
46 | 33 ; Randomize the seed in the random number generator. |
34 (random t) | |
35 | |
256 | 36 ;;;###autoload |
46 | 37 (defun yow (&optional n interactive) |
38 "Return or display a Zippy quotation." | |
39 (interactive "P\np") | |
40 (if (null yow-vector) | |
41 (setq yow-vector (snarf-yows))) | |
42 (cond (n (setq n (prefix-numeric-value n))) | |
43 ((>= (setq n (random (length yow-vector))) 0)) | |
44 (t (setq n (- n)))) | |
45 (let ((yow (aref yow-vector n))) | |
46 (cond ((not interactive) | |
47 yow) | |
48 ((not (string-match "\n" yow)) | |
49 (delete-windows-on (get-buffer-create "*Help*")) | |
50 (message "%s" yow)) | |
51 (t | |
52 (message "Yow!") | |
53 (with-output-to-temp-buffer "*Help*" | |
54 (princ yow)))))) | |
55 | |
56 (defvar yow-vector nil "Pertinent pinhead statements") | |
57 (defun snarf-yows (&optional file) | |
58 (save-excursion | |
59 (let ((buf (generate-new-buffer " yow")) | |
60 (result '()) | |
61 (cursor-in-echo-area t)) | |
62 (message "Am I CONSING yet?...") | |
63 (set-buffer buf) | |
64 (insert-file-contents (or file | |
444 | 65 (expand-file-name "yow.lines" data-directory))) |
46 | 66 (search-forward "\0") |
67 (while (progn (skip-chars-forward " \t\n\r\f") (not (eobp))) | |
68 (let ((beg (point))) | |
69 (search-forward "\0") | |
70 (setq result (cons (buffer-substring beg (1- (point))) | |
71 result)))) | |
72 (kill-buffer buf) | |
73 (message "I have SEEN the CONSING!!" (length result)) | |
74 (apply 'vector (nreverse result))))) | |
75 | |
76 ; Yowza!! Feed zippy quotes to the doctor. Watch results. | |
77 ; fun, fun, fun. Entertainment for hours... | |
78 ; | |
79 ; written by Kayvan Aghaiepour | |
80 | |
256 | 81 ;;;###autoload |
46 | 82 (defun psychoanalyze-pinhead () |
83 "Zippy goes to the analyst." | |
84 (interactive) | |
85 (doctor) ; start the psychotherapy | |
86 (if (null yow-vector) | |
87 (setq yow-vector (snarf-yows))) | |
88 (message "") | |
89 (switch-to-buffer "*doctor*") | |
90 (sit-for 0) | |
91 (while (not (input-pending-p)) | |
92 (insert-string (yow)) | |
93 (sit-for 0) | |
94 (doctor-ret-or-read 1) | |
95 (doctor-ret-or-read 1))) | |
96 | |
584 | 97 (provide 'yow) |
98 | |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
99 ;;; yow.el ends here |