1 ;;; earcon.el --- Sound effects for messages
3 ;; Copyright (C) 1996, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Steven L. Baur <steve@miranova.com>
8 ;; This file is part of GNU Emacs.
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
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; This file provides access to sound effects in Gnus.
28 (eval-when-compile (require 'cl
))
34 "Turn ** sounds ** into noise."
37 (defcustom earcon-prefix
"**"
38 "*String denoting the start of an earcon."
42 (defcustom earcon-suffix
"**"
43 "String denoting the end of an earcon."
47 (defcustom earcon-regexp-alist
48 '(("boring" 1 "Boring.au")
49 ("evil[ \t]+laugh" 1 "Evil_Laugh.au")
50 ("gag\\|puke" 1 "Puke.au")
51 ("snicker" 1 "Snicker.au")
52 ("meow" 1 "catmeow.wav")
53 ("sob\\|boohoo" 1 "cry.wav")
54 ("drum[ \t]*roll" 1 "drumroll.au")
55 ("blast" 1 "explosion.au")
56 ("flush\\|plonk!*" 1 "flush.au")
58 ("tee[ \t]*hee" 1 "laugh.au")
59 ("shoot" 1 "shotgun.wav")
60 ("yawn" 1 "snore.wav")
61 ("cackle" 1 "witch.au")
62 ("yell\\|roar" 1 "yell2.au")
63 ("whoop-de-doo" 1 "whistle.au"))
64 "*A list of regexps to map earcons to real sounds."
65 :type
'(repeat (list regexp
66 (integer :tag
"Match")
67 (string :tag
"Sound")))
69 (defvar earcon-button-marker-list nil
)
70 (make-variable-buffer-local 'earcon-button-marker-list
)
72 ;;; FIXME!! clone of code from gnus-vis.el FIXME!!
73 (defun earcon-article-push-button (event)
74 "Check text under the mouse pointer for a callback function.
75 If the text under the mouse pointer has a `earcon-callback' property,
76 call it with the value of the `earcon-data' text property."
78 (set-buffer (window-buffer (posn-window (event-start event
))))
79 (let* ((pos (posn-point (event-start event
)))
80 (data (get-text-property pos
'earcon-data
))
81 (fun (get-text-property pos
'earcon-callback
)))
82 (if fun
(funcall fun data
))))
84 (defun earcon-article-press-button ()
85 "Check text at point for a callback function.
86 If the text at point has a `earcon-callback' property,
87 call it with the value of the `earcon-data' text property."
89 (let* ((data (get-text-property (point) 'earcon-data
))
90 (fun (get-text-property (point) 'earcon-callback
)))
91 (if fun
(funcall fun data
))))
93 (defun earcon-article-prev-button (n)
94 "Move point to N buttons backward.
95 If N is negative, move forward instead."
97 (earcon-article-next-button (- n
)))
99 (defun earcon-article-next-button (n)
100 "Move point to N buttons forward.
101 If N is negative, move backward instead."
103 (let ((function (if (< n
0) 'previous-single-property-change
104 'next-single-property-change
))
105 (inhibit-point-motion-hooks t
)
107 (limit (if (< n
0) (point-min) (point-max))))
109 (while (and (not (= limit
(point)))
111 ;; Skip past the current button.
112 (when (get-text-property (point) 'earcon-callback
)
113 (goto-char (funcall function
(point) 'earcon-callback nil limit
)))
114 ;; Go to the next (or previous) button.
115 (gnus-goto-char (funcall function
(point) 'earcon-callback nil limit
))
116 ;; Put point at the start of the button.
117 (when (and backward
(not (get-text-property (point) 'earcon-callback
)))
118 (goto-char (funcall function
(point) 'earcon-callback nil limit
)))
119 ;; Skip past intangible buttons.
120 (when (get-text-property (point) 'intangible
)
124 (gnus-message 5 "No more buttons"))
127 (defun earcon-article-add-button (from to fun
&optional data
)
128 "Create a button between FROM and TO with callback FUN and data DATA."
129 (and (boundp gnus-article-button-face
)
130 gnus-article-button-face
131 (gnus-overlay-put (gnus-make-overlay from to
)
132 'face gnus-article-button-face
))
133 (gnus-add-text-properties
135 (nconc (and gnus-article-mouse-face
136 (list gnus-mouse-face-prop gnus-article-mouse-face
))
137 (list 'gnus-callback fun
)
138 (and data
(list 'gnus-data data
)))))
140 (defun earcon-button-entry ()
141 ;; Return the first entry in `gnus-button-alist' matching this place.
142 (let ((alist earcon-regexp-alist
)
146 (setq entry
(pop alist
))
147 (if (looking-at (car entry
))
152 (defun earcon-button-push (marker)
153 ;; Push button starting at MARKER.
155 (set-buffer gnus-article-buffer
)
157 (let* ((entry (earcon-button-entry))
158 (inhibit-point-motion-hooks t
)
159 (fun 'gnus-audio-play
)
160 (args (list (nth 2 entry
))))
165 (fboundp (symbol-value fun
)))
166 (apply (symbol-value fun
) args
))
168 (gnus-message 1 "You must define `%S' to use this button"
169 (cons fun args
)))))))
171 ;;; FIXME!! clone of code from gnus-vis.el FIXME!!
174 (defun earcon-region (beg end
)
175 "Play Sounds in the region between point and mark."
177 (earcon-buffer (current-buffer) beg end
))
180 (defun earcon-buffer (&optional buffer st nd
)
183 ;; clear old markers.
184 (if (boundp 'earcon-button-marker-list
)
185 (while earcon-button-marker-list
186 (set-marker (pop earcon-button-marker-list
) nil
))
187 (setq earcon-button-marker-list nil
))
188 (and buffer
(set-buffer buffer
))
189 (let ((buffer-read-only nil
)
190 (inhibit-point-motion-hooks t
)
192 (alist earcon-regexp-alist
)
194 (goto-char (point-min))
196 (while (setq entry
(pop alist
))
197 (setq regexp
(concat (regexp-quote earcon-prefix
)
201 (regexp-quote earcon-suffix
)))
203 (while (re-search-forward regexp nil t
)
204 (let* ((start (and entry
(match-beginning 1)))
205 (end (and entry
(match-end 1)))
206 (from (match-beginning 1)))
207 (earcon-article-add-button
208 start end
'earcon-button-push
209 (car (push (set-marker (make-marker) from
)
210 earcon-button-marker-list
)))
211 (gnus-audio-play (caddr entry
))))))))
214 (defun gnus-earcon-display ()
215 "Play sounds in message buffers."
218 (set-buffer gnus-article-buffer
)
219 (goto-char (point-min))
221 (unless (search-forward "\n\n" nil t
)
222 (goto-char (point-max)))
224 (earcon-buffer (current-buffer) (point))))
230 (run-hooks 'earcon-load-hook
)
232 ;; arch-tag: 844dfeea-980c-4ed0-907f-a30bf139691c
233 ;;; earcon.el ends here