123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- /**
- * OpenAL cross platform audio library
- * Copyright (C) 1999-2007 by authors.
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- * Or go to http://www.gnu.org/copyleft/lgpl.html
- */
- #include "config.h"
- #include <stdlib.h>
- #include <math.h>
- #include "AL/al.h"
- #include "AL/alc.h"
- #include "alMain.h"
- #include "alAuxEffectSlot.h"
- #include "alThunk.h"
- #include "alError.h"
- #include "alSource.h"
- static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *EffectSlot, ALeffect *effect);
- #define LookupEffectSlot(m, k) ((ALeffectslot*)LookupUIntMapKey(&(m), (k)))
- #define LookupEffect(m, k) ((ALeffect*)LookupUIntMapKey(&(m), (k)))
- AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots)
- {
- ALCcontext *Context;
- ALsizei i=0, j;
- Context = GetContextSuspended();
- if(!Context) return;
- if(n > 0)
- {
- ALCdevice *Device = Context->Device;
- if(Context->EffectSlotMap.size+n <= (ALsizei)Device->AuxiliaryEffectSlotMax)
- {
- // Check that enough memory has been allocted in the 'effectslots' array for n Effect Slots
- if(!IsBadWritePtr((void*)effectslots, n * sizeof(ALuint)))
- {
- ALenum err;
- while(i < n)
- {
- ALeffectslot *slot = calloc(1, sizeof(ALeffectslot));
- if(!slot || !(slot->EffectState=NoneCreate()))
- {
- free(slot);
- // We must have run out or memory
- alSetError(Context, AL_OUT_OF_MEMORY);
- alDeleteAuxiliaryEffectSlots(i, effectslots);
- break;
- }
- slot->effectslot = (ALuint)ALTHUNK_ADDENTRY(slot);
- err = InsertUIntMapEntry(&Context->EffectSlotMap,
- slot->effectslot, slot);
- if(err != AL_NO_ERROR)
- {
- ALTHUNK_REMOVEENTRY(slot->effectslot);
- ALEffect_Destroy(slot->EffectState);
- free(slot);
- alSetError(Context, err);
- alDeleteAuxiliaryEffectSlots(i, effectslots);
- break;
- }
- effectslots[i++] = slot->effectslot;
- slot->Gain = 1.0;
- slot->AuxSendAuto = AL_TRUE;
- for(j = 0;j < BUFFERSIZE;j++)
- slot->WetBuffer[j] = 0.0f;
- slot->refcount = 0;
- }
- }
- }
- else
- alSetError(Context, AL_INVALID_OPERATION);
- }
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alDeleteAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots)
- {
- ALCcontext *Context;
- ALeffectslot *EffectSlot;
- ALsizei i;
- Context = GetContextSuspended();
- if(!Context) return;
- if (n >= 0)
- {
- // Check that all effectslots are valid
- for (i = 0; i < n; i++)
- {
- if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslots[i])) == NULL)
- {
- alSetError(Context, AL_INVALID_NAME);
- break;
- }
- else
- {
- if(EffectSlot->refcount > 0)
- {
- alSetError(Context, AL_INVALID_NAME);
- break;
- }
- }
- }
- if (i == n)
- {
- // All effectslots are valid
- for (i = 0; i < n; i++)
- {
- // Recheck that the effectslot is valid, because there could be duplicated names
- if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslots[i])) != NULL)
- {
- ALEffect_Destroy(EffectSlot->EffectState);
- RemoveUIntMapKey(&Context->EffectSlotMap, EffectSlot->effectslot);
- ALTHUNK_REMOVEENTRY(EffectSlot->effectslot);
- memset(EffectSlot, 0, sizeof(ALeffectslot));
- free(EffectSlot);
- }
- }
- }
- }
- else
- alSetError(Context, AL_INVALID_VALUE);
- ProcessContext(Context);
- }
- AL_API ALboolean AL_APIENTRY alIsAuxiliaryEffectSlot(ALuint effectslot)
- {
- ALCcontext *Context;
- ALboolean result;
- Context = GetContextSuspended();
- if(!Context) return AL_FALSE;
- result = (LookupEffectSlot(Context->EffectSlotMap, effectslot) ?
- AL_TRUE : AL_FALSE);
- ProcessContext(Context);
- return result;
- }
- AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint iValue)
- {
- ALCcontext *Context;
- ALboolean updateSources = AL_FALSE;
- ALeffectslot *EffectSlot;
- Context = GetContextSuspended();
- if(!Context) return;
- if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_EFFECT: {
- ALeffect *effect = NULL;
- if(iValue == 0 ||
- (effect=LookupEffect(Context->Device->EffectMap, iValue)) != NULL)
- {
- InitializeEffect(Context, EffectSlot, effect);
- updateSources = AL_TRUE;
- }
- else
- alSetError(Context, AL_INVALID_VALUE);
- } break;
- case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
- if(iValue == AL_TRUE || iValue == AL_FALSE)
- {
- EffectSlot->AuxSendAuto = iValue;
- updateSources = AL_TRUE;
- }
- else
- alSetError(Context, AL_INVALID_VALUE);
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- // Force updating the sources that use this slot, since it affects the
- // sending parameters
- if(updateSources)
- {
- ALsizei pos;
- for(pos = 0;pos < Context->SourceMap.size;pos++)
- {
- ALsource *source = Context->SourceMap.array[pos].value;
- ALuint i;
- for(i = 0;i < MAX_SENDS;i++)
- {
- if(!source->Send[i].Slot ||
- source->Send[i].Slot->effectslot != effectslot)
- continue;
- source->NeedsUpdate = AL_TRUE;
- break;
- }
- }
- }
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues)
- {
- ALCcontext *Context;
- Context = GetContextSuspended();
- if(!Context) return;
- if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_EFFECT:
- case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
- alAuxiliaryEffectSloti(effectslot, param, piValues[0]);
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat flValue)
- {
- ALCcontext *Context;
- ALeffectslot *EffectSlot;
- Context = GetContextSuspended();
- if(!Context) return;
- if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_GAIN:
- if(flValue >= 0.0f && flValue <= 1.0f)
- EffectSlot->Gain = flValue;
- else
- alSetError(Context, AL_INVALID_VALUE);
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues)
- {
- ALCcontext *Context;
- Context = GetContextSuspended();
- if(!Context) return;
- if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_GAIN:
- alAuxiliaryEffectSlotf(effectslot, param, pflValues[0]);
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint *piValue)
- {
- ALCcontext *Context;
- ALeffectslot *EffectSlot;
- Context = GetContextSuspended();
- if(!Context) return;
- if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_EFFECT:
- *piValue = EffectSlot->effect.effect;
- break;
- case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
- *piValue = EffectSlot->AuxSendAuto;
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues)
- {
- ALCcontext *Context;
- Context = GetContextSuspended();
- if(!Context) return;
- if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_EFFECT:
- case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
- alGetAuxiliaryEffectSloti(effectslot, param, piValues);
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat *pflValue)
- {
- ALCcontext *Context;
- ALeffectslot *EffectSlot;
- Context = GetContextSuspended();
- if(!Context) return;
- if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_GAIN:
- *pflValue = EffectSlot->Gain;
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues)
- {
- ALCcontext *Context;
- Context = GetContextSuspended();
- if(!Context) return;
- if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
- {
- switch(param)
- {
- case AL_EFFECTSLOT_GAIN:
- alGetAuxiliaryEffectSlotf(effectslot, param, pflValues);
- break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- else
- alSetError(Context, AL_INVALID_NAME);
- ProcessContext(Context);
- }
- static ALvoid NoneDestroy(ALeffectState *State)
- { free(State); }
- static ALboolean NoneDeviceUpdate(ALeffectState *State, ALCdevice *Device)
- {
- return AL_TRUE;
- (void)State;
- (void)Device;
- }
- static ALvoid NoneUpdate(ALeffectState *State, ALCcontext *Context, const ALeffect *Effect)
- {
- (void)State;
- (void)Context;
- (void)Effect;
- }
- static ALvoid NoneProcess(ALeffectState *State, const ALeffectslot *Slot, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[OUTPUTCHANNELS])
- {
- (void)State;
- (void)Slot;
- (void)SamplesToDo;
- (void)SamplesIn;
- (void)SamplesOut;
- }
- ALeffectState *NoneCreate(void)
- {
- ALeffectState *state;
- state = calloc(1, sizeof(*state));
- if(!state)
- return NULL;
- state->Destroy = NoneDestroy;
- state->DeviceUpdate = NoneDeviceUpdate;
- state->Update = NoneUpdate;
- state->Process = NoneProcess;
- return state;
- }
- static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *EffectSlot, ALeffect *effect)
- {
- if(EffectSlot->effect.type != (effect?effect->type:AL_EFFECT_NULL))
- {
- ALeffectState *NewState = NULL;
- if(!effect || effect->type == AL_EFFECT_NULL)
- NewState = NoneCreate();
- else if(effect->type == AL_EFFECT_EAXREVERB)
- NewState = EAXVerbCreate();
- else if(effect->type == AL_EFFECT_REVERB)
- NewState = VerbCreate();
- else if(effect->type == AL_EFFECT_ECHO)
- NewState = EchoCreate();
- else if(effect->type == AL_EFFECT_RING_MODULATOR)
- NewState = ModulatorCreate();
- /* No new state? An error occured.. */
- if(NewState == NULL ||
- ALEffect_DeviceUpdate(NewState, Context->Device) == AL_FALSE)
- {
- if(NewState)
- ALEffect_Destroy(NewState);
- alSetError(Context, AL_OUT_OF_MEMORY);
- return;
- }
- if(EffectSlot->EffectState)
- ALEffect_Destroy(EffectSlot->EffectState);
- EffectSlot->EffectState = NewState;
- }
- if(!effect)
- memset(&EffectSlot->effect, 0, sizeof(EffectSlot->effect));
- else
- memcpy(&EffectSlot->effect, effect, sizeof(*effect));
- ALEffect_Update(EffectSlot->EffectState, Context, effect);
- }
- ALvoid ReleaseALAuxiliaryEffectSlots(ALCcontext *Context)
- {
- ALsizei pos;
- for(pos = 0;pos < Context->EffectSlotMap.size;pos++)
- {
- ALeffectslot *temp = Context->EffectSlotMap.array[pos].value;
- Context->EffectSlotMap.array[pos].value = NULL;
- // Release effectslot structure
- ALEffect_Destroy(temp->EffectState);
- ALTHUNK_REMOVEENTRY(temp->effectslot);
- memset(temp, 0, sizeof(ALeffectslot));
- free(temp);
- }
- }
|