annotate src/sound.c @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 697ef44129c6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Sound functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1993, 1994 Lucid Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Originally written by Jamie Zawinski.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 Hacked on quite a bit by various others. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include <config.h>
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
28 #include <time.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "sysdep.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
40 #ifdef HAVE_UNISTD_H
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
41 #include <unistd.h>
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
42 #endif
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
43
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #ifdef HAVE_NATIVE_SOUND
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
45 # include <netdb.h>
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
46 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
47
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 int bell_volume;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
49 int bell_inhibit_time;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Lisp_Object Vsound_alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object Vsynchronous_sounds;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object Vnative_sound_only_on_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Lisp_Object Q_volume, Q_pitch, Q_duration, Q_sound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
55 /* These are defined in the appropriate file (sunplay.c, sgiplay.c,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
56 or hpplay.c). */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
57
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
58 extern void play_sound_file (char *name, int volume);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
59 extern void play_sound_data (unsigned char *data, int length, int volume);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 extern int nas_play_sound_file (char *name, int volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 extern int nas_play_sound_data (unsigned char *data, int length, int volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 extern int nas_wait_for_sounds (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 extern char *nas_init_play (Display *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Lisp_Object Qnas;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
70 DEFUN ("play-sound-file", Fplay_sound_file, 1, 3, "fSound file name: ", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Play the named sound file on DEVICE's speaker at the specified volume
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
72 \(0-100, default specified by the `bell-volume' variable).
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
73 On Unix machines the sound file must be in the Sun/NeXT U-LAW format
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
74 except under Linux where WAV files are also supported. On Microsoft
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
75 Windows the sound file must be in WAV format.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 DEVICE defaults to the selected device.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
77 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 44
diff changeset
78 (file, volume, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
80 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 int vol;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
82 #if defined (HAVE_NATIVE_SOUND) || defined (HAVE_NAS_SOUND)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 struct device *d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #endif
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
85 struct gcpro gcpro1;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
86
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 CHECK_STRING (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 if (NILP (volume))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 vol = bell_volume;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 CHECK_INT (volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 vol = XINT (volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
96 GCPRO1 (file);
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
97 while (1)
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 120
diff changeset
98 {
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
99 file = Fexpand_file_name (file, Qnil);
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
100 if (!NILP(Ffile_readable_p (file)))
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
101 break;
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
102 else
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
103 {
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
104 /* #### This is crockish. It might be a better idea to try
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
105 to open the file, and use report_file_error() if it
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
106 fails. --hniksic */
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
107 if (NILP (Ffile_exists_p (file)))
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 245
diff changeset
108 file =
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 245
diff changeset
109 signal_simple_continuable_error ("File does not exist", file);
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
110 else
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 245
diff changeset
111 file =
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 245
diff changeset
112 signal_simple_continuable_error ("File is unreadable", file);
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
113 }
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 120
diff changeset
114 }
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
115 UNGCPRO;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 if (DEVICE_CONNECTED_TO_NAS_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 char *fileext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
122 GET_C_STRING_FILENAME_DATA_ALLOCA (file, fileext);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 /* #### NAS code should allow specification of a device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 if (nas_play_sound_file (fileext, vol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #endif /* HAVE_NAS_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 if (NILP (Vnative_sound_only_on_console) || DEVICE_ON_CONSOLE_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
132 CONST char *fileext;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
134 GET_C_STRING_FILENAME_DATA_ALLOCA (file, fileext);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* The sound code doesn't like getting SIGIO interrupts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 Unix sucks! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 stop_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 play_sound_file ((char *) fileext, vol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 start_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #endif /* HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 parse_sound_alist_elt (Lisp_Object elt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Lisp_Object *volume,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Lisp_Object *pitch,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object *duration,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 Lisp_Object *sound)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 *volume = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 *pitch = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 *duration = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 *sound = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 if (! CONSP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 /* The things we do for backward compatibility...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 I wish I had just forced this to be a plist to begin with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 if (SYMBOLP (elt) || STRINGP (elt)) /* ( name . <sound> ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 *sound = elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 else if (!CONSP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 else if (NILP (XCDR (elt)) && /* ( name <sound> ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (SYMBOLP (XCAR (elt)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 STRINGP (XCAR (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 *sound = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 else if (INT_OR_FLOATP (XCAR (elt)) && /* ( name <vol> . <sound> ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (SYMBOLP (XCDR (elt)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 STRINGP (XCDR (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 *volume = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 *sound = XCDR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 else if (INT_OR_FLOATP (XCAR (elt)) && /* ( name <vol> <sound> ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 CONSP (XCDR (elt)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 NILP (XCDR (XCDR (elt))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (SYMBOLP (XCAR (XCDR (elt))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 STRINGP (XCAR (XCDR (elt)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 *volume = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 *sound = XCAR (XCDR (elt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 else if ((SYMBOLP (XCAR (elt)) || /* ( name <sound> . <vol> ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 STRINGP (XCAR (elt))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 INT_OR_FLOATP (XCDR (elt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 *sound = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 *volume = XCDR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 #if 0 /* this one is ambiguous with the plist form */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 else if ((SYMBOLP (XCAR (elt)) || /* ( name <sound> <vol> ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 STRINGP (XCAR (elt))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 CONSP (XCDR (elt)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 NILP (XCDR (XCDR (elt))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 INT_OR_FLOATP (XCAR (XCDR (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 *sound = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 *volume = XCAR (XCDR (elt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 else /* ( name [ keyword <value> ]* ) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 while (CONSP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Lisp_Object key, val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 key = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 val = XCDR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 if (!CONSP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 elt = XCDR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 val = XCAR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 if (EQ (key, Q_volume))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 if (INT_OR_FLOATP (val)) *volume = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 else if (EQ (key, Q_pitch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 if (INT_OR_FLOATP (val)) *pitch = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 if (NILP (*sound)) *sound = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 else if (EQ (key, Q_duration))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 if (INT_OR_FLOATP (val)) *duration = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 if (NILP (*sound)) *sound = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 else if (EQ (key, Q_sound))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 if (SYMBOLP (val) || STRINGP (val)) *sound = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
246 DEFUN ("play-sound", Fplay_sound, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 Play a sound of the provided type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 See the variable `sound-alist'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
249 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
250 (sound, volume, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 int looking_for_default = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* variable `sound' is anything that can be a cdr in sound-alist */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 Lisp_Object new_volume, pitch, duration, data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 int loop_count = 0;
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 406
diff changeset
256 int vol, pit, dur;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 struct device *d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 /* NOTE! You'd better not signal an error in here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 try_it_again:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 if (SYMBOLP (sound))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 sound = Fcdr (Fassq (sound, Vsound_alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 parse_sound_alist_elt (sound, &new_volume, &pitch, &duration, &data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 sound = data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 if (NILP (volume)) volume = new_volume;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 if (EQ (sound, Qt) || EQ (sound, Qnil) || STRINGP (sound))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 if (loop_count++ > 500) /* much bogosity has occurred */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 if (NILP (sound) && !looking_for_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 looking_for_default = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 loop_count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 sound = Qdefault;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 goto try_it_again;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
284
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
285 vol = (INT_OR_FLOATP (volume) ? (int) XFLOATINT (volume) : bell_volume);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
286 pit = (INT_OR_FLOATP (pitch) ? (int) XFLOATINT (pitch) : -1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
287 dur = (INT_OR_FLOATP (duration) ? (int) XFLOATINT (duration) : -1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 /* If the sound is a string, and we're connected to Nas, do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 Else if the sound is a string, and we're on console, play it natively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 Else just beep.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 if (DEVICE_CONNECTED_TO_NAS_P (d) && STRINGP (sound))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
296 CONST Extbyte *soundext;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Extcount soundextlen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
299 GET_STRING_BINARY_DATA_ALLOCA (sound, soundext, soundextlen);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
300 if (nas_play_sound_data ((unsigned char*)soundext, soundextlen, vol))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #endif /* HAVE_NAS_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 if ((NILP (Vnative_sound_only_on_console) || DEVICE_ON_CONSOLE_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 && STRINGP (sound))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
309 CONST Extbyte *soundext;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 Extcount soundextlen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
312 GET_STRING_BINARY_DATA_ALLOCA (sound, soundext, soundextlen);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 /* The sound code doesn't like getting SIGIO interrupts. Unix sucks! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 stop_interrupts ();
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
315 play_sound_data ((unsigned char*)soundext, soundextlen, vol);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 start_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 QUIT;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
318 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 #endif /* HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 DEVMETH (d, ring_bell, (d, vol, pit, dur));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
326 DEFUN ("device-sound-enabled-p", Fdevice_sound_enabled_p, 0, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
327 Return t if DEVICE is able to play sound. Defaults to selected device.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
328 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
329 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 #ifdef HAVE_NAS_SOUND
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
332 if (DEVICE_CONNECTED_TO_NAS_P (decode_device (device)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
333 return Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 #ifdef HAVE_NATIVE_SOUND
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
336 if (DEVICE_ON_CONSOLE_P (decode_device (device)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
337 return Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
342 DEFUN ("ding", Fding, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 Beep, or flash the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 Also, unless an argument is given,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 terminate any keyboard macro currently executing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 When called from lisp, the second argument is what sound to make, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 the third argument is the device to make it in (defaults to the selected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 device).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
349 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
350 (arg, sound, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
352 static time_t last_bell_time = (time_t) 0;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
353 static struct device *last_bell_device = (struct device*) 0;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
354 time_t now;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
355 struct device *d = decode_device (device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 XSETDEVICE (device, d);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
358 now = time (0);
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 233
diff changeset
359
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 if (NILP (arg) && !NILP (Vexecuting_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 /* Stop executing a keyboard macro. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 error ("Keyboard macro terminated by a command ringing the bell");
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
363
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
364 if (d == last_bell_device && now-last_bell_time < bell_inhibit_time)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
365 return Qnil;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
366 else if (visible_bell && DEVMETH (d, flash, (d)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 Fplay_sound (sound, Qnil, device);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
370
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
371 last_bell_time = now;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
372 last_bell_device = d;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
373 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
376 DEFUN ("wait-for-sounds", Fwait_for_sounds, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 Wait for all sounds to finish playing on DEVICE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
378 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
379 (device))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 44
diff changeset
380
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 struct device *d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 if (DEVICE_CONNECTED_TO_NAS_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 /* #### somebody fix this to be device-dependent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 nas_wait_for_sounds ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
393 DEFUN ("connected-to-nas-p", Fconnected_to_nas_p, 0, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
394 Return t if connected to NAS server for sounds on DEVICE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
395 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
396 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 #ifdef HAVE_NAS_SOUND
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
399 return DEVICE_CONNECTED_TO_NAS_P (decode_device (device)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 init_nas_sound (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
409 char *error;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
410
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 if (DEVICE_X_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
414 error = nas_init_play (DEVICE_X_DISPLAY (d));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
415 DEVICE_CONNECTED_TO_NAS_P (d) = !error;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 /* Print out the message? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 #endif /* HAVE_X_WINDOWS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 #endif /* HAVE_NAS_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 init_native_sound (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 245
diff changeset
428 if (DEVICE_TTY_P (d) || DEVICE_STREAM_P (d) || DEVICE_MSWINDOWS_P(d))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 DEVICE_ON_CONSOLE_P (d) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 /* When running on a machine with native sound support, we cannot use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 digitized sounds as beeps unless emacs is running on the same machine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 that $DISPLAY points to, and $DISPLAY points to frame 0 of that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 machine.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 Display *display = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 char *dpy = DisplayString (display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 char *tail = (char *) strchr (dpy, ':');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 if (! tail ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 strncmp (tail, ":0", 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 DEVICE_ON_CONSOLE_P (d) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 char dpyname[255], localname[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 /* some systems can't handle SIGIO or SIGALARM in gethostbyname. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 stop_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 strncpy (dpyname, dpy, tail-dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 dpyname [tail-dpy] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 if (!*dpyname ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 !strcmp (dpyname, "unix") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 !strcmp (dpyname, "localhost"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 DEVICE_ON_CONSOLE_P (d) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 else if (gethostname (localname, sizeof (localname)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 DEVICE_ON_CONSOLE_P (d) = 0; /* can't find hostname? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 /* We have to call gethostbyname() on the result of gethostname()
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
462 because the two aren't guaranteed to be the same name for the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 same host: on some losing systems, one is a FQDN and the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 is not. Here in the wide wonderful world of Unix it's rocket
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 science to obtain the local hostname in a portable fashion.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 265
diff changeset
466
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 And don't forget, gethostbyname() reuses the structure it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 returns, so we have to copy the fucker before calling it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 Thank you master, may I have another.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 struct hostent *h = gethostbyname (dpyname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 if (!h)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 DEVICE_ON_CONSOLE_P (d) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 char hn [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 struct hostent *l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 strcpy (hn, h->h_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 l = gethostbyname (localname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 DEVICE_ON_CONSOLE_P (d) = (l && !(strcmp (l->h_name, hn)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 start_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 #endif /* HAVE_X_WINDOWS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 #endif /* HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 init_device_sound (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 init_nas_sound (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 init_native_sound (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 syms_of_sound (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 defkeyword (&Q_volume, ":volume");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 defkeyword (&Q_pitch, ":pitch");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 defkeyword (&Q_duration, ":duration");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 defkeyword (&Q_sound, ":sound");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 defsymbol (&Qnas, "nas");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
517 DEFSUBR (Fplay_sound_file);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
518 DEFSUBR (Fplay_sound);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
519 DEFSUBR (Fding);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
520 DEFSUBR (Fwait_for_sounds);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
521 DEFSUBR (Fconnected_to_nas_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
522 DEFSUBR (Fdevice_sound_enabled_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 vars_of_sound (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 Fprovide (intern ("native-sound"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 Fprovide (intern ("nas-sound"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 DEFVAR_INT ("bell-volume", &bell_volume /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 *How loud to be, from 0 to 100.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 bell_volume = 50;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
540
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
541 DEFVAR_INT ("bell-inhibit-time", &bell_inhibit_time /*
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
542 *Don't ring the bell on the same device more than once within this many seconds.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
543 */ );
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
544 bell_inhibit_time = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 DEFVAR_LISP ("sound-alist", &Vsound_alist /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 An alist associating names with sounds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 When `beep' or `ding' is called with one of the name symbols, the associated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 sound will be generated instead of the standard beep.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 Each element of `sound-alist' is a list describing a sound.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 The first element of the list is the name of the sound being defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 Subsequent elements of the list are alternating keyword/value pairs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 Keyword: Value:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 ------- -----
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 sound A string of raw sound data, or the name of another sound to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 play. The symbol `t' here means use the default X beep.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 volume An integer from 0-100, defaulting to `bell-volume'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 pitch If using the default X beep, the pitch (Hz) to generate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 duration If using the default X beep, the duration (milliseconds).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 For compatibility, elements of `sound-alist' may also be:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 ( sound-name . <sound> )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 ( sound-name <volume> <sound> )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 You should probably add things to this list by calling the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 load-sound-file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 Caveats:
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
572 - XEmacs must be built with sound support for your system. Not all
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
573 systems support sound.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 - The pitch, duration, and volume options are available everywhere, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 many X servers ignore the `pitch' option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 The following beep-types are used by emacs itself:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 auto-save-error when an auto-save does not succeed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 command-error when the emacs command loop catches an error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 undefined-key when you type a key that is undefined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 undefined-click when you use an undefined mouse-click combination
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 no-completion during completing-read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 y-or-n-p when you type something other than 'y' or 'n'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 yes-or-no-p when you type something other than 'yes' or 'no'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 default used when nothing else is appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 Other lisp packages may use other beep types, but these are the ones that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 the C kernel of Emacs uses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 Vsound_alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 DEFVAR_LISP ("synchronous-sounds", &Vsynchronous_sounds /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 Play sounds synchronously, if non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 Only applies if NAS is used and supports asynchronous playing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 of sounds. Otherwise, sounds are always played synchronously.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 Vsynchronous_sounds = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 DEFVAR_LISP ("native-sound-only-on-console", &Vnative_sound_only_on_console /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 Non-nil value means play sounds only if XEmacs is running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 on the system console.
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
604 Nil means always always play sounds, even if running on a non-console tty
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 or a secondary X display.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 This variable only applies to native sound support.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 Vnative_sound_only_on_console = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 #if defined (HAVE_NATIVE_SOUND) && defined (hp9000s800)
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 272
diff changeset
612 {
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 272
diff changeset
613 void vars_of_hpplay (void);
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 272
diff changeset
614 vars_of_hpplay ();
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 272
diff changeset
615 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 }