2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2007 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #define _CRT_SECURE_NO_DEPRECATE // get rid of sprintf security warnings on VS2005
37 #include "alExtension.h"
38 #include "alAuxEffectSlot.h"
41 ///////////////////////////////////////////////////////
46 ///////////////////////////////////////////////////////
49 #define EmptyFuncs { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
52 void (*Init
)(BackendFuncs
*);
56 { "alsa", alc_alsa_init
, EmptyFuncs
},
59 { "oss", alc_oss_init
, EmptyFuncs
},
62 { "solaris", alc_solaris_init
, EmptyFuncs
},
65 { "dsound", alcDSoundInit
, EmptyFuncs
},
68 { "winmm", alcWinMMInit
, EmptyFuncs
},
71 { "wave", alc_wave_init
, EmptyFuncs
},
73 { NULL
, NULL
, EmptyFuncs
}
77 ///////////////////////////////////////////////////////
79 #define ALC_EFX_MAJOR_VERSION 0x20001
80 #define ALC_EFX_MINOR_VERSION 0x20002
81 #define ALC_MAX_AUXILIARY_SENDS 0x20003
83 ///////////////////////////////////////////////////////
84 // STRING and EXTENSIONS
86 typedef struct ALCfunction_struct
92 static ALCfunction alcFunctions
[] = {
93 { "alcCreateContext", (ALvoid
*) alcCreateContext
},
94 { "alcMakeContextCurrent", (ALvoid
*) alcMakeContextCurrent
},
95 { "alcProcessContext", (ALvoid
*) alcProcessContext
},
96 { "alcSuspendContext", (ALvoid
*) alcSuspendContext
},
97 { "alcDestroyContext", (ALvoid
*) alcDestroyContext
},
98 { "alcGetCurrentContext", (ALvoid
*) alcGetCurrentContext
},
99 { "alcGetContextsDevice", (ALvoid
*) alcGetContextsDevice
},
100 { "alcOpenDevice", (ALvoid
*) alcOpenDevice
},
101 { "alcCloseDevice", (ALvoid
*) alcCloseDevice
},
102 { "alcGetError", (ALvoid
*) alcGetError
},
103 { "alcIsExtensionPresent", (ALvoid
*) alcIsExtensionPresent
},
104 { "alcGetProcAddress", (ALvoid
*) alcGetProcAddress
},
105 { "alcGetEnumValue", (ALvoid
*) alcGetEnumValue
},
106 { "alcGetString", (ALvoid
*) alcGetString
},
107 { "alcGetIntegerv", (ALvoid
*) alcGetIntegerv
},
108 { "alcCaptureOpenDevice", (ALvoid
*) alcCaptureOpenDevice
},
109 { "alcCaptureCloseDevice", (ALvoid
*) alcCaptureCloseDevice
},
110 { "alcCaptureStart", (ALvoid
*) alcCaptureStart
},
111 { "alcCaptureStop", (ALvoid
*) alcCaptureStop
},
112 { "alcCaptureSamples", (ALvoid
*) alcCaptureSamples
},
113 { NULL
, (ALvoid
*) NULL
}
116 static ALenums enumeration
[]={
118 { (ALchar
*)"ALC_INVALID", ALC_INVALID
},
119 { (ALchar
*)"ALC_FALSE", ALC_FALSE
},
120 { (ALchar
*)"ALC_TRUE", ALC_TRUE
},
123 { (ALchar
*)"ALC_MAJOR_VERSION", ALC_MAJOR_VERSION
},
124 { (ALchar
*)"ALC_MINOR_VERSION", ALC_MINOR_VERSION
},
125 { (ALchar
*)"ALC_ATTRIBUTES_SIZE", ALC_ATTRIBUTES_SIZE
},
126 { (ALchar
*)"ALC_ALL_ATTRIBUTES", ALC_ALL_ATTRIBUTES
},
127 { (ALchar
*)"ALC_DEFAULT_DEVICE_SPECIFIER", ALC_DEFAULT_DEVICE_SPECIFIER
},
128 { (ALchar
*)"ALC_DEVICE_SPECIFIER", ALC_DEVICE_SPECIFIER
},
129 { (ALchar
*)"ALC_ALL_DEVICES_SPECIFIER", ALC_ALL_DEVICES_SPECIFIER
},
130 { (ALchar
*)"ALC_DEFAULT_ALL_DEVICES_SPECIFIER", ALC_DEFAULT_ALL_DEVICES_SPECIFIER
},
131 { (ALchar
*)"ALC_EXTENSIONS", ALC_EXTENSIONS
},
132 { (ALchar
*)"ALC_FREQUENCY", ALC_FREQUENCY
},
133 { (ALchar
*)"ALC_REFRESH", ALC_REFRESH
},
134 { (ALchar
*)"ALC_SYNC", ALC_SYNC
},
135 { (ALchar
*)"ALC_MONO_SOURCES", ALC_MONO_SOURCES
},
136 { (ALchar
*)"ALC_STEREO_SOURCES", ALC_STEREO_SOURCES
},
137 { (ALchar
*)"ALC_CAPTURE_DEVICE_SPECIFIER", ALC_CAPTURE_DEVICE_SPECIFIER
},
138 { (ALchar
*)"ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER", ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER
},
139 { (ALchar
*)"ALC_CAPTURE_SAMPLES", ALC_CAPTURE_SAMPLES
},
142 { (ALchar
*)"ALC_EFX_MAJOR_VERSION", ALC_EFX_MAJOR_VERSION
},
143 { (ALchar
*)"ALC_EFX_MINOR_VERSION", ALC_EFX_MINOR_VERSION
},
144 { (ALchar
*)"ALC_MAX_AUXILIARY_SENDS", ALC_MAX_AUXILIARY_SENDS
},
147 { (ALchar
*)"ALC_NO_ERROR", ALC_NO_ERROR
},
148 { (ALchar
*)"ALC_INVALID_DEVICE", ALC_INVALID_DEVICE
},
149 { (ALchar
*)"ALC_INVALID_CONTEXT", ALC_INVALID_CONTEXT
},
150 { (ALchar
*)"ALC_INVALID_ENUM", ALC_INVALID_ENUM
},
151 { (ALchar
*)"ALC_INVALID_VALUE", ALC_INVALID_VALUE
},
152 { (ALchar
*)"ALC_OUT_OF_MEMORY", ALC_OUT_OF_MEMORY
},
153 { (ALchar
*)NULL
, (ALenum
)0 }
156 static const ALCchar alcNoError
[] = "No Error";
157 static const ALCchar alcErrInvalidDevice
[] = "Invalid Device";
158 static const ALCchar alcErrInvalidContext
[] = "Invalid Context";
159 static const ALCchar alcErrInvalidEnum
[] = "Invalid Enum";
160 static const ALCchar alcErrInvalidValue
[] = "Invalid Value";
161 static const ALCchar alcErrOutOfMemory
[] = "Out of Memory";
164 static ALCchar alcDeviceList
[2048];
165 static ALCchar alcAllDeviceList
[2048];
166 static ALCchar alcCaptureDeviceList
[2048];
167 // Default is always the first in the list
168 static ALCchar
*alcDefaultDeviceSpecifier
= alcDeviceList
;
169 static ALCchar
*alcDefaultAllDeviceSpecifier
= alcAllDeviceList
;
170 static ALCchar
*alcCaptureDefaultDeviceSpecifier
= alcCaptureDeviceList
;
173 static ALCchar alcExtensionList
[] = "ALC_ENUMERATE_ALL_EXT ALC_ENUMERATION_EXT ALC_EXT_CAPTURE ALC_EXT_EFX";
174 static ALCint alcMajorVersion
= 1;
175 static ALCint alcMinorVersion
= 1;
177 static ALCint alcEFXMajorVersion
= 1;
178 static ALCint alcEFXMinorVersion
= 0;
180 ///////////////////////////////////////////////////////
183 ///////////////////////////////////////////////////////
186 static ALCdevice
*g_pDeviceList
= NULL
;
187 static ALCuint g_ulDeviceCount
= 0;
189 static CRITICAL_SECTION g_csMutex
;
192 static ALCcontext
*g_pContextList
= NULL
;
193 static ALCuint g_ulContextCount
= 0;
196 static ALCenum g_eLastContextError
= ALC_NO_ERROR
;
198 static ALboolean init_done
= AL_FALSE
;
200 ///////////////////////////////////////////////////////
203 ///////////////////////////////////////////////////////
204 // ALC Related helper functions
206 BOOL APIENTRY
DllMain(HANDLE hModule
,DWORD ul_reason_for_call
,LPVOID lpReserved
)
210 // Perform actions based on the reason for calling.
211 switch(ul_reason_for_call
)
213 case DLL_PROCESS_ATTACH
:
214 DisableThreadLibraryCalls(hModule
);
217 case DLL_PROCESS_DETACH
:
226 DeleteCriticalSection(&g_csMutex
);
232 #ifdef HAVE_GCC_DESTRUCTOR
233 static void my_deinit() __attribute__((destructor
));
234 static void my_deinit()
236 static ALenum once
= AL_FALSE
;
237 if(once
|| !init_done
) return;
246 DeleteCriticalSection(&g_csMutex
);
251 static void InitAL(void)
256 const char *devs
, *str
;
260 InitializeCriticalSection(&g_csMutex
);
264 devs
= GetConfigValue(NULL
, "drivers", "");
269 const char *next
= devs
;
275 next
= strchr(devs
, ',');
277 if(!devs
[0] || devs
[0] == ',')
280 len
= (next
? ((size_t)(next
-devs
)) : strlen(devs
));
281 for(n
= i
;BackendList
[n
].Init
;n
++)
283 if(len
== strlen(BackendList
[n
].name
) &&
284 strncmp(BackendList
[n
].name
, devs
, len
) == 0)
286 const char *name
= BackendList
[i
].name
;
287 void (*Init
)(BackendFuncs
*) = BackendList
[i
].Init
;
289 BackendList
[i
].name
= BackendList
[n
].name
;
290 BackendList
[i
].Init
= BackendList
[n
].Init
;
292 BackendList
[n
].name
= name
;
293 BackendList
[n
].Init
= Init
;
300 BackendList
[i
].name
= NULL
;
301 BackendList
[i
].Init
= NULL
;
304 for(i
= 0;BackendList
[i
].Init
;i
++)
305 BackendList
[i
].Init(&BackendList
[i
].Funcs
);
307 str
= GetConfigValue(NULL
, "stereodup", "false");
308 DuplicateStereo
= (strcasecmp(str
, "true") == 0 ||
309 strcasecmp(str
, "yes") == 0 ||
310 strcasecmp(str
, "on") == 0 ||
315 ALCchar
*AppendDeviceList(char *name
)
318 ALCchar
*ret
= alcDeviceList
+pos
;
319 if(pos
>= sizeof(alcDeviceList
))
321 AL_PRINT("Not enough room to add %s!\n", name
);
322 return alcDeviceList
+ sizeof(alcDeviceList
) - 1;
324 pos
+= snprintf(alcDeviceList
+pos
, sizeof(alcDeviceList
)-pos
-1, "%s", name
) + 1;
328 ALCchar
*AppendAllDeviceList(char *name
)
331 ALCchar
*ret
= alcAllDeviceList
+pos
;
332 if(pos
>= sizeof(alcAllDeviceList
))
334 AL_PRINT("Not enough room to add %s!\n", name
);
335 return alcAllDeviceList
+ sizeof(alcAllDeviceList
) - 1;
337 pos
+= snprintf(alcAllDeviceList
+pos
, sizeof(alcAllDeviceList
)-pos
-1, "%s", name
) + 1;
341 ALCchar
*AppendCaptureDeviceList(char *name
)
344 ALCchar
*ret
= alcCaptureDeviceList
+pos
;
345 if(pos
>= sizeof(alcCaptureDeviceList
))
347 AL_PRINT("Not enough room to add %s!\n", name
);
348 return alcCaptureDeviceList
+ sizeof(alcCaptureDeviceList
) - 1;
350 pos
+= snprintf(alcCaptureDeviceList
+pos
, sizeof(alcCaptureDeviceList
)-pos
-1, "%s", name
) + 1;
357 Check pContext is a valid Context pointer
359 static ALCboolean
IsContext(ALCcontext
*pContext
)
361 ALCcontext
*pTempContext
;
363 pTempContext
= g_pContextList
;
364 while (pTempContext
&& pTempContext
!= pContext
)
365 pTempContext
= pTempContext
->next
;
367 return (pTempContext
? ALC_TRUE
: ALC_FALSE
);
374 Store latest ALC Error
376 ALCvoid
SetALCError(ALenum errorCode
)
378 g_eLastContextError
= errorCode
;
387 ALCvoid
SuspendContext(ALCcontext
*pContext
)
390 EnterCriticalSection(&g_csMutex
);
399 ALCvoid
ProcessContext(ALCcontext
*pContext
)
402 LeaveCriticalSection(&g_csMutex
);
409 Initialize Context variables
411 static ALvoid
InitContext(ALCcontext
*pContext
)
415 //Initialise listener
416 pContext
->Listener
.Gain
= 1.0f
;
417 pContext
->Listener
.MetersPerUnit
= 1.0f
;
418 pContext
->Listener
.Position
[0] = 0.0f
;
419 pContext
->Listener
.Position
[1] = 0.0f
;
420 pContext
->Listener
.Position
[2] = 0.0f
;
421 pContext
->Listener
.Velocity
[0] = 0.0f
;
422 pContext
->Listener
.Velocity
[1] = 0.0f
;
423 pContext
->Listener
.Velocity
[2] = 0.0f
;
424 pContext
->Listener
.Forward
[0] = 0.0f
;
425 pContext
->Listener
.Forward
[1] = 0.0f
;
426 pContext
->Listener
.Forward
[2] = -1.0f
;
427 pContext
->Listener
.Up
[0] = 0.0f
;
428 pContext
->Listener
.Up
[1] = 1.0f
;
429 pContext
->Listener
.Up
[2] = 0.0f
;
432 pContext
->LastError
= AL_NO_ERROR
;
433 pContext
->InUse
= AL_FALSE
;
436 pContext
->Frequency
= pContext
->Device
->Frequency
;
439 pContext
->DistanceModel
= AL_INVERSE_DISTANCE_CLAMPED
;
440 pContext
->DopplerFactor
= 1.0f
;
441 pContext
->DopplerVelocity
= 1.0f
;
442 pContext
->flSpeedOfSound
= SPEEDOFSOUNDMETRESPERSEC
;
444 pContext
->lNumStereoSources
= 1;
445 pContext
->lNumMonoSources
= pContext
->Device
->MaxNoOfSources
- pContext
->lNumStereoSources
;
447 pContext
->ExtensionList
= "AL_EXTX_buffer_sub_data AL_EXT_EXPONENT_DISTANCE AL_EXT_FLOAT32 AL_EXT_IMA4 AL_EXT_LINEAR_DISTANCE AL_EXT_MCFORMATS AL_EXT_OFFSET AL_LOKI_quadriphonic";
449 level
= GetConfigValueInt(NULL
, "cf_level", 0);
450 if(level
> 0 && level
<= 6)
452 pContext
->bs2b
= calloc(1, sizeof(*pContext
->bs2b
));
453 bs2b_set_srate(pContext
->bs2b
, pContext
->Frequency
);
454 bs2b_set_level(pContext
->bs2b
, level
);
462 Clean up Context, destroy any remaining Sources
464 static ALCvoid
ExitContext(ALCcontext
*pContext
)
467 pContext
->LastError
= AL_NO_ERROR
;
468 pContext
->InUse
= AL_FALSE
;
470 free(pContext
->bs2b
);
471 pContext
->bs2b
= NULL
;
474 ///////////////////////////////////////////////////////
477 ///////////////////////////////////////////////////////
478 // ALC Functions calls
481 // This should probably move to another c file but for now ...
482 ALCAPI ALCdevice
* ALCAPIENTRY
alcCaptureOpenDevice(const ALCchar
*deviceName
, ALCuint frequency
, ALCenum format
, ALCsizei SampleSize
)
484 ALCboolean DeviceFound
= ALC_FALSE
;
485 ALCdevice
*pDevice
= NULL
;
492 SetALCError(ALC_INVALID_VALUE
);
496 if(deviceName
&& !deviceName
[0])
499 pDevice
= malloc(sizeof(ALCdevice
));
502 //Initialise device structure
503 memset(pDevice
, 0, sizeof(ALCdevice
));
506 pDevice
->IsCaptureDevice
= AL_TRUE
;
508 pDevice
->Frequency
= frequency
;
509 pDevice
->Format
= format
;
511 for(i
= 0;BackendList
[i
].Init
;i
++)
513 pDevice
->Funcs
= &BackendList
[i
].Funcs
;
514 if(ALCdevice_OpenCapture(pDevice
, deviceName
, frequency
, format
, SampleSize
))
516 SuspendContext(NULL
);
517 pDevice
->next
= g_pDeviceList
;
518 g_pDeviceList
= pDevice
;
520 ProcessContext(NULL
);
522 DeviceFound
= ALC_TRUE
;
529 SetALCError(ALC_INVALID_VALUE
);
535 SetALCError(ALC_OUT_OF_MEMORY
);
540 ALCAPI ALCboolean ALCAPIENTRY
alcCaptureCloseDevice(ALCdevice
*pDevice
)
542 ALCboolean bReturn
= ALC_FALSE
;
545 if ((pDevice
)&&(pDevice
->IsCaptureDevice
))
547 SuspendContext(NULL
);
549 list
= &g_pDeviceList
;
550 while(*list
!= pDevice
)
551 list
= &(*list
)->next
;
553 *list
= (*list
)->next
;
556 ProcessContext(NULL
);
558 ALCdevice_CloseCapture(pDevice
);
564 SetALCError(ALC_INVALID_DEVICE
);
569 ALCAPI
void ALCAPIENTRY
alcCaptureStart(ALCdevice
*pDevice
)
571 if ((pDevice
)&&(pDevice
->IsCaptureDevice
))
572 ALCdevice_StartCapture(pDevice
);
574 SetALCError(ALC_INVALID_DEVICE
);
577 ALCAPI
void ALCAPIENTRY
alcCaptureStop(ALCdevice
*pDevice
)
579 if ((pDevice
)&&(pDevice
->IsCaptureDevice
))
580 ALCdevice_StopCapture(pDevice
);
582 SetALCError(ALC_INVALID_DEVICE
);
585 ALCAPI
void ALCAPIENTRY
alcCaptureSamples(ALCdevice
*pDevice
, ALCvoid
*pBuffer
, ALCsizei lSamples
)
587 if ((pDevice
) && (pDevice
->IsCaptureDevice
))
588 ALCdevice_CaptureSamples(pDevice
, pBuffer
, lSamples
);
590 SetALCError(ALC_INVALID_DEVICE
);
596 Return last ALC generated error code
598 ALCAPI ALCenum ALCAPIENTRY
alcGetError(ALCdevice
*device
)
604 errorCode
= g_eLastContextError
;
605 g_eLastContextError
= ALC_NO_ERROR
;
615 ALCAPI ALCvoid ALCAPIENTRY
alcSuspendContext(ALCcontext
*pContext
)
617 // Not a lot happens here !
627 ALCAPI ALCvoid ALCAPIENTRY
alcProcessContext(ALCcontext
*pContext
)
629 // Not a lot happens here !
637 Returns information about the Device, and error strings
639 ALCAPI
const ALCchar
* ALCAPIENTRY
alcGetString(ALCdevice
*pDevice
,ALCenum param
)
641 const ALCchar
*value
= NULL
;
651 case ALC_INVALID_ENUM
:
652 value
= alcErrInvalidEnum
;
655 case ALC_INVALID_VALUE
:
656 value
= alcErrInvalidValue
;
659 case ALC_INVALID_DEVICE
:
660 value
= alcErrInvalidDevice
;
663 case ALC_INVALID_CONTEXT
:
664 value
= alcErrInvalidContext
;
667 case ALC_OUT_OF_MEMORY
:
668 value
= alcErrOutOfMemory
;
671 case ALC_DEFAULT_DEVICE_SPECIFIER
:
672 value
= alcDefaultDeviceSpecifier
;
675 case ALC_DEVICE_SPECIFIER
:
677 value
= pDevice
->szDeviceName
;
679 value
= alcDeviceList
;
682 case ALC_ALL_DEVICES_SPECIFIER
:
683 value
= alcAllDeviceList
;
686 case ALC_DEFAULT_ALL_DEVICES_SPECIFIER
:
687 value
= alcDefaultAllDeviceSpecifier
;
690 case ALC_CAPTURE_DEVICE_SPECIFIER
:
692 value
= pDevice
->szDeviceName
;
694 value
= alcCaptureDeviceList
;
697 case ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER
:
698 value
= alcCaptureDefaultDeviceSpecifier
;
702 value
= alcExtensionList
;
706 SetALCError(ALC_INVALID_ENUM
);
717 Returns information about the Device and the version of Open AL
719 ALCAPI ALCvoid ALCAPIENTRY
alcGetIntegerv(ALCdevice
*device
,ALCenum param
,ALsizei size
,ALCint
*data
)
723 if ((device
)&&(device
->IsCaptureDevice
))
725 SuspendContext(NULL
);
730 case ALC_CAPTURE_SAMPLES
:
731 if ((size
) && (data
))
732 *data
= ALCdevice_AvailableSamples(device
);
734 SetALCError(ALC_INVALID_VALUE
);
738 SetALCError(ALC_INVALID_ENUM
);
742 ProcessContext(NULL
);
751 case ALC_MAJOR_VERSION
:
753 SetALCError(ALC_INVALID_VALUE
);
755 *data
= alcMajorVersion
;
758 case ALC_MINOR_VERSION
:
760 SetALCError(ALC_INVALID_VALUE
);
762 *data
= alcMinorVersion
;
765 case ALC_EFX_MAJOR_VERSION
:
767 SetALCError(ALC_INVALID_VALUE
);
769 *data
= alcEFXMajorVersion
;
772 case ALC_EFX_MINOR_VERSION
:
774 SetALCError(ALC_INVALID_VALUE
);
776 *data
= alcEFXMinorVersion
;
779 case ALC_MAX_AUXILIARY_SENDS
:
781 SetALCError(ALC_INVALID_VALUE
);
786 case ALC_ATTRIBUTES_SIZE
:
788 SetALCError(ALC_INVALID_DEVICE
);
790 SetALCError(ALC_INVALID_VALUE
);
795 case ALC_ALL_ATTRIBUTES
:
797 SetALCError(ALC_INVALID_DEVICE
);
799 SetALCError(ALC_INVALID_VALUE
);
804 data
[i
++] = ALC_FREQUENCY
;
805 data
[i
++] = device
->Frequency
;
807 data
[i
++] = ALC_REFRESH
;
808 data
[i
++] = device
->Frequency
/ device
->UpdateSize
;
810 data
[i
++] = ALC_SYNC
;
811 data
[i
++] = ALC_FALSE
;
813 SuspendContext(NULL
);
814 if(device
->Context
&& size
>= 12)
816 data
[i
++] = ALC_MONO_SOURCES
;
817 data
[i
++] = device
->Context
->lNumMonoSources
;
819 data
[i
++] = ALC_STEREO_SOURCES
;
820 data
[i
++] = device
->Context
->lNumStereoSources
;
822 data
[i
++] = ALC_MAX_AUXILIARY_SENDS
;
823 data
[i
++] = MAX_SENDS
;
825 ProcessContext(NULL
);
833 SetALCError(ALC_INVALID_DEVICE
);
835 SetALCError(ALC_INVALID_VALUE
);
837 *data
= device
->Frequency
;
842 SetALCError(ALC_INVALID_DEVICE
);
844 SetALCError(ALC_INVALID_VALUE
);
846 *data
= device
->Frequency
/ device
->UpdateSize
;
851 SetALCError(ALC_INVALID_DEVICE
);
853 SetALCError(ALC_INVALID_VALUE
);
858 case ALC_MONO_SOURCES
:
859 if(!device
|| !device
->Context
)
860 SetALCError(ALC_INVALID_DEVICE
);
862 SetALCError(ALC_INVALID_VALUE
);
864 *data
= device
->Context
->lNumMonoSources
;
867 case ALC_STEREO_SOURCES
:
868 if(!device
|| !device
->Context
)
869 SetALCError(ALC_INVALID_DEVICE
);
871 SetALCError(ALC_INVALID_VALUE
);
873 *data
= device
->Context
->lNumStereoSources
;
877 SetALCError(ALC_INVALID_ENUM
);
882 SetALCError(ALC_INVALID_VALUE
);
890 alcIsExtensionPresent
892 Determines if there is support for a particular extension
894 ALCAPI ALCboolean ALCAPIENTRY
alcIsExtensionPresent(ALCdevice
*device
, const ALCchar
*extName
)
896 ALCboolean bResult
= ALC_FALSE
;
905 len
= strlen(extName
);
906 ptr
= alcExtensionList
;
909 if(strncasecmp(ptr
, extName
, len
) == 0 &&
910 (ptr
[len
] == '\0' || isspace(ptr
[len
])))
915 if((ptr
=strchr(ptr
, ' ')) != NULL
)
919 } while(isspace(*ptr
));
924 SetALCError(ALC_INVALID_VALUE
);
933 Retrieves the function address for a particular extension function
935 ALCAPI ALCvoid
* ALCAPIENTRY
alcGetProcAddress(ALCdevice
*device
, const ALCchar
*funcName
)
937 ALCvoid
*pFunction
= NULL
;
944 while(alcFunctions
[i
].funcName
&&
945 strcmp(alcFunctions
[i
].funcName
,funcName
) != 0)
947 pFunction
= alcFunctions
[i
].address
;
950 SetALCError(ALC_INVALID_VALUE
);
959 Get the value for a particular ALC Enumerated Value
961 ALCAPI ALCenum ALCAPIENTRY
alcGetEnumValue(ALCdevice
*device
, const ALCchar
*enumName
)
968 while ((enumeration
[i
].enumName
)&&(strcmp(enumeration
[i
].enumName
,enumName
)))
970 val
= enumeration
[i
].value
;
972 if(!enumeration
[i
].enumName
)
973 SetALCError(ALC_INVALID_VALUE
);
982 Create and attach a Context to a particular Device.
984 ALCAPI ALCcontext
* ALCAPIENTRY
alcCreateContext(ALCdevice
*device
, const ALCint
*attrList
)
986 ALCcontext
*ALContext
= NULL
;
987 ALuint ulAttributeIndex
, ulRequestedStereoSources
;
989 if ((device
)&&(!device
->IsCaptureDevice
))
991 // Reset Context Last Error code
992 g_eLastContextError
= ALC_NO_ERROR
;
994 // Current implementation only allows one Context per Device
997 ALContext
= calloc(1, sizeof(ALCcontext
));
1000 SetALCError(ALC_OUT_OF_MEMORY
);
1004 ALContext
->Device
= device
;
1005 InitContext(ALContext
);
1007 device
->Context
= ALContext
;
1009 SuspendContext(NULL
);
1011 ALContext
->next
= g_pContextList
;
1012 g_pContextList
= ALContext
;
1015 ProcessContext(NULL
);
1017 // Check for Voice Count attributes
1020 ulAttributeIndex
= 0;
1021 while ((ulAttributeIndex
< 10) && (attrList
[ulAttributeIndex
]))
1023 if (attrList
[ulAttributeIndex
] == ALC_STEREO_SOURCES
)
1025 ulRequestedStereoSources
= attrList
[ulAttributeIndex
+ 1];
1027 if (ulRequestedStereoSources
> ALContext
->Device
->MaxNoOfSources
)
1028 ulRequestedStereoSources
= ALContext
->Device
->MaxNoOfSources
;
1030 ALContext
->lNumStereoSources
= ulRequestedStereoSources
;
1031 ALContext
->lNumMonoSources
= ALContext
->Device
->MaxNoOfSources
- ALContext
->lNumStereoSources
;
1035 ulAttributeIndex
+= 2;
1041 SetALCError(ALC_INVALID_VALUE
);
1046 SetALCError(ALC_INVALID_DEVICE
);
1057 ALCAPI ALCvoid ALCAPIENTRY
alcDestroyContext(ALCcontext
*context
)
1063 // Lock context list
1064 SuspendContext(NULL
);
1066 if (IsContext(context
))
1069 SuspendContext(context
);
1071 ReleaseALSources(context
);
1072 ReleaseALAuxiliaryEffectSlots(context
);
1074 context
->Device
->Context
= NULL
;
1076 list
= &g_pContextList
;
1077 while(*list
!= context
)
1078 list
= &(*list
)->next
;
1080 *list
= (*list
)->next
;
1084 ProcessContext(context
);
1086 ExitContext(context
);
1088 // Free memory (MUST do this after ProcessContext)
1089 memset(context
, 0, sizeof(ALCcontext
));
1093 SetALCError(ALC_INVALID_CONTEXT
);
1095 ProcessContext(NULL
);
1100 alcGetCurrentContext
1102 Returns the currently active Context
1104 ALCAPI ALCcontext
* ALCAPIENTRY
alcGetCurrentContext(ALCvoid
)
1106 ALCcontext
*pContext
= NULL
;
1110 SuspendContext(NULL
);
1112 pContext
= g_pContextList
;
1113 while ((pContext
) && (!pContext
->InUse
))
1114 pContext
= pContext
->next
;
1116 ProcessContext(NULL
);
1123 alcGetContextsDevice
1125 Returns the Device that a particular Context is attached to
1127 ALCAPI ALCdevice
* ALCAPIENTRY
alcGetContextsDevice(ALCcontext
*pContext
)
1129 ALCdevice
*pDevice
= NULL
;
1133 SuspendContext(NULL
);
1134 if (IsContext(pContext
))
1135 pDevice
= pContext
->Device
;
1137 SetALCError(ALC_INVALID_CONTEXT
);
1138 ProcessContext(NULL
);
1145 alcMakeContextCurrent
1147 Makes the given Context the active Context
1149 ALCAPI ALCboolean ALCAPIENTRY
alcMakeContextCurrent(ALCcontext
*context
)
1151 ALCcontext
*ALContext
;
1152 ALboolean bReturn
= AL_TRUE
;
1156 SuspendContext(NULL
);
1158 // context must be a valid Context or NULL
1159 if ((IsContext(context
)) || (context
== NULL
))
1161 if ((ALContext
=alcGetCurrentContext()))
1163 SuspendContext(ALContext
);
1164 ALContext
->InUse
=AL_FALSE
;
1165 ProcessContext(ALContext
);
1168 if ((ALContext
=context
) && (ALContext
->Device
))
1170 SuspendContext(ALContext
);
1171 ALContext
->InUse
=AL_TRUE
;
1172 ProcessContext(ALContext
);
1177 SetALCError(ALC_INVALID_CONTEXT
);
1181 ProcessContext(NULL
);
1190 Open the Device specified.
1192 ALCAPI ALCdevice
* ALCAPIENTRY
alcOpenDevice(const ALCchar
*deviceName
)
1194 ALboolean bDeviceFound
= AL_FALSE
;
1200 if(deviceName
&& !deviceName
[0])
1203 device
= malloc(sizeof(ALCdevice
));
1208 //Initialise device structure
1209 memset(device
, 0, sizeof(ALCdevice
));
1212 device
->IsCaptureDevice
= AL_FALSE
;
1215 device
->Frequency
= GetConfigValueInt(NULL
, "frequency", SWMIXER_OUTPUT_RATE
);
1216 if((ALint
)device
->Frequency
<= 0)
1217 device
->Frequency
= SWMIXER_OUTPUT_RATE
;
1219 fmt
= GetConfigValue(NULL
, "format", "AL_FORMAT_STEREO16");
1221 device
->Format
= alGetEnumValue(fmt
);
1223 if(!aluChannelsFromFormat(device
->Format
))
1224 device
->Format
= AL_FORMAT_STEREO16
;
1226 device
->UpdateSize
= GetConfigValueInt(NULL
, "refresh", 4096);
1227 if((ALint
)device
->UpdateSize
<= 0)
1228 device
->UpdateSize
= 4096;
1230 device
->MaxNoOfSources
= GetConfigValueInt(NULL
, "sources", 256);
1231 if((ALint
)device
->MaxNoOfSources
<= 0)
1232 device
->MaxNoOfSources
= 256;
1234 // Find a playback device to open
1235 for(i
= 0;BackendList
[i
].Init
;i
++)
1237 device
->Funcs
= &BackendList
[i
].Funcs
;
1238 if(ALCdevice_OpenPlayback(device
, deviceName
))
1240 SuspendContext(NULL
);
1241 device
->next
= g_pDeviceList
;
1242 g_pDeviceList
= device
;
1244 ProcessContext(NULL
);
1246 bDeviceFound
= AL_TRUE
;
1253 // No suitable output device found
1254 SetALCError(ALC_INVALID_VALUE
);
1260 SetALCError(ALC_OUT_OF_MEMORY
);
1269 Close the specified Device
1271 ALCAPI ALCboolean ALCAPIENTRY
alcCloseDevice(ALCdevice
*pDevice
)
1273 ALCboolean bReturn
= ALC_FALSE
;
1276 if ((pDevice
)&&(!pDevice
->IsCaptureDevice
))
1278 SuspendContext(NULL
);
1280 list
= &g_pDeviceList
;
1281 while(*list
!= pDevice
)
1282 list
= &(*list
)->next
;
1284 *list
= (*list
)->next
;
1287 ProcessContext(NULL
);
1289 if(pDevice
->Context
)
1292 AL_PRINT("alcCloseDevice(): destroying 1 Context\n");
1294 alcDestroyContext(pDevice
->Context
);
1296 ALCdevice_ClosePlayback(pDevice
);
1298 //Release device structure
1299 memset(pDevice
, 0, sizeof(ALCdevice
));
1305 SetALCError(ALC_INVALID_DEVICE
);
1311 ALCvoid
ReleaseALC(ALCvoid
)
1314 if(g_ulDeviceCount
> 0)
1315 AL_PRINT("exit(): closing %u Device%s\n", g_ulDeviceCount
, (g_ulDeviceCount
>1)?"s":"");
1318 while(g_pDeviceList
)
1320 if(g_pDeviceList
->IsCaptureDevice
)
1321 alcCaptureCloseDevice(g_pDeviceList
);
1323 alcCloseDevice(g_pDeviceList
);
1327 ///////////////////////////////////////////////////////