1 ;;; gnus-audio.el --- Sound effects for Gnus
3 ;; Copyright (C) 1996, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Steven L. Baur <steve@miranova.com>
7 ;; Keywords: news, mail, multimedia
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; This file provides access to sound effects in Gnus.
29 ;; This file is partially stripped to support earcons.el.
35 (defgroup gnus-audio nil
36 "Playing sound in Gnus."
41 (defvar gnus-audio-inline-sound
42 (or (if (fboundp 'device-sound-enabled-p
)
43 (device-sound-enabled-p)) ; XEmacs
44 (fboundp 'play-sound
)) ; Emacs 21
45 "Non-nil means try to play sounds without using an external program.")
47 (defcustom gnus-audio-directory
(nnheader-find-etc-directory "sounds")
48 "The directory containing the Sound Files."
49 :type
'(choice directory
(const nil
))
52 (defcustom gnus-audio-au-player
(executable-find "play")
53 "Executable program for playing sun AU format sound files."
55 :type
'(choice file
(const nil
)))
57 (defcustom gnus-audio-wav-player
(executable-find "play")
58 "Executable program for playing WAV files."
60 :type
'(choice file
(const nil
)))
62 ;;; The following isn't implemented yet. Wait for Millennium Gnus.
63 ;;(defvar gnus-audio-effects-enabled t
64 ;; "When t, Gnus will use sound effects.")
65 ;;(defvar gnus-audio-enable-hooks nil
66 ;; "Functions run when enabling sound effects.")
67 ;;(defvar gnus-audio-disable-hooks nil
68 ;; "Functions run when disabling sound effects.")
69 ;;(defvar gnus-audio-theme-song nil
70 ;; "Theme song for Gnus.")
71 ;;(defvar gnus-audio-enter-group nil
72 ;; "Sound effect played when selecting a group.")
73 ;;(defvar gnus-audio-exit-group nil
74 ;; "Sound effect played when exiting a group.")
75 ;;(defvar gnus-audio-score-group nil
76 ;; "Sound effect played when scoring a group.")
77 ;;(defvar gnus-audio-busy-sound nil
78 ;; "Sound effect played when going into a ... sequence.")
82 ;;(defun gnus-audio-enable-sound ()
83 ;; "Enable Sound Effects for Gnus."
85 ;; (setq gnus-audio-effects-enabled t)
86 ;; (gnus-run-hooks gnus-audio-enable-hooks))
89 ;(defun gnus-audio-disable-sound ()
90 ;; "Disable Sound Effects for Gnus."
92 ;; (setq gnus-audio-effects-enabled nil)
93 ;; (gnus-run-hooks gnus-audio-disable-hooks))
96 (defun gnus-audio-play (file)
97 "Play a sound FILE through the speaker."
98 (interactive "fSound file name: ")
99 (let ((sound-file (if (file-exists-p file
)
101 (expand-file-name file gnus-audio-directory
))))
102 (when (file-exists-p sound-file
)
103 (cond ((and gnus-audio-inline-sound
105 ;; Even if we have audio, we may fail with the
106 ;; wrong sort of sound file.
107 (progn (play-sound-file sound-file
)
110 ;; If we don't have built-in sound, or playing it failed,
111 ;; try with external program.
112 ((equal "wav" (file-name-extension sound-file
))
113 (call-process gnus-audio-wav-player
118 ((equal "au" (file-name-extension sound-file
))
119 (call-process gnus-audio-au-player
126 ;;; The following isn't implemented yet, wait for Red Gnus
127 ;;(defun gnus-audio-startrek-sounds ()
128 ;; "Enable sounds from Star Trek the original series."
130 ;; (setq gnus-audio-busy-sound "working.au")
131 ;; (setq gnus-audio-enter-group "bulkhead_door.au")
132 ;; (setq gnus-audio-exit-group "bulkhead_door.au")
133 ;; (setq gnus-audio-score-group "ST_laser.au")
134 ;; (setq gnus-audio-theme-song "startrek.au")
135 ;; (add-hook 'gnus-select-group-hook 'gnus-audio-startrek-select-group)
136 ;; (add-hook 'gnus-exit-group-hook 'gnus-audio-startrek-exit-group))
139 (defvar gnus-startup-jingle
"Tuxedomoon.Jingle4.au"
140 "Name of the Gnus startup jingle file.")
142 (defun gnus-play-jingle ()
143 "Play the Gnus startup jingle, unless that's inhibited."
145 (gnus-audio-play gnus-startup-jingle
))
147 (provide 'gnus-audio
)
149 (run-hooks 'gnus-audio-load-hook
)
151 ;; arch-tag: 6f129e78-3416-4fc9-973f-6cf5ac8d654b
152 ;;; gnus-audio.el ends here