Simplify setting a fontsound link
[openal-soft.git] / OpenAL32 / alExtension.c
blobfc23a932c1f532962797adc2d6b7b0dc820c371f
1 /**
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 #include "config.h"
23 #include <stdlib.h>
24 #include <string.h>
25 #include <ctype.h>
27 #include "alError.h"
28 #include "alMain.h"
29 #include "alFilter.h"
30 #include "alEffect.h"
31 #include "alAuxEffectSlot.h"
32 #include "alSource.h"
33 #include "alBuffer.h"
34 #include "AL/al.h"
35 #include "AL/alc.h"
38 const struct EffectList EffectList[] = {
39 { "eaxreverb", EAXREVERB, "AL_EFFECT_EAXREVERB", AL_EFFECT_EAXREVERB },
40 { "reverb", REVERB, "AL_EFFECT_REVERB", AL_EFFECT_REVERB },
41 { "autowah", AUTOWAH, "AL_EFFECT_AUTOWAH", AL_EFFECT_AUTOWAH },
42 { "chorus", CHORUS, "AL_EFFECT_CHORUS", AL_EFFECT_CHORUS },
43 { "compressor", COMPRESSOR, "AL_EFFECT_COMPRESSOR", AL_EFFECT_COMPRESSOR },
44 { "distortion", DISTORTION, "AL_EFFECT_DISTORTION", AL_EFFECT_DISTORTION },
45 { "echo", ECHO, "AL_EFFECT_ECHO", AL_EFFECT_ECHO },
46 { "equalizer", EQUALIZER, "AL_EFFECT_EQUALIZER", AL_EFFECT_EQUALIZER },
47 { "flanger", FLANGER, "AL_EFFECT_FLANGER", AL_EFFECT_FLANGER },
48 { "modulator", MODULATOR, "AL_EFFECT_RING_MODULATOR", AL_EFFECT_RING_MODULATOR },
49 { "dedicated", DEDICATED, "AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT", AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT },
50 { "dedicated", DEDICATED, "AL_EFFECT_DEDICATED_DIALOGUE", AL_EFFECT_DEDICATED_DIALOGUE },
51 { NULL, 0, NULL, (ALenum)0 }
55 AL_API ALboolean AL_APIENTRY alIsExtensionPresent(const ALchar *extName)
57 ALboolean ret = AL_FALSE;
58 ALCcontext *context;
59 const char *ptr;
60 size_t len;
62 context = GetContextRef();
63 if(!context) return AL_FALSE;
65 if(!(extName))
66 SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
68 len = strlen(extName);
69 ptr = context->ExtensionList;
70 while(ptr && *ptr)
72 if(strncasecmp(ptr, extName, len) == 0 &&
73 (ptr[len] == '\0' || isspace(ptr[len])))
75 ret = AL_TRUE;
76 break;
78 if((ptr=strchr(ptr, ' ')) != NULL)
80 do {
81 ++ptr;
82 } while(isspace(*ptr));
86 done:
87 ALCcontext_DecRef(context);
88 return ret;
92 AL_API ALvoid* AL_APIENTRY alGetProcAddress(const ALchar *funcName)
94 if(!funcName)
95 return NULL;
96 return alcGetProcAddress(NULL, funcName);
99 AL_API ALenum AL_APIENTRY alGetEnumValue(const ALchar *enumName)
101 if(!enumName)
102 return (ALenum)0;
103 return alcGetEnumValue(NULL, enumName);