diff options
author | Chris Robinson <[email protected]> | 2013-05-25 17:42:34 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-25 17:42:34 -0700 |
commit | 2da6caeaa61338ccbea9a7cbc022be932bb4e0e1 (patch) | |
tree | 94d6f50eb92ae840e2be6b913e62edb57814f5cc /Alc/effects/null.c | |
parent | e157238ce7467b6d3dbabb66f1308bb0bd87473e (diff) |
Update the Null effect so it can act as a guide to new effects
Diffstat (limited to 'Alc/effects/null.c')
-rw-r--r-- | Alc/effects/null.c | 111 |
1 files changed, 100 insertions, 11 deletions
diff --git a/Alc/effects/null.c b/Alc/effects/null.c index cdca1adf..76d650da 100644 --- a/Alc/effects/null.c +++ b/Alc/effects/null.c @@ -13,29 +13,45 @@ typedef struct ALnullStateFactory { DERIVE_FROM_TYPE(ALeffectStateFactory); } ALnullStateFactory; -static ALnullStateFactory NullFactory; - - typedef struct ALnullState { DERIVE_FROM_TYPE(ALeffectState); } ALnullState; +static ALnullStateFactory NullFactory; + +/* This destructs (not free!) the effect state. It's called only when the + * effect slot is no longer used. + */ static ALvoid ALnullState_Destruct(ALnullState *state) { (void)state; } + +/* This updates the device-dependant effect state. This is called on + * initialization and any time the device parameters (eg. playback frequency, + * format) have been changed. + */ static ALboolean ALnullState_DeviceUpdate(ALnullState *state, ALCdevice *device) { return AL_TRUE; (void)state; (void)device; } + +/* This updates the effect state. This is called any time the effect is + * (re)loaded into a slot. + */ static ALvoid ALnullState_Update(ALnullState *state, ALCdevice *device, const ALeffectslot *slot) { (void)state; (void)device; (void)slot; } + +/* This processes the effect state, for the given number of samples from the + * input to the output buffer. The result should be added to the output buffer, + * not replace it. + */ static ALvoid ALnullState_Process(ALnullState *state, ALuint samplesToDo, const ALfloat *restrict samplesIn, ALfloat (*restrict samplesOut)[BUFFERSIZE]) { (void)state; @@ -43,25 +59,33 @@ static ALvoid ALnullState_Process(ALnullState *state, ALuint samplesToDo, const (void)samplesIn; (void)samplesOut; } + +/* This returns the ALeffectStateFactory that creates these ALeffectState + * object types. + */ static ALeffectStateFactory *ALnullState_getCreator(void) { return STATIC_CAST(ALeffectStateFactory, &NullFactory); } +/* Define the forwards and the ALeffectState vtable for this type. */ DEFINE_ALEFFECTSTATE_VTABLE(ALnullState); +/* Creates ALeffectState objects of the appropriate type. */ ALeffectState *ALnullStateFactory_create(void) { ALnullState *state; state = calloc(1, sizeof(*state)); if(!state) return NULL; + /* Set vtables for inherited types. */ SET_VTABLE2(ALnullState, ALeffectState, state); return STATIC_CAST(ALeffectState, state); } +/* Destroys (destructs and frees) the ALeffectState. */ static ALvoid ALnullStateFactory_destroy(ALeffectState *effect) { ALnullState *state = STATIC_UPCAST(ALnullState, ALeffectState, effect); @@ -69,6 +93,7 @@ static ALvoid ALnullStateFactory_destroy(ALeffectState *effect) free(state); } +/* Define the ALeffectStateFactory vtable for this type. */ DEFINE_ALEFFECTSTATEFACTORY_VTABLE(ALnullStateFactory); @@ -86,21 +111,85 @@ ALeffectStateFactory *ALnullStateFactory_getFactory(void) void ALnull_SetParami(ALeffect *effect, ALCcontext *context, ALenum param, ALint val) -{ (void)effect;(void)param;(void)val; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)val; +} void ALnull_SetParamiv(ALeffect *effect, ALCcontext *context, ALenum param, const ALint *vals) -{ (void)effect;(void)param;(void)vals; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)vals; +} void ALnull_SetParamf(ALeffect *effect, ALCcontext *context, ALenum param, ALfloat val) -{ (void)effect;(void)param;(void)val; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)val; +} void ALnull_SetParamfv(ALeffect *effect, ALCcontext *context, ALenum param, const ALfloat *vals) -{ (void)effect;(void)param;(void)vals; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)vals; +} void ALnull_GetParami(ALeffect *effect, ALCcontext *context, ALenum param, ALint *val) -{ (void)effect;(void)param;(void)val; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)val; +} void ALnull_GetParamiv(ALeffect *effect, ALCcontext *context, ALenum param, ALint *vals) -{ (void)effect;(void)param;(void)vals; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)vals; +} void ALnull_GetParamf(ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *val) -{ (void)effect;(void)param;(void)val; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)val; +} void ALnull_GetParamfv(ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *vals) -{ (void)effect;(void)param;(void)vals; alSetError(context, AL_INVALID_ENUM); } +{ + switch(param) + { + default: + alSetError(context, AL_INVALID_ENUM); + } + (void)effect; + (void)vals; +} DEFINE_ALEFFECT_VTABLE(ALnull); |