diff options
author | Chris Robinson <[email protected]> | 2022-02-07 11:44:14 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-02-07 11:44:14 -0800 |
commit | 1807e083c8a4579979748d062e7b54a19c3b76b9 (patch) | |
tree | af61fa2eb6f6166a9d3f78972cec9d1f1d222aa5 /al | |
parent | 0c507b5c621993206d94fc3776174eb96823f265 (diff) |
Avoid eax_al_source_i/f wrappers
Diffstat (limited to 'al')
-rw-r--r-- | al/source.cpp | 75 | ||||
-rw-r--r-- | al/source.h | 10 |
2 files changed, 22 insertions, 63 deletions
diff --git a/al/source.cpp b/al/source.cpp index a306404c..02df86e4 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -4016,11 +4016,13 @@ void ALsource::eax_initialize_fx_slots() void ALsource::eax_update_direct_filter_internal() { const auto& direct_param = eax_create_direct_filter_param(); - eax_set_al_filter_parameters(direct_param); - eax_al_source_i( - AL_DIRECT_FILTER, - static_cast<ALint>(eax_al_filter_->id)); + Direct.Gain = direct_param.gain; + Direct.GainHF = direct_param.gain_hf; + Direct.HFReference = LOWPASSFREQREF; + Direct.GainLF = 1.0f; + Direct.LFReference = HIGHPASSFREQREF; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_update_room_filters_internal() @@ -5377,34 +5379,26 @@ void ALsource::eax_set_outside_volume_hf() AL_MAX_CONE_OUTER_GAINHF ); - eax_al_source_f( - AL_CONE_OUTER_GAINHF, - efx_gain_hf - ); + OuterGainHF = efx_gain_hf; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_doppler_factor() { - eax_al_source_f( - AL_DOPPLER_FACTOR, - eax_.source.flDopplerFactor - ); + DopplerFactor = eax_.source.flDopplerFactor; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_rolloff_factor() { - eax_al_source_f( - AL_ROLLOFF_FACTOR, - eax_.source.flRolloffFactor - ); + RolloffFactor = eax_.source.flRolloffFactor; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_room_rolloff_factor() { - eax_al_source_f( - AL_ROOM_ROLLOFF_FACTOR, - eax_.source.flRoomRolloffFactor - ); + RoomRolloffFactor = eax_.source.flRoomRolloffFactor; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_air_absorption_factor() @@ -5412,43 +5406,32 @@ void ALsource::eax_set_air_absorption_factor() const auto air_absorption_factor = eax_al_context_->eax_get_air_absorption_factor() * eax_.source.flAirAbsorptionFactor; - eax_al_source_f( - AL_AIR_ABSORPTION_FACTOR, - air_absorption_factor - ); + AirAbsorptionFactor = air_absorption_factor; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_direct_hf_auto_flag() { const auto is_enable = (eax_.source.ulFlags & EAXSOURCEFLAGS_DIRECTHFAUTO) != 0; - const auto al_value = static_cast<ALint>(is_enable ? AL_TRUE : AL_FALSE); - eax_al_source_i( - AL_DIRECT_FILTER_GAINHF_AUTO, - al_value - ); + DryGainHFAuto = is_enable; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_room_auto_flag() { const auto is_enable = (eax_.source.ulFlags & EAXSOURCEFLAGS_ROOMAUTO) != 0; - const auto al_value = static_cast<ALint>(is_enable ? AL_TRUE : AL_FALSE); - eax_al_source_i( - AL_AUXILIARY_SEND_FILTER_GAIN_AUTO, - al_value - ); + WetGainAuto = is_enable; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_room_hf_auto_flag() { const auto is_enable = (eax_.source.ulFlags & EAXSOURCEFLAGS_ROOMHFAUTO) != 0; - const auto al_value = static_cast<ALint>(is_enable ? AL_TRUE : AL_FALSE); - eax_al_source_i( - AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO, - al_value - ); + WetGainHFAuto = is_enable; + UpdateSourceProps(this, eax_al_context_); } void ALsource::eax_set_flags() @@ -6059,20 +6042,6 @@ void ALsource::eax_get( } } -void ALsource::eax_al_source_i( - ALenum param, - ALint value) -{ - SetSourceiv(this, eax_al_context_, static_cast<SourceProp>(param), {&value, 1}); -} - -void ALsource::eax_al_source_f( - ALenum param, - ALfloat value) -{ - SetSourcefv(this, eax_al_context_, static_cast<SourceProp>(param), {&value, 1}); -} - void ALsource::eax_al_source_3i( ALenum param, ALint value1, diff --git a/al/source.h b/al/source.h index 2fbb7b22..691de3a9 100644 --- a/al/source.h +++ b/al/source.h @@ -806,16 +806,6 @@ private: const EaxEaxCall& eax_call); - // `alSourcei` - void eax_al_source_i( - ALenum param, - ALint value); - - // `alSourcef` - void eax_al_source_f( - ALenum param, - ALfloat value); - // `alSource3i` void eax_al_source_3i( ALenum param, |