aboutsummaryrefslogtreecommitdiffstats
path: root/al/effects/equalizer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'al/effects/equalizer.cpp')
-rw-r--r--al/effects/equalizer.cpp862
1 files changed, 253 insertions, 609 deletions
diff --git a/al/effects/equalizer.cpp b/al/effects/equalizer.cpp
index ccc00f67..80dd1c4b 100644
--- a/al/effects/equalizer.cpp
+++ b/al/effects/equalizer.cpp
@@ -9,7 +9,6 @@
#ifdef ALSOFT_EAX
#include "alnumeric.h"
-
#include "al/eax/exception.h"
#include "al/eax/utils.h"
#endif // ALSOFT_EAX
@@ -178,236 +177,261 @@ const EffectProps EqualizerEffectProps{genDefaultProps()};
#ifdef ALSOFT_EAX
namespace {
-using EaxEqualizerEffectDirtyFlagsValue = std::uint_least16_t;
-
-struct EaxEqualizerEffectDirtyFlags
-{
- using EaxIsBitFieldStruct = bool;
-
- EaxEqualizerEffectDirtyFlagsValue lLowGain : 1;
- EaxEqualizerEffectDirtyFlagsValue flLowCutOff : 1;
- EaxEqualizerEffectDirtyFlagsValue lMid1Gain : 1;
- EaxEqualizerEffectDirtyFlagsValue flMid1Center : 1;
- EaxEqualizerEffectDirtyFlagsValue flMid1Width : 1;
- EaxEqualizerEffectDirtyFlagsValue lMid2Gain : 1;
- EaxEqualizerEffectDirtyFlagsValue flMid2Center : 1;
- EaxEqualizerEffectDirtyFlagsValue flMid2Width : 1;
- EaxEqualizerEffectDirtyFlagsValue lHighGain : 1;
- EaxEqualizerEffectDirtyFlagsValue flHighCutOff : 1;
-}; // EaxEqualizerEffectDirtyFlags
-
-
-class EaxEqualizerEffect final :
- public EaxEffect
+class EaxEqualizerEffectException : public EaxException
{
public:
- EaxEqualizerEffect();
-
- void dispatch(const EaxEaxCall& eax_call) override;
-
- // [[nodiscard]]
- bool apply_deferred() override;
-
-private:
- EAXEQUALIZERPROPERTIES eax_{};
- EAXEQUALIZERPROPERTIES eax_d_{};
- EaxEqualizerEffectDirtyFlags eax_dirty_flags_{};
-
- void set_eax_defaults();
-
- void set_efx_low_gain();
- void set_efx_low_cutoff();
- void set_efx_mid1_gain();
- void set_efx_mid1_center();
- void set_efx_mid1_width();
- void set_efx_mid2_gain();
- void set_efx_mid2_center();
- void set_efx_mid2_width();
- void set_efx_high_gain();
- void set_efx_high_cutoff();
- void set_efx_defaults();
-
- void get(const EaxEaxCall& eax_call);
-
- void validate_low_gain(long lLowGain);
- void validate_low_cutoff(float flLowCutOff);
- void validate_mid1_gain(long lMid1Gain);
- void validate_mid1_center(float flMid1Center);
- void validate_mid1_width(float flMid1Width);
- void validate_mid2_gain(long lMid2Gain);
- void validate_mid2_center(float flMid2Center);
- void validate_mid2_width(float flMid2Width);
- void validate_high_gain(long lHighGain);
- void validate_high_cutoff(float flHighCutOff);
- void validate_all(const EAXEQUALIZERPROPERTIES& all);
-
- void defer_low_gain(long lLowGain);
- void defer_low_cutoff(float flLowCutOff);
- void defer_mid1_gain(long lMid1Gain);
- void defer_mid1_center(float flMid1Center);
- void defer_mid1_width(float flMid1Width);
- void defer_mid2_gain(long lMid2Gain);
- void defer_mid2_center(float flMid2Center);
- void defer_mid2_width(float flMid2Width);
- void defer_high_gain(long lHighGain);
- void defer_high_cutoff(float flHighCutOff);
- void defer_all(const EAXEQUALIZERPROPERTIES& all);
-
- void defer_low_gain(const EaxEaxCall& eax_call);
- void defer_low_cutoff(const EaxEaxCall& eax_call);
- void defer_mid1_gain(const EaxEaxCall& eax_call);
- void defer_mid1_center(const EaxEaxCall& eax_call);
- void defer_mid1_width(const EaxEaxCall& eax_call);
- void defer_mid2_gain(const EaxEaxCall& eax_call);
- void defer_mid2_center(const EaxEaxCall& eax_call);
- void defer_mid2_width(const EaxEaxCall& eax_call);
- void defer_high_gain(const EaxEaxCall& eax_call);
- void defer_high_cutoff(const EaxEaxCall& eax_call);
- void defer_all(const EaxEaxCall& eax_call);
-
- void set(const EaxEaxCall& eax_call);
-}; // EaxEqualizerEffect
-
+ explicit EaxEqualizerEffectException(const char* message)
+ : EaxException{"EAX_EQUALIZER_EFFECT", message}
+ {}
+}; // EaxEqualizerEffectException
-class EaxEqualizerEffectException :
- public EaxException
+class EaxEqualizerEffect final : public EaxEffect4<EaxEqualizerEffectException, EAXEQUALIZERPROPERTIES>
{
public:
- explicit EaxEqualizerEffectException(
- const char* message)
- :
- EaxException{"EAX_EQUALIZER_EFFECT", message}
- {
- }
-}; // EaxEqualizerEffectException
-
+ EaxEqualizerEffect(const EaxCall& call);
-EaxEqualizerEffect::EaxEqualizerEffect()
- : EaxEffect{AL_EFFECT_EQUALIZER}
-{
- set_eax_defaults();
- set_efx_defaults();
-}
+private:
+ struct LowGainValidator {
+ void operator()(long lLowGain) const
+ {
+ eax_validate_range<Exception>(
+ "Low Gain",
+ lLowGain,
+ EAXEQUALIZER_MINLOWGAIN,
+ EAXEQUALIZER_MAXLOWGAIN);
+ }
+ }; // LowGainValidator
+
+ struct LowCutOffValidator {
+ void operator()(float flLowCutOff) const
+ {
+ eax_validate_range<Exception>(
+ "Low Cutoff",
+ flLowCutOff,
+ EAXEQUALIZER_MINLOWCUTOFF,
+ EAXEQUALIZER_MAXLOWCUTOFF);
+ }
+ }; // LowCutOffValidator
+
+ struct Mid1GainValidator {
+ void operator()(long lMid1Gain) const
+ {
+ eax_validate_range<Exception>(
+ "Mid1 Gain",
+ lMid1Gain,
+ EAXEQUALIZER_MINMID1GAIN,
+ EAXEQUALIZER_MAXMID1GAIN);
+ }
+ }; // Mid1GainValidator
+
+ struct Mid1CenterValidator {
+ void operator()(float flMid1Center) const
+ {
+ eax_validate_range<Exception>(
+ "Mid1 Center",
+ flMid1Center,
+ EAXEQUALIZER_MINMID1CENTER,
+ EAXEQUALIZER_MAXMID1CENTER);
+ }
+ }; // Mid1CenterValidator
+
+ struct Mid1WidthValidator {
+ void operator()(float flMid1Width) const
+ {
+ eax_validate_range<Exception>(
+ "Mid1 Width",
+ flMid1Width,
+ EAXEQUALIZER_MINMID1WIDTH,
+ EAXEQUALIZER_MAXMID1WIDTH);
+ }
+ }; // Mid1WidthValidator
+
+ struct Mid2GainValidator {
+ void operator()(long lMid2Gain) const
+ {
+ eax_validate_range<Exception>(
+ "Mid2 Gain",
+ lMid2Gain,
+ EAXEQUALIZER_MINMID2GAIN,
+ EAXEQUALIZER_MAXMID2GAIN);
+ }
+ }; // Mid2GainValidator
+
+ struct Mid2CenterValidator {
+ void operator()(float flMid2Center) const
+ {
+ eax_validate_range<Exception>(
+ "Mid2 Center",
+ flMid2Center,
+ EAXEQUALIZER_MINMID2CENTER,
+ EAXEQUALIZER_MAXMID2CENTER);
+ }
+ }; // Mid2CenterValidator
+
+ struct Mid2WidthValidator {
+ void operator()(float flMid2Width) const
+ {
+ eax_validate_range<Exception>(
+ "Mid2 Width",
+ flMid2Width,
+ EAXEQUALIZER_MINMID2WIDTH,
+ EAXEQUALIZER_MAXMID2WIDTH);
+ }
+ }; // Mid2WidthValidator
+
+ struct HighGainValidator {
+ void operator()(long lHighGain) const
+ {
+ eax_validate_range<Exception>(
+ "High Gain",
+ lHighGain,
+ EAXEQUALIZER_MINHIGHGAIN,
+ EAXEQUALIZER_MAXHIGHGAIN);
+ }
+ }; // HighGainValidator
+
+ struct HighCutOffValidator {
+ void operator()(float flHighCutOff) const
+ {
+ eax_validate_range<Exception>(
+ "High Cutoff",
+ flHighCutOff,
+ EAXEQUALIZER_MINHIGHCUTOFF,
+ EAXEQUALIZER_MAXHIGHCUTOFF);
+ }
+ }; // HighCutOffValidator
+
+ struct AllValidator {
+ void operator()(const Props& all) const
+ {
+ LowGainValidator{}(all.lLowGain);
+ LowCutOffValidator{}(all.flLowCutOff);
+ Mid1GainValidator{}(all.lMid1Gain);
+ Mid1CenterValidator{}(all.flMid1Center);
+ Mid1WidthValidator{}(all.flMid1Width);
+ Mid2GainValidator{}(all.lMid2Gain);
+ Mid2CenterValidator{}(all.flMid2Center);
+ Mid2WidthValidator{}(all.flMid2Width);
+ HighGainValidator{}(all.lHighGain);
+ HighCutOffValidator{}(all.flHighCutOff);
+ }
+ }; // AllValidator
+
+ void set_defaults(Props& props) override;
+
+ void set_efx_low_gain() noexcept;
+ void set_efx_low_cutoff() noexcept;
+ void set_efx_mid1_gain() noexcept;
+ void set_efx_mid1_center() noexcept;
+ void set_efx_mid1_width() noexcept;
+ void set_efx_mid2_gain() noexcept;
+ void set_efx_mid2_center() noexcept;
+ void set_efx_mid2_width() noexcept;
+ void set_efx_high_gain() noexcept;
+ void set_efx_high_cutoff() noexcept;
+ void set_efx_defaults() override;
+
+ void get(const EaxCall& call, const Props& props) override;
+ void set(const EaxCall& call, Props& props) override;
+ bool commit_props(const Props& props) override;
+}; // EaxEqualizerEffect
-void EaxEqualizerEffect::dispatch(const EaxEaxCall& eax_call)
-{
- eax_call.is_get() ? get(eax_call) : set(eax_call);
-}
+EaxEqualizerEffect::EaxEqualizerEffect(const EaxCall& call)
+ : EaxEffect4{AL_EFFECT_EQUALIZER, call}
+{}
-void EaxEqualizerEffect::set_eax_defaults()
+void EaxEqualizerEffect::set_defaults(Props& props)
{
- eax_.lLowGain = EAXEQUALIZER_DEFAULTLOWGAIN;
- eax_.flLowCutOff = EAXEQUALIZER_DEFAULTLOWCUTOFF;
- eax_.lMid1Gain = EAXEQUALIZER_DEFAULTMID1GAIN;
- eax_.flMid1Center = EAXEQUALIZER_DEFAULTMID1CENTER;
- eax_.flMid1Width = EAXEQUALIZER_DEFAULTMID1WIDTH;
- eax_.lMid2Gain = EAXEQUALIZER_DEFAULTMID2GAIN;
- eax_.flMid2Center = EAXEQUALIZER_DEFAULTMID2CENTER;
- eax_.flMid2Width = EAXEQUALIZER_DEFAULTMID2WIDTH;
- eax_.lHighGain = EAXEQUALIZER_DEFAULTHIGHGAIN;
- eax_.flHighCutOff = EAXEQUALIZER_DEFAULTHIGHCUTOFF;
-
- eax_d_ = eax_;
+ props.lLowGain = EAXEQUALIZER_DEFAULTLOWGAIN;
+ props.flLowCutOff = EAXEQUALIZER_DEFAULTLOWCUTOFF;
+ props.lMid1Gain = EAXEQUALIZER_DEFAULTMID1GAIN;
+ props.flMid1Center = EAXEQUALIZER_DEFAULTMID1CENTER;
+ props.flMid1Width = EAXEQUALIZER_DEFAULTMID1WIDTH;
+ props.lMid2Gain = EAXEQUALIZER_DEFAULTMID2GAIN;
+ props.flMid2Center = EAXEQUALIZER_DEFAULTMID2CENTER;
+ props.flMid2Width = EAXEQUALIZER_DEFAULTMID2WIDTH;
+ props.lHighGain = EAXEQUALIZER_DEFAULTHIGHGAIN;
+ props.flHighCutOff = EAXEQUALIZER_DEFAULTHIGHCUTOFF;
}
-void EaxEqualizerEffect::set_efx_low_gain()
+void EaxEqualizerEffect::set_efx_low_gain() noexcept
{
- const auto low_gain = clamp(
- level_mb_to_gain(static_cast<float>(eax_.lLowGain)),
+ al_effect_props_.Equalizer.LowGain = clamp(
+ level_mb_to_gain(static_cast<float>(props_.lLowGain)),
AL_EQUALIZER_MIN_LOW_GAIN,
AL_EQUALIZER_MAX_LOW_GAIN);
-
- al_effect_props_.Equalizer.LowGain = low_gain;
}
-void EaxEqualizerEffect::set_efx_low_cutoff()
+void EaxEqualizerEffect::set_efx_low_cutoff() noexcept
{
- const auto low_cutoff = clamp(
- eax_.flLowCutOff,
+ al_effect_props_.Equalizer.LowCutoff = clamp(
+ props_.flLowCutOff,
AL_EQUALIZER_MIN_LOW_CUTOFF,
AL_EQUALIZER_MAX_LOW_CUTOFF);
-
- al_effect_props_.Equalizer.LowCutoff = low_cutoff;
}
-void EaxEqualizerEffect::set_efx_mid1_gain()
+void EaxEqualizerEffect::set_efx_mid1_gain() noexcept
{
- const auto mid1_gain = clamp(
- level_mb_to_gain(static_cast<float>(eax_.lMid1Gain)),
+ al_effect_props_.Equalizer.Mid1Gain = clamp(
+ level_mb_to_gain(static_cast<float>(props_.lMid1Gain)),
AL_EQUALIZER_MIN_MID1_GAIN,
AL_EQUALIZER_MAX_MID1_GAIN);
-
- al_effect_props_.Equalizer.Mid1Gain = mid1_gain;
}
-void EaxEqualizerEffect::set_efx_mid1_center()
+void EaxEqualizerEffect::set_efx_mid1_center() noexcept
{
- const auto mid1_center = clamp(
- eax_.flMid1Center,
+ al_effect_props_.Equalizer.Mid1Center = clamp(
+ props_.flMid1Center,
AL_EQUALIZER_MIN_MID1_CENTER,
AL_EQUALIZER_MAX_MID1_CENTER);
-
- al_effect_props_.Equalizer.Mid1Center = mid1_center;
}
-void EaxEqualizerEffect::set_efx_mid1_width()
+void EaxEqualizerEffect::set_efx_mid1_width() noexcept
{
- const auto mid1_width = clamp(
- eax_.flMid1Width,
+ al_effect_props_.Equalizer.Mid1Width = clamp(
+ props_.flMid1Width,
AL_EQUALIZER_MIN_MID1_WIDTH,
AL_EQUALIZER_MAX_MID1_WIDTH);
-
- al_effect_props_.Equalizer.Mid1Width = mid1_width;
}
-void EaxEqualizerEffect::set_efx_mid2_gain()
+void EaxEqualizerEffect::set_efx_mid2_gain() noexcept
{
- const auto mid2_gain = clamp(
- level_mb_to_gain(static_cast<float>(eax_.lMid2Gain)),
+ al_effect_props_.Equalizer.Mid2Gain = clamp(
+ level_mb_to_gain(static_cast<float>(props_.lMid2Gain)),
AL_EQUALIZER_MIN_MID2_GAIN,
AL_EQUALIZER_MAX_MID2_GAIN);
-
- al_effect_props_.Equalizer.Mid2Gain = mid2_gain;
}
-void EaxEqualizerEffect::set_efx_mid2_center()
+void EaxEqualizerEffect::set_efx_mid2_center() noexcept
{
- const auto mid2_center = clamp(
- eax_.flMid2Center,
+ al_effect_props_.Equalizer.Mid2Center = clamp(
+ props_.flMid2Center,
AL_EQUALIZER_MIN_MID2_CENTER,
AL_EQUALIZER_MAX_MID2_CENTER);
-
- al_effect_props_.Equalizer.Mid2Center = mid2_center;
}
-void EaxEqualizerEffect::set_efx_mid2_width()
+void EaxEqualizerEffect::set_efx_mid2_width() noexcept
{
- const auto mid2_width = clamp(
- eax_.flMid2Width,
+ al_effect_props_.Equalizer.Mid2Width = clamp(
+ props_.flMid2Width,
AL_EQUALIZER_MIN_MID2_WIDTH,
AL_EQUALIZER_MAX_MID2_WIDTH);
-
- al_effect_props_.Equalizer.Mid2Width = mid2_width;
}
-void EaxEqualizerEffect::set_efx_high_gain()
+void EaxEqualizerEffect::set_efx_high_gain() noexcept
{
- const auto high_gain = clamp(
- level_mb_to_gain(static_cast<float>(eax_.lHighGain)),
+ al_effect_props_.Equalizer.HighGain = clamp(
+ level_mb_to_gain(static_cast<float>(props_.lHighGain)),
AL_EQUALIZER_MIN_HIGH_GAIN,
AL_EQUALIZER_MAX_HIGH_GAIN);
-
- al_effect_props_.Equalizer.HighGain = high_gain;
}
-void EaxEqualizerEffect::set_efx_high_cutoff()
+void EaxEqualizerEffect::set_efx_high_cutoff() noexcept
{
- const auto high_cutoff = clamp(
- eax_.flHighCutOff,
+ al_effect_props_.Equalizer.HighCutoff = clamp(
+ props_.flHighCutOff,
AL_EQUALIZER_MIN_HIGH_CUTOFF,
AL_EQUALIZER_MAX_HIGH_CUTOFF);
-
- al_effect_props_.Equalizer.HighCutoff = high_cutoff;
}
void EaxEqualizerEffect::set_efx_defaults()
@@ -424,498 +448,118 @@ void EaxEqualizerEffect::set_efx_defaults()
set_efx_high_cutoff();
}
-void EaxEqualizerEffect::get(const EaxEaxCall& eax_call)
+void EaxEqualizerEffect::get(const EaxCall& call, const Props& props)
{
- switch(eax_call.get_property_id())
+ switch(call.get_property_id())
{
- case EAXEQUALIZER_NONE:
- break;
-
- case EAXEQUALIZER_ALLPARAMETERS:
- eax_call.set_value<EaxEqualizerEffectException>(eax_);
- break;
-
- case EAXEQUALIZER_LOWGAIN:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.lLowGain);
- break;
-
- case EAXEQUALIZER_LOWCUTOFF:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.flLowCutOff);
- break;
-
- case EAXEQUALIZER_MID1GAIN:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.lMid1Gain);
- break;
-
- case EAXEQUALIZER_MID1CENTER:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.flMid1Center);
- break;
-
- case EAXEQUALIZER_MID1WIDTH:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.flMid1Width);
- break;
-
- case EAXEQUALIZER_MID2GAIN:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.lMid2Gain);
- break;
-
- case EAXEQUALIZER_MID2CENTER:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.flMid2Center);
- break;
-
- case EAXEQUALIZER_MID2WIDTH:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.flMid2Width);
- break;
-
- case EAXEQUALIZER_HIGHGAIN:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.lHighGain);
- break;
-
- case EAXEQUALIZER_HIGHCUTOFF:
- eax_call.set_value<EaxEqualizerEffectException>(eax_.flHighCutOff);
- break;
-
- default:
- throw EaxEqualizerEffectException{"Unsupported property id."};
+ case EAXEQUALIZER_NONE: break;
+ case EAXEQUALIZER_ALLPARAMETERS: call.set_value<Exception>(props); break;
+ case EAXEQUALIZER_LOWGAIN: call.set_value<Exception>(props.lLowGain); break;
+ case EAXEQUALIZER_LOWCUTOFF: call.set_value<Exception>(props.flLowCutOff); break;
+ case EAXEQUALIZER_MID1GAIN: call.set_value<Exception>(props.lMid1Gain); break;
+ case EAXEQUALIZER_MID1CENTER: call.set_value<Exception>(props.flMid1Center); break;
+ case EAXEQUALIZER_MID1WIDTH: call.set_value<Exception>(props.flMid1Width); break;
+ case EAXEQUALIZER_MID2GAIN: call.set_value<Exception>(props.lMid2Gain); break;
+ case EAXEQUALIZER_MID2CENTER: call.set_value<Exception>(props.flMid2Center); break;
+ case EAXEQUALIZER_MID2WIDTH: call.set_value<Exception>(props.flMid2Width); break;
+ case EAXEQUALIZER_HIGHGAIN: call.set_value<Exception>(props.lHighGain); break;
+ case EAXEQUALIZER_HIGHCUTOFF: call.set_value<Exception>(props.flHighCutOff); break;
+ default: fail_unknown_property_id();
}
}
-void EaxEqualizerEffect::validate_low_gain(
- long lLowGain)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Low Gain",
- lLowGain,
- EAXEQUALIZER_MINLOWGAIN,
- EAXEQUALIZER_MAXLOWGAIN);
-}
-
-void EaxEqualizerEffect::validate_low_cutoff(
- float flLowCutOff)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Low Cutoff",
- flLowCutOff,
- EAXEQUALIZER_MINLOWCUTOFF,
- EAXEQUALIZER_MAXLOWCUTOFF);
-}
-
-void EaxEqualizerEffect::validate_mid1_gain(
- long lMid1Gain)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Mid1 Gain",
- lMid1Gain,
- EAXEQUALIZER_MINMID1GAIN,
- EAXEQUALIZER_MAXMID1GAIN);
-}
-
-void EaxEqualizerEffect::validate_mid1_center(
- float flMid1Center)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Mid1 Center",
- flMid1Center,
- EAXEQUALIZER_MINMID1CENTER,
- EAXEQUALIZER_MAXMID1CENTER);
-}
-
-void EaxEqualizerEffect::validate_mid1_width(
- float flMid1Width)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Mid1 Width",
- flMid1Width,
- EAXEQUALIZER_MINMID1WIDTH,
- EAXEQUALIZER_MAXMID1WIDTH);
-}
-
-void EaxEqualizerEffect::validate_mid2_gain(
- long lMid2Gain)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Mid2 Gain",
- lMid2Gain,
- EAXEQUALIZER_MINMID2GAIN,
- EAXEQUALIZER_MAXMID2GAIN);
-}
-
-void EaxEqualizerEffect::validate_mid2_center(
- float flMid2Center)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Mid2 Center",
- flMid2Center,
- EAXEQUALIZER_MINMID2CENTER,
- EAXEQUALIZER_MAXMID2CENTER);
-}
-
-void EaxEqualizerEffect::validate_mid2_width(
- float flMid2Width)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "Mid2 Width",
- flMid2Width,
- EAXEQUALIZER_MINMID2WIDTH,
- EAXEQUALIZER_MAXMID2WIDTH);
-}
-
-void EaxEqualizerEffect::validate_high_gain(
- long lHighGain)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "High Gain",
- lHighGain,
- EAXEQUALIZER_MINHIGHGAIN,
- EAXEQUALIZER_MAXHIGHGAIN);
-}
-
-void EaxEqualizerEffect::validate_high_cutoff(
- float flHighCutOff)
-{
- eax_validate_range<EaxEqualizerEffectException>(
- "High Cutoff",
- flHighCutOff,
- EAXEQUALIZER_MINHIGHCUTOFF,
- EAXEQUALIZER_MAXHIGHCUTOFF);
-}
-
-void EaxEqualizerEffect::validate_all(
- const EAXEQUALIZERPROPERTIES& all)
-{
- validate_low_gain(all.lLowGain);
- validate_low_cutoff(all.flLowCutOff);
- validate_mid1_gain(all.lMid1Gain);
- validate_mid1_center(all.flMid1Center);
- validate_mid1_width(all.flMid1Width);
- validate_mid2_gain(all.lMid2Gain);
- validate_mid2_center(all.flMid2Center);
- validate_mid2_width(all.flMid2Width);
- validate_high_gain(all.lHighGain);
- validate_high_cutoff(all.flHighCutOff);
-}
-
-void EaxEqualizerEffect::defer_low_gain(
- long lLowGain)
-{
- eax_d_.lLowGain = lLowGain;
- eax_dirty_flags_.lLowGain = (eax_.lLowGain != eax_d_.lLowGain);
-}
-
-void EaxEqualizerEffect::defer_low_cutoff(
- float flLowCutOff)
-{
- eax_d_.flLowCutOff = flLowCutOff;
- eax_dirty_flags_.flLowCutOff = (eax_.flLowCutOff != eax_d_.flLowCutOff);
-}
-
-void EaxEqualizerEffect::defer_mid1_gain(
- long lMid1Gain)
-{
- eax_d_.lMid1Gain = lMid1Gain;
- eax_dirty_flags_.lMid1Gain = (eax_.lMid1Gain != eax_d_.lMid1Gain);
-}
-
-void EaxEqualizerEffect::defer_mid1_center(
- float flMid1Center)
-{
- eax_d_.flMid1Center = flMid1Center;
- eax_dirty_flags_.flMid1Center = (eax_.flMid1Center != eax_d_.flMid1Center);
-}
-
-void EaxEqualizerEffect::defer_mid1_width(
- float flMid1Width)
-{
- eax_d_.flMid1Width = flMid1Width;
- eax_dirty_flags_.flMid1Width = (eax_.flMid1Width != eax_d_.flMid1Width);
-}
-
-void EaxEqualizerEffect::defer_mid2_gain(
- long lMid2Gain)
-{
- eax_d_.lMid2Gain = lMid2Gain;
- eax_dirty_flags_.lMid2Gain = (eax_.lMid2Gain != eax_d_.lMid2Gain);
-}
-
-void EaxEqualizerEffect::defer_mid2_center(
- float flMid2Center)
-{
- eax_d_.flMid2Center = flMid2Center;
- eax_dirty_flags_.flMid2Center = (eax_.flMid2Center != eax_d_.flMid2Center);
-}
-
-void EaxEqualizerEffect::defer_mid2_width(
- float flMid2Width)
-{
- eax_d_.flMid2Width = flMid2Width;
- eax_dirty_flags_.flMid2Width = (eax_.flMid2Width != eax_d_.flMid2Width);
-}
-
-void EaxEqualizerEffect::defer_high_gain(
- long lHighGain)
-{
- eax_d_.lHighGain = lHighGain;
- eax_dirty_flags_.lHighGain = (eax_.lHighGain != eax_d_.lHighGain);
-}
-
-void EaxEqualizerEffect::defer_high_cutoff(
- float flHighCutOff)
-{
- eax_d_.flHighCutOff = flHighCutOff;
- eax_dirty_flags_.flHighCutOff = (eax_.flHighCutOff != eax_d_.flHighCutOff);
-}
-
-void EaxEqualizerEffect::defer_all(
- const EAXEQUALIZERPROPERTIES& all)
-{
- defer_low_gain(all.lLowGain);
- defer_low_cutoff(all.flLowCutOff);
- defer_mid1_gain(all.lMid1Gain);
- defer_mid1_center(all.flMid1Center);
- defer_mid1_width(all.flMid1Width);
- defer_mid2_gain(all.lMid2Gain);
- defer_mid2_center(all.flMid2Center);
- defer_mid2_width(all.flMid2Width);
- defer_high_gain(all.lHighGain);
- defer_high_cutoff(all.flHighCutOff);
-}
-
-void EaxEqualizerEffect::defer_low_gain(
- const EaxEaxCall& eax_call)
-{
- const auto& low_gain =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::lLowGain)>();
-
- validate_low_gain(low_gain);
- defer_low_gain(low_gain);
-}
-
-void EaxEqualizerEffect::defer_low_cutoff(
- const EaxEaxCall& eax_call)
-{
- const auto& low_cutoff =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::flLowCutOff)>();
-
- validate_low_cutoff(low_cutoff);
- defer_low_cutoff(low_cutoff);
-}
-
-void EaxEqualizerEffect::defer_mid1_gain(
- const EaxEaxCall& eax_call)
-{
- const auto& mid1_gain =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::lMid1Gain)>();
-
- validate_mid1_gain(mid1_gain);
- defer_mid1_gain(mid1_gain);
-}
-
-void EaxEqualizerEffect::defer_mid1_center(
- const EaxEaxCall& eax_call)
-{
- const auto& mid1_center =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::flMid1Center)>();
-
- validate_mid1_center(mid1_center);
- defer_mid1_center(mid1_center);
-}
-
-void EaxEqualizerEffect::defer_mid1_width(
- const EaxEaxCall& eax_call)
-{
- const auto& mid1_width =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::flMid1Width)>();
-
- validate_mid1_width(mid1_width);
- defer_mid1_width(mid1_width);
-}
-
-void EaxEqualizerEffect::defer_mid2_gain(
- const EaxEaxCall& eax_call)
-{
- const auto& mid2_gain =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::lMid2Gain)>();
-
- validate_mid2_gain(mid2_gain);
- defer_mid2_gain(mid2_gain);
-}
-
-void EaxEqualizerEffect::defer_mid2_center(
- const EaxEaxCall& eax_call)
-{
- const auto& mid2_center =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::flMid2Center)>();
-
- validate_mid2_center(mid2_center);
- defer_mid2_center(mid2_center);
-}
-
-void EaxEqualizerEffect::defer_mid2_width(
- const EaxEaxCall& eax_call)
-{
- const auto& mid2_width =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::flMid2Width)>();
-
- validate_mid2_width(mid2_width);
- defer_mid2_width(mid2_width);
-}
-
-void EaxEqualizerEffect::defer_high_gain(
- const EaxEaxCall& eax_call)
+void EaxEqualizerEffect::set(const EaxCall& call, Props& props)
{
- const auto& high_gain =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::lHighGain)>();
-
- validate_high_gain(high_gain);
- defer_high_gain(high_gain);
-}
-
-void EaxEqualizerEffect::defer_high_cutoff(
- const EaxEaxCall& eax_call)
-{
- const auto& high_cutoff =
- eax_call.get_value<EaxEqualizerEffectException, const decltype(EAXEQUALIZERPROPERTIES::flHighCutOff)>();
-
- validate_high_cutoff(high_cutoff);
- defer_high_cutoff(high_cutoff);
-}
-
-void EaxEqualizerEffect::defer_all(
- const EaxEaxCall& eax_call)
-{
- const auto& all =
- eax_call.get_value<EaxEqualizerEffectException, const EAXEQUALIZERPROPERTIES>();
-
- validate_all(all);
- defer_all(all);
-}
-
-// [[nodiscard]]
-bool EaxEqualizerEffect::apply_deferred()
-{
- if (eax_dirty_flags_ == EaxEqualizerEffectDirtyFlags{})
+ switch(call.get_property_id())
{
- return false;
+ case EAXEQUALIZER_NONE: break;
+ case EAXEQUALIZER_ALLPARAMETERS: defer<AllValidator>(call, props); break;
+ case EAXEQUALIZER_LOWGAIN: defer<LowGainValidator>(call, props.lLowGain); break;
+ case EAXEQUALIZER_LOWCUTOFF: defer<LowCutOffValidator>(call, props.flLowCutOff); break;
+ case EAXEQUALIZER_MID1GAIN: defer<Mid1GainValidator>(call, props.lMid1Gain); break;
+ case EAXEQUALIZER_MID1CENTER: defer<Mid1CenterValidator>(call, props.flMid1Center); break;
+ case EAXEQUALIZER_MID1WIDTH: defer<Mid1WidthValidator>(call, props.flMid1Width); break;
+ case EAXEQUALIZER_MID2GAIN: defer<Mid2GainValidator>(call, props.lMid2Gain); break;
+ case EAXEQUALIZER_MID2CENTER: defer<Mid2CenterValidator>(call, props.flMid2Center); break;
+ case EAXEQUALIZER_MID2WIDTH: defer<Mid2WidthValidator>(call, props.flMid2Width); break;
+ case EAXEQUALIZER_HIGHGAIN: defer<HighGainValidator>(call, props.lHighGain); break;
+ case EAXEQUALIZER_HIGHCUTOFF: defer<HighCutOffValidator>(call, props.flHighCutOff); break;
+ default: fail_unknown_property_id();
}
+}
- eax_ = eax_d_;
+bool EaxEqualizerEffect::commit_props(const Props& props)
+{
+ auto is_dirty = false;
- if (eax_dirty_flags_.lLowGain)
+ if (props_.lLowGain != props.lLowGain)
{
+ is_dirty = true;
set_efx_low_gain();
}
- if (eax_dirty_flags_.flLowCutOff)
+ if (props_.flLowCutOff != props.flLowCutOff)
{
+ is_dirty = true;
set_efx_low_cutoff();
}
- if (eax_dirty_flags_.lMid1Gain)
+ if (props_.lMid1Gain != props.lMid1Gain)
{
+ is_dirty = true;
set_efx_mid1_gain();
}
- if (eax_dirty_flags_.flMid1Center)
+ if (props_.flMid1Center != props.flMid1Center)
{
+ is_dirty = true;
set_efx_mid1_center();
}
- if (eax_dirty_flags_.flMid1Width)
+ if (props_.flMid1Width != props.flMid1Width)
{
+ is_dirty = true;
set_efx_mid1_width();
}
- if (eax_dirty_flags_.lMid2Gain)
+ if (props_.lMid2Gain != props.lMid2Gain)
{
+ is_dirty = true;
set_efx_mid2_gain();
}
- if (eax_dirty_flags_.flMid2Center)
+ if (props_.flMid2Center != props.flMid2Center)
{
+ is_dirty = true;
set_efx_mid2_center();
}
- if (eax_dirty_flags_.flMid2Width)
+ if (props_.flMid2Width != props.flMid2Width)
{
+ is_dirty = true;
set_efx_mid2_width();
}
- if (eax_dirty_flags_.lHighGain)
+ if (props_.lHighGain != props.lHighGain)
{
+ is_dirty = true;
set_efx_high_gain();
}
- if (eax_dirty_flags_.flHighCutOff)
+ if (props_.flHighCutOff != props.flHighCutOff)
{
+ is_dirty = true;
set_efx_high_cutoff();
}
- eax_dirty_flags_ = EaxEqualizerEffectDirtyFlags{};
-
- return true;
-}
-
-void EaxEqualizerEffect::set(const EaxEaxCall& eax_call)
-{
- switch(eax_call.get_property_id())
- {
- case EAXEQUALIZER_NONE:
- break;
-
- case EAXEQUALIZER_ALLPARAMETERS:
- defer_all(eax_call);
- break;
-
- case EAXEQUALIZER_LOWGAIN:
- defer_low_gain(eax_call);
- break;
-
- case EAXEQUALIZER_LOWCUTOFF:
- defer_low_cutoff(eax_call);
- break;
-
- case EAXEQUALIZER_MID1GAIN:
- defer_mid1_gain(eax_call);
- break;
-
- case EAXEQUALIZER_MID1CENTER:
- defer_mid1_center(eax_call);
- break;
-
- case EAXEQUALIZER_MID1WIDTH:
- defer_mid1_width(eax_call);
- break;
-
- case EAXEQUALIZER_MID2GAIN:
- defer_mid2_gain(eax_call);
- break;
-
- case EAXEQUALIZER_MID2CENTER:
- defer_mid2_center(eax_call);
- break;
-
- case EAXEQUALIZER_MID2WIDTH:
- defer_mid2_width(eax_call);
- break;
-
- case EAXEQUALIZER_HIGHGAIN:
- defer_high_gain(eax_call);
- break;
-
- case EAXEQUALIZER_HIGHCUTOFF:
- defer_high_cutoff(eax_call);
- break;
-
- default:
- throw EaxEqualizerEffectException{"Unsupported property id."};
- }
+ return is_dirty;
}
} // namespace
-EaxEffectUPtr eax_create_eax_equalizer_effect()
+EaxEffectUPtr eax_create_eax_equalizer_effect(const EaxCall& call)
{
- return std::make_unique<EaxEqualizerEffect>();
+ return eax_create_eax4_effect<EaxEqualizerEffect>(call);
}
#endif // ALSOFT_EAX