aboutsummaryrefslogtreecommitdiffstats
path: root/al/auxeffectslot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'al/auxeffectslot.cpp')
-rw-r--r--al/auxeffectslot.cpp54
1 files changed, 40 insertions, 14 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp
index 4cc26f0a..a322cb71 100644
--- a/al/auxeffectslot.cpp
+++ b/al/auxeffectslot.cpp
@@ -1182,7 +1182,7 @@ long ALeffectslot::eax_get_eax_default_lock() const noexcept
return eax4_fx_slot_is_legacy() ? EAXFXSLOT_LOCKED : EAXFXSLOT_UNLOCKED;
}
-void ALeffectslot::eax4_fx_slot_set_defaults(Eax4Props& props)
+void ALeffectslot::eax4_fx_slot_set_defaults(Eax4Props& props) noexcept
{
props.guidLoadEffect = eax_get_eax_default_effect_guid();
props.lVolume = EAXFXSLOT_DEFAULTVOLUME;
@@ -1190,32 +1190,58 @@ void ALeffectslot::eax4_fx_slot_set_defaults(Eax4Props& props)
props.ulFlags = EAX40FXSLOT_DEFAULTFLAGS;
}
-void ALeffectslot::eax4_fx_slot_set_defaults()
+void ALeffectslot::eax5_fx_slot_set_defaults(Eax5Props& props) noexcept
{
- eax4_fx_slot_set_defaults(eax4_.i);
+ props.guidLoadEffect = eax_get_eax_default_effect_guid();
+ props.lVolume = EAXFXSLOT_DEFAULTVOLUME;
+ props.lLock = EAXFXSLOT_UNLOCKED;
+ props.ulFlags = EAX50FXSLOT_DEFAULTFLAGS;
+ props.lOcclusion = EAXFXSLOT_DEFAULTOCCLUSION;
+ props.flOcclusionLFRatio = EAXFXSLOT_DEFAULTOCCLUSIONLFRATIO;
}
-void ALeffectslot::eax5_fx_slot_set_defaults(Eax5Props& props)
+void ALeffectslot::eax4_fx_slot_set_current_defaults(const Eax4Props& props) noexcept
{
- eax4_fx_slot_set_defaults(static_cast<Eax4Props&>(props));
- props.lOcclusion = EAXFXSLOT_DEFAULTOCCLUSION;
- props.flOcclusionLFRatio = EAXFXSLOT_DEFAULTOCCLUSIONLFRATIO;
+ static_cast<Eax4Props&>(eax_) = props;
+ eax_.lOcclusion = EAXFXSLOT_DEFAULTOCCLUSION;
+ eax_.flOcclusionLFRatio = EAXFXSLOT_DEFAULTOCCLUSIONLFRATIO;
}
-void ALeffectslot::eax5_fx_slot_set_defaults()
+void ALeffectslot::eax5_fx_slot_set_current_defaults(const Eax5Props& props) noexcept
{
- eax5_fx_slot_set_defaults(eax5_.i);
+ eax_ = props;
}
-void ALeffectslot::eax_fx_slot_set_defaults()
+void ALeffectslot::eax_fx_slot_set_current_defaults()
{
- eax4_fx_slot_set_defaults();
- eax5_fx_slot_set_defaults();
- eax123_ = eax5_;
- eax_ = eax5_.i;
+ switch(eax_version_)
+ {
+ case 1:
+ case 2:
+ case 3:
+ eax5_fx_slot_set_current_defaults(eax123_.i);
+ break;
+ case 4:
+ eax4_fx_slot_set_current_defaults(eax4_.i);
+ break;
+ case 5:
+ eax5_fx_slot_set_current_defaults(eax5_.i);
+ break;
+ default:
+ eax_fail_unknown_version();
+ }
+
eax_df_ = ~EaxDirtyFlags{};
}
+void ALeffectslot::eax_fx_slot_set_defaults()
+{
+ eax5_fx_slot_set_defaults(eax123_.i);
+ eax4_fx_slot_set_defaults(eax4_.i);
+ eax5_fx_slot_set_defaults(eax5_.i);
+ eax_fx_slot_set_current_defaults();
+}
+
void ALeffectslot::eax4_fx_slot_get(const EaxCall& call, const Eax4Props& props) const
{
switch(call.get_property_id())