2007-12-18 01:43:19 +00:00
|
|
|
/**
|
|
|
|
* 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"
|
|
|
|
|
2008-01-16 22:09:04 +00:00
|
|
|
#include <stdlib.h>
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
#include <math.h>
|
2008-01-16 22:09:04 +00:00
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "alMain.h"
|
|
|
|
#include "alAuxEffectSlot.h"
|
2008-01-01 03:34:52 +00:00
|
|
|
#include "alThunk.h"
|
|
|
|
#include "alError.h"
|
2009-11-26 00:21:47 +00:00
|
|
|
#include "alSource.h"
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
|
2010-03-26 07:41:27 +00:00
|
|
|
static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *EffectSlot, ALeffect *effect);
|
2011-08-31 03:13:42 +00:00
|
|
|
static ALenum ResizeEffectSlotArray(ALCcontext *Context, ALsizei count);
|
|
|
|
static ALvoid RemoveEffectSlotArray(ALCcontext *Context, ALeffectslot *val);
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
#define LookupEffectSlot(m, k) ((ALeffectslot*)LookupUIntMapKey(&(m), (k)))
|
2011-08-31 03:49:49 +00:00
|
|
|
#define RemoveEffectSlot(m, k) ((ALeffectslot*)PopUIntMapValue(&(m), (k)))
|
2010-05-19 00:41:06 +00:00
|
|
|
#define LookupEffect(m, k) ((ALeffect*)LookupUIntMapKey(&(m), (k)))
|
2010-05-12 09:20:14 +00:00
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2010-09-21 22:12:08 +00:00
|
|
|
ALCdevice *Device;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-08-31 06:28:38 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-09-21 22:12:08 +00:00
|
|
|
Device = Context->Device;
|
|
|
|
if(n < 0 || IsBadWritePtr((void*)effectslots, n * sizeof(ALuint)))
|
|
|
|
alSetError(Context, AL_INVALID_VALUE);
|
2010-09-21 21:41:43 +00:00
|
|
|
else
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-09-21 22:12:08 +00:00
|
|
|
ALenum err;
|
|
|
|
ALsizei i, j;
|
2009-06-07 21:53:22 +00:00
|
|
|
|
2011-08-31 03:13:42 +00:00
|
|
|
err = ResizeEffectSlotArray(Context, n);
|
|
|
|
if(err != AL_NO_ERROR)
|
|
|
|
{
|
|
|
|
alSetError(Context, err);
|
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0;i < n;i++)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-09-21 22:12:08 +00:00
|
|
|
ALeffectslot *slot = calloc(1, sizeof(ALeffectslot));
|
|
|
|
if(!slot || !(slot->EffectState=NoneCreate()))
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-09-21 22:12:08 +00:00
|
|
|
free(slot);
|
|
|
|
// We must have run out or memory
|
|
|
|
alSetError(Context, AL_OUT_OF_MEMORY);
|
|
|
|
alDeleteAuxiliaryEffectSlots(i, effectslots);
|
|
|
|
break;
|
|
|
|
}
|
2007-12-18 21:42:13 +00:00
|
|
|
|
2011-08-31 03:13:42 +00:00
|
|
|
slot->Gain = 1.0;
|
|
|
|
slot->AuxSendAuto = AL_TRUE;
|
|
|
|
slot->NeedsUpdate = AL_FALSE;
|
|
|
|
for(j = 0;j < BUFFERSIZE;j++)
|
|
|
|
slot->WetBuffer[j] = 0.0f;
|
|
|
|
for(j = 0;j < 1;j++)
|
|
|
|
{
|
|
|
|
slot->ClickRemoval[j] = 0.0f;
|
|
|
|
slot->PendingClicks[j] = 0.0f;
|
|
|
|
}
|
|
|
|
slot->ref = 0;
|
|
|
|
|
2011-08-31 03:49:49 +00:00
|
|
|
LockContext(Context);
|
2011-08-31 03:13:42 +00:00
|
|
|
err = ResizeEffectSlotArray(Context, 1);
|
|
|
|
if(err == AL_NO_ERROR)
|
|
|
|
Context->ActiveEffectSlots[Context->ActiveEffectSlotCount++] = slot;
|
2011-08-31 03:49:49 +00:00
|
|
|
UnlockContext(Context);
|
|
|
|
if(err == AL_NO_ERROR)
|
2011-08-31 03:13:42 +00:00
|
|
|
err = NewThunkEntry(&slot->effectslot);
|
2011-06-18 06:59:25 +00:00
|
|
|
if(err == AL_NO_ERROR)
|
|
|
|
err = InsertUIntMapEntry(&Context->EffectSlotMap, slot->effectslot, slot);
|
2010-09-21 22:12:08 +00:00
|
|
|
if(err != AL_NO_ERROR)
|
|
|
|
{
|
2011-08-31 03:13:42 +00:00
|
|
|
RemoveEffectSlotArray(Context, slot);
|
2011-08-22 14:40:14 +00:00
|
|
|
FreeThunkEntry(slot->effectslot);
|
2010-09-21 22:12:08 +00:00
|
|
|
ALEffect_Destroy(slot->EffectState);
|
|
|
|
free(slot);
|
|
|
|
|
|
|
|
alSetError(Context, err);
|
|
|
|
alDeleteAuxiliaryEffectSlots(i, effectslots);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-08-31 03:13:42 +00:00
|
|
|
effectslots[i] = slot->effectslot;
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-31 03:49:49 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alDeleteAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2010-03-26 07:41:27 +00:00
|
|
|
ALeffectslot *EffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
ALsizei i;
|
|
|
|
|
2011-08-31 06:28:38 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-09-21 23:54:33 +00:00
|
|
|
if(n < 0)
|
|
|
|
alSetError(Context, AL_INVALID_VALUE);
|
|
|
|
else
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
// Check that all effectslots are valid
|
2010-09-21 23:54:33 +00:00
|
|
|
for(i = 0;i < n;i++)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-05-12 09:20:14 +00:00
|
|
|
if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslots[i])) == NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2011-08-31 03:49:49 +00:00
|
|
|
n = 0;
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-08-30 06:05:47 +00:00
|
|
|
else if(EffectSlot->ref != 0)
|
2008-01-16 21:20:09 +00:00
|
|
|
{
|
2011-08-31 03:57:14 +00:00
|
|
|
alSetError(Context, AL_INVALID_OPERATION);
|
2011-08-31 03:49:49 +00:00
|
|
|
n = 0;
|
2010-09-21 23:54:33 +00:00
|
|
|
break;
|
2008-01-16 21:20:09 +00:00
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-09-21 23:54:33 +00:00
|
|
|
// All effectslots are valid
|
|
|
|
for(i = 0;i < n;i++)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-09-21 23:54:33 +00:00
|
|
|
// Recheck that the effectslot is valid, because there could be duplicated names
|
2011-08-31 03:49:49 +00:00
|
|
|
if((EffectSlot=RemoveEffectSlot(Context->EffectSlotMap, effectslots[i])) == NULL)
|
2010-09-21 23:54:33 +00:00
|
|
|
continue;
|
2011-08-31 03:49:49 +00:00
|
|
|
FreeThunkEntry(EffectSlot->effectslot);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-08-31 03:13:42 +00:00
|
|
|
RemoveEffectSlotArray(Context, EffectSlot);
|
2010-09-21 23:54:33 +00:00
|
|
|
ALEffect_Destroy(EffectSlot->EffectState);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-09-21 23:54:33 +00:00
|
|
|
memset(EffectSlot, 0, sizeof(ALeffectslot));
|
|
|
|
free(EffectSlot);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-31 03:49:49 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALboolean AL_APIENTRY alIsAuxiliaryEffectSlot(ALuint effectslot)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2010-03-17 03:23:46 +00:00
|
|
|
ALboolean result;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-08-31 06:28:38 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return AL_FALSE;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
result = (LookupEffectSlot(Context->EffectSlotMap, effectslot) ?
|
2010-03-17 03:23:46 +00:00
|
|
|
AL_TRUE : AL_FALSE);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-08-30 07:04:02 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-03-17 03:23:46 +00:00
|
|
|
return result;
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint iValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-11-06 21:27:33 +00:00
|
|
|
ALCdevice *Device;
|
2007-12-18 01:43:19 +00:00
|
|
|
ALCcontext *Context;
|
2010-03-26 07:41:27 +00:00
|
|
|
ALeffectslot *EffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-11-06 21:27:33 +00:00
|
|
|
Device = Context->Device;
|
2010-05-12 09:20:14 +00:00
|
|
|
if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2010-03-17 03:23:46 +00:00
|
|
|
case AL_EFFECTSLOT_EFFECT: {
|
|
|
|
ALeffect *effect = NULL;
|
|
|
|
|
|
|
|
if(iValue == 0 ||
|
2010-11-06 21:27:33 +00:00
|
|
|
(effect=LookupEffect(Device->EffectMap, iValue)) != NULL)
|
2007-12-18 22:22:59 +00:00
|
|
|
{
|
2010-03-26 07:41:27 +00:00
|
|
|
InitializeEffect(Context, EffectSlot, effect);
|
2011-07-11 08:13:58 +00:00
|
|
|
Context->UpdateSources = AL_TRUE;
|
2007-12-18 22:22:59 +00:00
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_VALUE);
|
2010-03-17 03:23:46 +00:00
|
|
|
} break;
|
2007-12-18 22:22:59 +00:00
|
|
|
|
2007-12-19 01:41:44 +00:00
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
|
|
|
if(iValue == AL_TRUE || iValue == AL_FALSE)
|
2009-11-26 00:21:47 +00:00
|
|
|
{
|
2010-03-26 07:41:27 +00:00
|
|
|
EffectSlot->AuxSendAuto = iValue;
|
2011-07-11 08:13:58 +00:00
|
|
|
Context->UpdateSources = AL_TRUE;
|
2009-11-26 00:21:47 +00:00
|
|
|
}
|
2007-12-19 01:41:44 +00:00
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_VALUE);
|
2007-12-19 01:41:44 +00:00
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2011-06-16 16:14:41 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
|
|
|
alAuxiliaryEffectSloti(effectslot, param, piValues[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat flValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2010-03-26 07:41:27 +00:00
|
|
|
ALeffectslot *EffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
case AL_EFFECTSLOT_GAIN:
|
|
|
|
if(flValue >= 0.0f && flValue <= 1.0f)
|
2011-07-16 10:15:28 +00:00
|
|
|
{
|
2010-03-26 07:41:27 +00:00
|
|
|
EffectSlot->Gain = flValue;
|
2011-07-16 10:15:28 +00:00
|
|
|
EffectSlot->NeedsUpdate = AL_TRUE;
|
|
|
|
}
|
2007-12-18 23:47:24 +00:00
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_VALUE);
|
2007-12-18 23:47:24 +00:00
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2011-06-16 16:14:41 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_EFFECTSLOT_GAIN:
|
|
|
|
alAuxiliaryEffectSlotf(effectslot, param, pflValues[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint *piValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2010-03-26 07:41:27 +00:00
|
|
|
ALeffectslot *EffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
2010-03-26 07:41:27 +00:00
|
|
|
*piValue = EffectSlot->effect.effect;
|
2007-12-18 22:22:59 +00:00
|
|
|
break;
|
|
|
|
|
2007-12-19 01:41:44 +00:00
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
2010-03-26 07:41:27 +00:00
|
|
|
*piValue = EffectSlot->AuxSendAuto;
|
2007-12-19 01:41:44 +00:00
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2011-06-16 16:14:41 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
|
|
|
alGetAuxiliaryEffectSloti(effectslot, param, piValues);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat *pflValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2010-03-26 07:41:27 +00:00
|
|
|
ALeffectslot *EffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if((EffectSlot=LookupEffectSlot(Context->EffectSlotMap, effectslot)) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
case AL_EFFECTSLOT_GAIN:
|
2010-03-26 07:41:27 +00:00
|
|
|
*pflValue = EffectSlot->Gain;
|
2007-12-18 23:47:24 +00:00
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 00:44:01 +00:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2011-06-16 16:14:41 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_EFFECTSLOT_GAIN:
|
|
|
|
alGetAuxiliaryEffectSlotf(effectslot, param, pflValues);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
Context = GetContextRef();
|
2009-08-16 23:02:13 +00:00
|
|
|
if(!Context) return;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2010-05-12 09:20:14 +00:00
|
|
|
if(LookupEffectSlot(Context->EffectSlotMap, effectslot) != NULL)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
default:
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_ENUM);
|
2007-12-18 01:43:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_INVALID_NAME);
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-06 02:22:43 +00:00
|
|
|
static ALvoid NoneDestroy(ALeffectState *State)
|
|
|
|
{ free(State); }
|
|
|
|
static ALboolean NoneDeviceUpdate(ALeffectState *State, ALCdevice *Device)
|
|
|
|
{
|
|
|
|
return AL_TRUE;
|
|
|
|
(void)State;
|
|
|
|
(void)Device;
|
|
|
|
}
|
2011-07-16 10:02:16 +00:00
|
|
|
static ALvoid NoneUpdate(ALeffectState *State, ALCcontext *Context, const ALeffectslot *Slot)
|
2009-11-06 02:22:43 +00:00
|
|
|
{
|
|
|
|
(void)State;
|
|
|
|
(void)Context;
|
2011-07-16 10:02:16 +00:00
|
|
|
(void)Slot;
|
2009-11-06 02:22:43 +00:00
|
|
|
}
|
2010-12-02 02:33:17 +00:00
|
|
|
static ALvoid NoneProcess(ALeffectState *State, const ALeffectslot *Slot, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[MAXCHANNELS])
|
2009-11-06 02:22:43 +00:00
|
|
|
{
|
|
|
|
(void)State;
|
|
|
|
(void)Slot;
|
|
|
|
(void)SamplesToDo;
|
|
|
|
(void)SamplesIn;
|
|
|
|
(void)SamplesOut;
|
|
|
|
}
|
2009-11-06 04:50:56 +00:00
|
|
|
ALeffectState *NoneCreate(void)
|
2009-11-06 02:22:43 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-08-31 03:13:42 +00:00
|
|
|
|
|
|
|
static ALvoid RemoveEffectSlotArray(ALCcontext *Context, ALeffectslot *slot)
|
|
|
|
{
|
|
|
|
ALeffectslot **slotlist, **slotlistend;
|
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
LockContext(Context);
|
2011-08-31 03:13:42 +00:00
|
|
|
slotlist = Context->ActiveEffectSlots;
|
|
|
|
slotlistend = slotlist + Context->ActiveEffectSlotCount;
|
|
|
|
while(slotlist != slotlistend)
|
|
|
|
{
|
|
|
|
if(*slotlist == slot)
|
|
|
|
{
|
|
|
|
*slotlist = *(--slotlistend);
|
|
|
|
Context->ActiveEffectSlotCount--;
|
|
|
|
break;
|
|
|
|
}
|
2011-08-31 20:36:47 +00:00
|
|
|
slotlist++;
|
2011-08-31 03:13:42 +00:00
|
|
|
}
|
2011-09-11 09:01:31 +00:00
|
|
|
UnlockContext(Context);
|
2011-08-31 03:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ALenum ResizeEffectSlotArray(ALCcontext *Context, ALsizei count)
|
|
|
|
{
|
|
|
|
ALsizei newcount;
|
|
|
|
void *temp;
|
|
|
|
|
|
|
|
if(count <= Context->MaxActiveEffectSlots-Context->ActiveEffectSlotCount)
|
|
|
|
return AL_NO_ERROR;
|
|
|
|
|
|
|
|
newcount = Context->MaxActiveEffectSlots ?
|
|
|
|
(Context->MaxActiveEffectSlots<<1) : 1;
|
|
|
|
if(newcount <= Context->MaxActiveEffectSlots ||
|
|
|
|
!(temp=realloc(Context->ActiveEffectSlots, newcount *
|
|
|
|
sizeof(*Context->ActiveEffectSlots))))
|
|
|
|
return AL_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
Context->ActiveEffectSlots = temp;
|
|
|
|
Context->MaxActiveEffectSlots = newcount;
|
|
|
|
return AL_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-03-26 07:41:27 +00:00
|
|
|
static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *EffectSlot, ALeffect *effect)
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
{
|
2011-09-02 01:51:24 +00:00
|
|
|
ALenum newtype = (effect ? effect->type : AL_EFFECT_NULL);
|
2011-09-11 09:01:31 +00:00
|
|
|
ALeffectState *State = NULL;
|
2011-09-02 01:51:24 +00:00
|
|
|
ALenum err = AL_NO_ERROR;
|
|
|
|
|
|
|
|
if(newtype == AL_EFFECT_NULL && EffectSlot->effect.type != AL_EFFECT_NULL)
|
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
State = NoneCreate();
|
|
|
|
if(!State) err = AL_OUT_OF_MEMORY;
|
2011-09-02 01:51:24 +00:00
|
|
|
}
|
2011-09-02 03:06:51 +00:00
|
|
|
else if(newtype == AL_EFFECT_EAXREVERB || newtype == AL_EFFECT_REVERB)
|
2011-09-02 01:51:24 +00:00
|
|
|
{
|
2011-09-02 03:06:51 +00:00
|
|
|
if(EffectSlot->effect.type != AL_EFFECT_EAXREVERB && EffectSlot->effect.type != AL_EFFECT_REVERB)
|
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
State = ReverbCreate();
|
|
|
|
if(!State) err = AL_OUT_OF_MEMORY;
|
2011-09-02 03:06:51 +00:00
|
|
|
}
|
2011-09-02 01:51:24 +00:00
|
|
|
}
|
|
|
|
else if(newtype == AL_EFFECT_ECHO && EffectSlot->effect.type != AL_EFFECT_ECHO)
|
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
State = EchoCreate();
|
|
|
|
if(!State) err = AL_OUT_OF_MEMORY;
|
2011-09-02 01:51:24 +00:00
|
|
|
}
|
|
|
|
else if(newtype == AL_EFFECT_RING_MODULATOR && EffectSlot->effect.type != AL_EFFECT_RING_MODULATOR)
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
State = ModulatorCreate();
|
|
|
|
if(!State) err = AL_OUT_OF_MEMORY;
|
2011-09-02 01:51:24 +00:00
|
|
|
}
|
2011-09-02 03:06:51 +00:00
|
|
|
else if(newtype == AL_EFFECT_DEDICATED_DIALOGUE || newtype == AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT)
|
2011-09-02 01:51:24 +00:00
|
|
|
{
|
2011-09-02 03:06:51 +00:00
|
|
|
if(EffectSlot->effect.type != AL_EFFECT_DEDICATED_DIALOGUE && EffectSlot->effect.type != AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT)
|
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
State = DedicatedCreate();
|
|
|
|
if(!State) err = AL_OUT_OF_MEMORY;
|
2011-09-02 03:06:51 +00:00
|
|
|
}
|
2011-09-02 01:51:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(err != AL_NO_ERROR)
|
|
|
|
{
|
|
|
|
alSetError(Context, err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-11 09:01:31 +00:00
|
|
|
if(State)
|
2011-09-02 01:51:24 +00:00
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
LockContext(Context);
|
|
|
|
if(ALEffect_DeviceUpdate(State, Context->Device) == AL_FALSE)
|
2009-05-31 18:54:49 +00:00
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
UnlockContext(Context);
|
|
|
|
ALEffect_Destroy(State);
|
2010-03-17 00:35:51 +00:00
|
|
|
alSetError(Context, AL_OUT_OF_MEMORY);
|
2009-11-06 04:50:56 +00:00
|
|
|
return;
|
2009-05-31 18:54:49 +00:00
|
|
|
}
|
2011-09-11 09:01:31 +00:00
|
|
|
State = ExchangePtr((void**)&EffectSlot->EffectState, State);
|
2011-07-16 09:41:02 +00:00
|
|
|
|
|
|
|
if(!effect)
|
|
|
|
memset(&EffectSlot->effect, 0, sizeof(EffectSlot->effect));
|
|
|
|
else
|
|
|
|
memcpy(&EffectSlot->effect, effect, sizeof(*effect));
|
2011-08-31 21:01:15 +00:00
|
|
|
/* FIXME: This should be done asynchronously, but since the EffectState
|
2011-07-16 09:41:02 +00:00
|
|
|
* object was changed, it needs an update before its Process method can
|
2011-08-31 21:01:15 +00:00
|
|
|
* be called. */
|
2011-07-16 09:41:02 +00:00
|
|
|
EffectSlot->NeedsUpdate = AL_FALSE;
|
2011-07-16 10:02:16 +00:00
|
|
|
ALEffect_Update(EffectSlot->EffectState, Context, EffectSlot);
|
2011-09-11 09:01:31 +00:00
|
|
|
UnlockContext(Context);
|
|
|
|
|
|
|
|
ALEffect_Destroy(State);
|
|
|
|
State = NULL;
|
2009-05-29 08:32:54 +00:00
|
|
|
}
|
2009-11-29 04:09:41 +00:00
|
|
|
else
|
2011-07-16 09:41:02 +00:00
|
|
|
{
|
2011-09-11 09:01:31 +00:00
|
|
|
LockContext(Context);
|
2011-07-16 09:41:02 +00:00
|
|
|
if(!effect)
|
|
|
|
memset(&EffectSlot->effect, 0, sizeof(EffectSlot->effect));
|
|
|
|
else
|
|
|
|
memcpy(&EffectSlot->effect, effect, sizeof(*effect));
|
2011-09-11 09:01:31 +00:00
|
|
|
UnlockContext(Context);
|
2011-07-16 09:41:02 +00:00
|
|
|
EffectSlot->NeedsUpdate = AL_TRUE;
|
|
|
|
}
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-16 00:22:39 +00:00
|
|
|
ALvoid ReleaseALAuxiliaryEffectSlots(ALCcontext *Context)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-05-12 09:20:14 +00:00
|
|
|
ALsizei pos;
|
|
|
|
for(pos = 0;pos < Context->EffectSlotMap.size;pos++)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2010-05-12 09:20:14 +00:00
|
|
|
ALeffectslot *temp = Context->EffectSlotMap.array[pos].value;
|
|
|
|
Context->EffectSlotMap.array[pos].value = NULL;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
// Release effectslot structure
|
2010-03-21 04:49:02 +00:00
|
|
|
ALEffect_Destroy(temp->EffectState);
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
|
2011-08-22 14:40:14 +00:00
|
|
|
FreeThunkEntry(temp->effectslot);
|
2007-12-18 01:43:19 +00:00
|
|
|
memset(temp, 0, sizeof(ALeffectslot));
|
|
|
|
free(temp);
|
|
|
|
}
|
|
|
|
}
|