author | Sam Lantinga <slouken@libsdl.org> |
Sun, 19 Feb 2006 23:46:34 +0000 | |
changeset 1379 | c0a74f199ecf |
parent 1358 | c71e05b4dc2e |
child 1402 | d910939febfa |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
SDL - Simple DirectMedia Layer |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
3 |
Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
|
5 |
This library is free software; you can redistribute it and/or |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
6 |
modify it under the terms of the GNU Lesser General Public |
0 | 7 |
License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
8 |
version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
|
10 |
This library is distributed in the hope that it will be useful, |
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
13 |
Lesser General Public License for more details. |
0 | 14 |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
15 |
You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
16 |
License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1138
diff
changeset
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
|
19 |
Sam Lantinga |
|
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
94
diff
changeset
|
20 |
slouken@libsdl.org |
0 | 21 |
*/ |
22 |
||
23 |
/* Get the name of the audio device we use for output */ |
|
24 |
||
1035
974ba6ae0fa3
Date: Wed, 26 Jan 2005 13:37:09 GMT
Sam Lantinga <slouken@libsdl.org>
parents:
1026
diff
changeset
|
25 |
#if defined(unix) || defined(__unix__) || defined(__riscos__) |
0 | 26 |
|
27 |
#include <fcntl.h> |
|
28 |
#include <sys/types.h> |
|
29 |
#include <sys/stat.h> |
|
30 |
||
1358
c71e05b4dc2e
More header massaging... works great on Windows. ;-)
Sam Lantinga <slouken@libsdl.org>
parents:
1338
diff
changeset
|
31 |
#include "SDL_stdinc.h" |
0 | 32 |
#include "SDL_audiodev_c.h" |
33 |
||
34 |
#ifndef _PATH_DEV_DSP |
|
1026
0f3aa6ab3341
Select patches included from The NetBSD Package Collection (www.pkgsrc.org)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
35 |
#if defined(__NetBSD__) || defined(__OpenBSD__) |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
36 |
#define _PATH_DEV_DSP "/dev/audio" |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
37 |
#else |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
38 |
#define _PATH_DEV_DSP "/dev/dsp" |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
39 |
#endif |
0 | 40 |
#endif |
41 |
#ifndef _PATH_DEV_DSP24 |
|
42 |
#define _PATH_DEV_DSP24 "/dev/sound/dsp" |
|
43 |
#endif |
|
44 |
#ifndef _PATH_DEV_AUDIO |
|
45 |
#define _PATH_DEV_AUDIO "/dev/audio" |
|
46 |
#endif |
|
47 |
||
48 |
||
49 |
int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic) |
|
50 |
{ |
|
51 |
const char *audiodev; |
|
52 |
int audio_fd; |
|
53 |
char audiopath[1024]; |
|
54 |
||
55 |
/* Figure out what our audio device is */ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
56 |
if ( ((audiodev=SDL_getenv("SDL_PATH_DSP")) == NULL) && |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
57 |
((audiodev=SDL_getenv("AUDIODEV")) == NULL) ) { |
0 | 58 |
if ( classic ) { |
59 |
audiodev = _PATH_DEV_AUDIO; |
|
60 |
} else { |
|
61 |
struct stat sb; |
|
62 |
||
63 |
/* Added support for /dev/sound/\* in Linux 2.4 */ |
|
1138
fcfb783a3ca2
Commercial-OSS-on-Solaris patch...
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
64 |
if ( ((stat("/dev/sound", &sb) == 0) && S_ISDIR(sb.st_mode)) && |
fcfb783a3ca2
Commercial-OSS-on-Solaris patch...
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
65 |
((stat(_PATH_DEV_DSP24, &sb) == 0) && S_ISCHR(sb.st_mode)) ) { |
0 | 66 |
audiodev = _PATH_DEV_DSP24; |
67 |
} else { |
|
68 |
audiodev = _PATH_DEV_DSP; |
|
69 |
} |
|
70 |
} |
|
71 |
} |
|
72 |
audio_fd = open(audiodev, flags, 0); |
|
73 |
||
74 |
/* If the first open fails, look for other devices */ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
75 |
if ( (audio_fd < 0) && (SDL_strlen(audiodev) < (sizeof(audiopath)-3)) ) { |
0 | 76 |
int exists, instance; |
77 |
struct stat sb; |
|
78 |
||
79 |
instance = 1; |
|
80 |
do { /* Don't use errno ENOENT - it may not be thread-safe */ |
|
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1336
diff
changeset
|
81 |
SDL_snprintf(audiopath, SDL_arraysize(audiopath), |
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1336
diff
changeset
|
82 |
"%s%d", audiodev, instance++); |
0 | 83 |
exists = 0; |
84 |
if ( stat(audiopath, &sb) == 0 ) { |
|
85 |
exists = 1; |
|
86 |
audio_fd = open(audiopath, flags, 0); |
|
87 |
} |
|
88 |
} while ( exists && (audio_fd < 0) ); |
|
89 |
audiodev = audiopath; |
|
90 |
} |
|
91 |
if ( path != NULL ) { |
|
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
92 |
SDL_strlcpy(path, audiodev, maxlen); |
0 | 93 |
path[maxlen-1] = '\0'; |
94 |
} |
|
95 |
return(audio_fd); |
|
96 |
} |
|
97 |
||
98 |
#elif defined(_AIX) |
|
99 |
||
100 |
/* Get the name of the audio device we use for output */ |
|
101 |
||
102 |
#include <sys/types.h> |
|
103 |
#include <sys/stat.h> |
|
104 |
||
1358
c71e05b4dc2e
More header massaging... works great on Windows. ;-)
Sam Lantinga <slouken@libsdl.org>
parents:
1338
diff
changeset
|
105 |
#include "SDL_stdinc.h" |
0 | 106 |
#include "SDL_audiodev_c.h" |
107 |
||
108 |
#ifndef _PATH_DEV_DSP |
|
109 |
#define _PATH_DEV_DSP "/dev/%caud%c/%c" |
|
110 |
#endif |
|
111 |
||
112 |
char devsettings[][3] = |
|
113 |
{ |
|
114 |
{ 'p', '0', '1' }, { 'p', '0', '2' }, { 'p', '0', '3' }, { 'p', '0', '4' }, |
|
115 |
{ 'p', '1', '1' }, { 'p', '1', '2' }, { 'p', '1', '3' }, { 'p', '1', '4' }, |
|
116 |
{ 'p', '2', '1' }, { 'p', '2', '2' }, { 'p', '2', '3' }, { 'p', '2', '4' }, |
|
117 |
{ 'p', '3', '1' }, { 'p', '3', '2' }, { 'p', '3', '3' }, { 'p', '3', '4' }, |
|
118 |
{ 'b', '0', '1' }, { 'b', '0', '2' }, { 'b', '0', '3' }, { 'b', '0', '4' }, |
|
119 |
{ 'b', '1', '1' }, { 'b', '1', '2' }, { 'b', '1', '3' }, { 'b', '1', '4' }, |
|
120 |
{ 'b', '2', '1' }, { 'b', '2', '2' }, { 'b', '2', '3' }, { 'b', '2', '4' }, |
|
121 |
{ 'b', '3', '1' }, { 'b', '3', '2' }, { 'b', '3', '3' }, { 'b', '3', '4' }, |
|
122 |
{ '\0', '\0', '\0' } |
|
123 |
}; |
|
124 |
||
125 |
static int OpenUserDefinedDevice(char *path, int maxlen, int flags) |
|
126 |
{ |
|
127 |
const char *audiodev; |
|
128 |
int audio_fd; |
|
129 |
||
130 |
/* Figure out what our audio device is */ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
131 |
if ((audiodev=SDL_getenv("SDL_PATH_DSP")) == NULL) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
132 |
audiodev=SDL_getenv("AUDIODEV"); |
0 | 133 |
} |
134 |
if ( audiodev == NULL ) { |
|
135 |
return -1; |
|
136 |
} |
|
137 |
audio_fd = open(audiodev, flags, 0); |
|
138 |
if ( path != NULL ) { |
|
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
139 |
SDL_strlcpy(path, audiodev, maxlen); |
0 | 140 |
path[maxlen-1] = '\0'; |
141 |
} |
|
142 |
return audio_fd; |
|
143 |
} |
|
144 |
||
145 |
int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic) |
|
146 |
{ |
|
147 |
struct stat sb; |
|
148 |
int audio_fd; |
|
149 |
char audiopath[1024]; |
|
150 |
int cycle; |
|
151 |
||
152 |
audio_fd = OpenUserDefinedDevice(path,maxlen,flags); |
|
153 |
if ( audio_fd != -1 ) { |
|
154 |
return audio_fd; |
|
155 |
} |
|
156 |
||
157 |
cycle = 0; |
|
158 |
while( devsettings[cycle][0] != '\0' ) { |
|
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1336
diff
changeset
|
159 |
SDL_snprintf( audiopath, SDL_arraysize(audiopath), |
0 | 160 |
_PATH_DEV_DSP, |
161 |
devsettings[cycle][0], |
|
162 |
devsettings[cycle][1], |
|
163 |
devsettings[cycle][2]); |
|
164 |
||
165 |
if ( stat(audiopath, &sb) == 0 ) { |
|
166 |
audio_fd = open(audiopath, flags, 0); |
|
167 |
if ( audio_fd > 0 ) { |
|
168 |
if ( path != NULL ) { |
|
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
169 |
SDL_strlcpy( path, audiopath, maxlen ); |
0 | 170 |
} |
171 |
return audio_fd; |
|
172 |
} |
|
173 |
} |
|
174 |
} |
|
175 |
return -1; |
|
176 |
} |
|
177 |
||
178 |
#endif /* UNIX system */ |