axmol/thirdparty/openal/al/effects/null.cpp

149 lines
2.9 KiB
C++
Raw Normal View History

#include "config.h"
#include "AL/al.h"
#include "AL/efx.h"
2021-05-14 10:15:42 +08:00
#include "alc/effects/base.h"
#include "effects.h"
2022-04-25 12:02:45 +08:00
#ifdef ALSOFT_EAX
#include "al/eax/exception.h"
2022-04-25 12:02:45 +08:00
#endif // ALSOFT_EAX
namespace {
void Null_setParami(EffectProps* /*props*/, ALenum param, int /*val*/)
{
switch(param)
{
default:
throw effect_exception{AL_INVALID_ENUM, "Invalid null effect integer property 0x%04x",
param};
}
}
void Null_setParamiv(EffectProps *props, ALenum param, const int *vals)
{
switch(param)
{
default:
Null_setParami(props, param, vals[0]);
}
}
void Null_setParamf(EffectProps* /*props*/, ALenum param, float /*val*/)
{
switch(param)
{
default:
throw effect_exception{AL_INVALID_ENUM, "Invalid null effect float property 0x%04x",
param};
}
}
void Null_setParamfv(EffectProps *props, ALenum param, const float *vals)
{
switch(param)
{
default:
Null_setParamf(props, param, vals[0]);
}
}
void Null_getParami(const EffectProps* /*props*/, ALenum param, int* /*val*/)
{
switch(param)
{
default:
throw effect_exception{AL_INVALID_ENUM, "Invalid null effect integer property 0x%04x",
param};
}
}
void Null_getParamiv(const EffectProps *props, ALenum param, int *vals)
{
switch(param)
{
default:
Null_getParami(props, param, vals);
}
}
void Null_getParamf(const EffectProps* /*props*/, ALenum param, float* /*val*/)
{
switch(param)
{
default:
throw effect_exception{AL_INVALID_ENUM, "Invalid null effect float property 0x%04x",
param};
}
}
void Null_getParamfv(const EffectProps *props, ALenum param, float *vals)
{
switch(param)
{
default:
Null_getParamf(props, param, vals);
}
}
EffectProps genDefaultProps() noexcept
{
EffectProps props{};
return props;
}
} // namespace
DEFINE_ALEFFECT_VTABLE(Null);
const EffectProps NullEffectProps{genDefaultProps()};
2022-04-25 12:02:45 +08:00
#ifdef ALSOFT_EAX
namespace {
2023-05-03 18:59:33 +08:00
using NullCommitter = EaxCommitter<EaxNullCommitter>;
2022-04-25 12:02:45 +08:00
2023-05-03 18:59:33 +08:00
} // namespace
2022-04-25 12:02:45 +08:00
2023-05-03 18:59:33 +08:00
template<>
struct NullCommitter::Exception : public EaxException
2022-04-25 12:02:45 +08:00
{
2023-05-03 18:59:33 +08:00
explicit Exception(const char *message) : EaxException{"EAX_NULL_EFFECT", message}
{ }
};
2022-04-25 12:02:45 +08:00
2023-05-03 18:59:33 +08:00
template<>
[[noreturn]] void NullCommitter::fail(const char *message)
{
throw Exception{message};
}
2022-04-25 12:02:45 +08:00
2023-05-03 18:59:33 +08:00
template<>
bool NullCommitter::commit(const EaxEffectProps &props)
2022-04-25 12:02:45 +08:00
{
const bool ret{props != mEaxProps};
2023-05-03 18:59:33 +08:00
mEaxProps = props;
return ret;
2022-04-25 12:02:45 +08:00
}
2023-05-03 18:59:33 +08:00
template<>
void NullCommitter::SetDefaults(EaxEffectProps &props)
2022-04-25 12:02:45 +08:00
{
props.emplace<std::monostate>();
2022-04-25 12:02:45 +08:00
}
2023-05-03 18:59:33 +08:00
template<>
void NullCommitter::Get(const EaxCall &call, const EaxEffectProps&)
{
if(call.get_property_id() != 0)
fail_unknown_property_id();
}
2022-04-25 12:02:45 +08:00
2023-05-03 18:59:33 +08:00
template<>
void NullCommitter::Set(const EaxCall &call, EaxEffectProps&)
2022-04-25 12:02:45 +08:00
{
2023-05-03 18:59:33 +08:00
if(call.get_property_id() != 0)
fail_unknown_property_id();
2022-04-25 12:02:45 +08:00
}
#endif // ALSOFT_EAX