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"
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *ALEffectSlot, ALeffect *effect);
|
|
|
|
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
2009-04-12 00:04:55 +00:00
|
|
|
ALsizei i, j;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (n > 0)
|
|
|
|
{
|
2009-06-07 21:53:22 +00:00
|
|
|
ALCdevice *Device = alcGetContextsDevice(Context);
|
|
|
|
|
|
|
|
if(Context->AuxiliaryEffectSlotCount+n <= Device->AuxiliaryEffectSlotMax)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2008-01-15 23:37:54 +00:00
|
|
|
// Check that enough memory has been allocted in the 'effectslots' array for n Effect Slots
|
2007-12-18 21:42:13 +00:00
|
|
|
if (!IsBadWritePtr((void*)effectslots, n * sizeof(ALuint)))
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2008-01-16 00:22:39 +00:00
|
|
|
ALeffectslot **list = &Context->AuxiliaryEffectSlot;
|
2007-12-18 21:42:13 +00:00
|
|
|
while(*list)
|
|
|
|
list = &(*list)->next;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while(i < n)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2007-12-18 21:42:13 +00:00
|
|
|
*list = calloc(1, sizeof(ALeffectslot));
|
|
|
|
if(!(*list))
|
|
|
|
{
|
|
|
|
// We must have run out or memory
|
|
|
|
alDeleteAuxiliaryEffectSlots(i, effectslots);
|
|
|
|
alSetError(AL_OUT_OF_MEMORY);
|
|
|
|
break;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2007-12-19 01:41:44 +00:00
|
|
|
(*list)->Gain = 1.0;
|
|
|
|
(*list)->AuxSendAuto = AL_TRUE;
|
2009-04-12 00:04:55 +00:00
|
|
|
for(j = 0;j < BUFFERSIZE;j++)
|
|
|
|
(*list)->WetBuffer[j] = 0.0f;
|
2008-01-16 21:20:09 +00:00
|
|
|
(*list)->refcount = 0;
|
2007-12-19 01:41:44 +00:00
|
|
|
|
2007-12-18 21:42:13 +00:00
|
|
|
effectslots[i] = (ALuint)ALTHUNK_ADDENTRY(*list);
|
|
|
|
(*list)->effectslot = effectslots[i];
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2008-01-16 00:22:39 +00:00
|
|
|
Context->AuxiliaryEffectSlotCount++;
|
2007-12-18 21:42:13 +00:00
|
|
|
i++;
|
2008-01-16 00:24:12 +00:00
|
|
|
|
|
|
|
list = &(*list)->next;
|
2007-12-18 21:42:13 +00:00
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
2007-12-18 21:42:13 +00:00
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alDeleteAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALeffectslot *ALAuxiliaryEffectSlot;
|
|
|
|
ALsizei i;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (n >= 0)
|
|
|
|
{
|
|
|
|
// Check that all effectslots are valid
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
{
|
|
|
|
if (!alIsAuxiliaryEffectSlot(effectslots[i]))
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
break;
|
|
|
|
}
|
2008-01-16 21:20:09 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ALAuxiliaryEffectSlot = (ALeffectslot*)ALTHUNK_LOOKUPENTRY(effectslots[i]);
|
|
|
|
if(ALAuxiliaryEffectSlot->refcount > 0)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 (alIsAuxiliaryEffectSlot(effectslots[i]))
|
|
|
|
{
|
|
|
|
ALeffectslot **list;
|
|
|
|
|
|
|
|
ALAuxiliaryEffectSlot = ((ALeffectslot*)ALTHUNK_LOOKUPENTRY(effectslots[i]));
|
|
|
|
|
|
|
|
// Remove Source from list of Sources
|
2008-01-16 00:22:39 +00:00
|
|
|
list = &Context->AuxiliaryEffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
while(*list && *list != ALAuxiliaryEffectSlot)
|
|
|
|
list = &(*list)->next;
|
|
|
|
|
|
|
|
if(*list)
|
|
|
|
*list = (*list)->next;
|
|
|
|
ALTHUNK_REMOVEENTRY(ALAuxiliaryEffectSlot->effectslot);
|
|
|
|
|
2009-05-29 20:30:50 +00:00
|
|
|
if(ALAuxiliaryEffectSlot->EffectState)
|
|
|
|
ALEffect_Destroy(ALAuxiliaryEffectSlot->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
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
memset(ALAuxiliaryEffectSlot, 0, sizeof(ALeffectslot));
|
|
|
|
free(ALAuxiliaryEffectSlot);
|
|
|
|
|
2008-01-16 00:22:39 +00:00
|
|
|
Context->AuxiliaryEffectSlotCount--;
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_VALUE);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALboolean AL_APIENTRY alIsAuxiliaryEffectSlot(ALuint effectslot)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALeffectslot **list;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return AL_FALSE;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
2008-01-16 00:22:39 +00:00
|
|
|
list = &Context->AuxiliaryEffectSlot;
|
2007-12-18 01:43:19 +00:00
|
|
|
while(*list && (*list)->effectslot != effectslot)
|
|
|
|
list = &(*list)->next;
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
|
|
|
|
return (*list ? AL_TRUE : AL_FALSE);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint iValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
ALeffectslot *ALEffectSlot = (ALeffectslot*)ALTHUNK_LOOKUPENTRY(effectslot);
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
|
|
|
if(alIsEffect(iValue))
|
|
|
|
{
|
|
|
|
ALeffect *effect = (ALeffect*)ALTHUNK_LOOKUPENTRY(iValue);
|
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
|
|
|
InitializeEffect(Context, ALEffectSlot, effect);
|
2007-12-18 22:22:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_VALUE);
|
|
|
|
break;
|
|
|
|
|
2007-12-19 01:41:44 +00:00
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
|
|
|
if(iValue == AL_TRUE || iValue == AL_FALSE)
|
|
|
|
ALEffectSlot->AuxSendAuto = iValue;
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_VALUE);
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
2007-12-19 01:41:44 +00:00
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
2007-12-18 22:22:59 +00:00
|
|
|
alAuxiliaryEffectSloti(effectslot, param, piValues[0]);
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat flValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
ALeffectslot *ALEffectSlot = (ALeffectslot*)ALTHUNK_LOOKUPENTRY(effectslot);
|
|
|
|
|
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)
|
|
|
|
ALEffectSlot->Gain = flValue;
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_VALUE);
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
case AL_EFFECTSLOT_GAIN:
|
|
|
|
alAuxiliaryEffectSlotf(effectslot, param, pflValues[0]);
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alGetAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint *piValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
ALeffectslot *ALEffectSlot = (ALeffectslot*)ALTHUNK_LOOKUPENTRY(effectslot);
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
|
|
|
*piValue = ALEffectSlot->effect.effect;
|
|
|
|
break;
|
|
|
|
|
2007-12-19 01:41:44 +00:00
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
|
|
|
*piValue = ALEffectSlot->AuxSendAuto;
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 22:22:59 +00:00
|
|
|
case AL_EFFECTSLOT_EFFECT:
|
2007-12-19 01:41:44 +00:00
|
|
|
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
2007-12-18 22:22:59 +00:00
|
|
|
alGetAuxiliaryEffectSloti(effectslot, param, piValues);
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat *pflValue)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
ALeffectslot *ALEffectSlot = (ALeffectslot*)ALTHUNK_LOOKUPENTRY(effectslot);
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
case AL_EFFECTSLOT_GAIN:
|
|
|
|
*pflValue = ALEffectSlot->Gain;
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
2008-09-06 20:45:27 +00:00
|
|
|
ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
|
2009-08-16 21:09:23 +00:00
|
|
|
Context = GetContextSuspended();
|
2008-01-15 23:53:06 +00:00
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
alSetError(AL_INVALID_OPERATION);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
if (alIsAuxiliaryEffectSlot(effectslot))
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
2007-12-18 23:47:24 +00:00
|
|
|
case AL_EFFECTSLOT_GAIN:
|
|
|
|
alGetAuxiliaryEffectSlotf(effectslot, param, pflValues);
|
|
|
|
break;
|
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
default:
|
|
|
|
alSetError(AL_INVALID_ENUM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
alSetError(AL_INVALID_NAME);
|
|
|
|
|
|
|
|
ProcessContext(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *ALEffectSlot, ALeffect *effect)
|
|
|
|
{
|
2009-05-29 08:32:54 +00:00
|
|
|
if((!effect) || (effect->type != ALEffectSlot->effect.type))
|
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
|
|
|
{
|
2009-05-31 18:54:49 +00:00
|
|
|
ALeffectState *NewState = NULL;
|
|
|
|
if(effect)
|
|
|
|
{
|
|
|
|
if(effect->type == AL_EFFECT_EAXREVERB)
|
|
|
|
NewState = EAXVerbCreate(Context);
|
|
|
|
else if(effect->type == AL_EFFECT_REVERB)
|
|
|
|
NewState = VerbCreate(Context);
|
|
|
|
else if(effect->type == AL_EFFECT_ECHO)
|
|
|
|
NewState = EchoCreate(Context);
|
|
|
|
/* No new state? An error occured.. */
|
|
|
|
if(!NewState)
|
|
|
|
return;
|
|
|
|
}
|
2009-05-29 20:30:50 +00:00
|
|
|
if(ALEffectSlot->EffectState)
|
|
|
|
ALEffect_Destroy(ALEffectSlot->EffectState);
|
2009-05-31 18:54:49 +00:00
|
|
|
ALEffectSlot->EffectState = NewState;
|
2009-05-29 08:32:54 +00:00
|
|
|
}
|
|
|
|
if(!effect)
|
|
|
|
{
|
|
|
|
memset(&ALEffectSlot->effect, 0, sizeof(ALEffectSlot->effect));
|
2008-11-16 08:29:49 +00:00
|
|
|
return;
|
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
|
|
|
}
|
2009-05-29 08:32:54 +00:00
|
|
|
memcpy(&ALEffectSlot->effect, effect, sizeof(*effect));
|
2009-05-29 23:51:00 +00:00
|
|
|
ALEffect_Update(ALEffectSlot->EffectState, Context, 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-16 00:22:39 +00:00
|
|
|
ALvoid ReleaseALAuxiliaryEffectSlots(ALCcontext *Context)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
|
|
|
#ifdef _DEBUG
|
2008-01-16 00:22:39 +00:00
|
|
|
if(Context->AuxiliaryEffectSlotCount > 0)
|
2008-07-22 21:29:27 +00:00
|
|
|
AL_PRINT("alcDestroyContext(): deleting %d AuxiliaryEffectSlot(s)\n", Context->AuxiliaryEffectSlotCount);
|
2007-12-18 01:43:19 +00:00
|
|
|
#endif
|
|
|
|
|
2008-01-16 00:22:39 +00:00
|
|
|
while(Context->AuxiliaryEffectSlot)
|
2007-12-18 01:43:19 +00:00
|
|
|
{
|
2008-01-16 00:22:39 +00:00
|
|
|
ALeffectslot *temp = Context->AuxiliaryEffectSlot;
|
|
|
|
Context->AuxiliaryEffectSlot = Context->AuxiliaryEffectSlot->next;
|
2007-12-18 01:43:19 +00:00
|
|
|
|
|
|
|
// Release effectslot structure
|
2009-05-29 20:30:50 +00:00
|
|
|
if(temp->EffectState)
|
|
|
|
ALEffect_Destroy(temp->EffectState);
|
2008-01-21 23:34:38 +00:00
|
|
|
ALTHUNK_REMOVEENTRY(temp->effectslot);
|
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
|
|
|
|
2007-12-18 01:43:19 +00:00
|
|
|
memset(temp, 0, sizeof(ALeffectslot));
|
|
|
|
free(temp);
|
|
|
|
}
|
2008-01-16 00:22:39 +00:00
|
|
|
Context->AuxiliaryEffectSlotCount = 0;
|
2007-12-18 01:43:19 +00:00
|
|
|
}
|