aboutsummaryrefslogtreecommitdiffstats
path: root/al/effects/reverb.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename some struct members for clarityChris Robinson2023-03-111-37/+37
|
* Rework EAX effect handlingChris Robinson2023-03-101-1182/+731
| | | | | | | Allocate a base EaxEffect object once for all effect types, instead of reallocating different derived types on effect changes. The reverb and null effects have been converted to the new interface, the others are currently broken/unsupported, but will be restored shortly.
* Add a type indicator to EaxEffectPropsChris Robinson2023-03-091-42/+51
|
* Store the per-version EAX effect state in the base classChris Robinson2023-03-091-100/+72
| | | | | | | | | | | | | | | | This is the start of the refactoring for holding separable per-version EAX effects. Currently the effect state is stored in the effect object, which is instantiated per-type. This makes it impossible for different effects to be assigned on different EAX versions for a given effect slot (e.g. if the app sets a Chorus effect on EAX4 Slot0, it would fail to get or set the EAX1/2/3 reverb properties since it's a Chorus effect object). Seperate per-version effects will allow for switching the OpenAL effect by switching versions. This will provide an extra benefit in being able to delay OpenAL effect initialization until some EAX version has been set, avoiding an extraneous reverb and/or chorus processor for apps that only query some EAX properties but don't set anything (or which only use Slot0, leaving Slot1 with a defaulted Chorus effect running).
* Fixed bug and possible overflow type (#771)Herman Semenov2022-09-231-1/+1
|
* [EAX] Use separate FX slot state for each version (#730)Boris I. Bendovsky2022-07-121-5/+5
| | | | | | | * [EAX] Use separate FX slot state for each version [EAX] Don't defer FX slot properties * [EAX_FXSLOT] Use mPropsDirty to defer update [EAX_CONTEXT] Commit all updates on first initialization
* Don't change the EAX version when getting a reverb propertyChris Robinson2022-06-191-11/+7
|
* Combine multiple individual flagsChris Robinson2022-06-191-52/+34
|
* Avoid more struct compared for reverb EAX updatesChris Robinson2022-06-181-7/+18
|
* [EAX] Add separate effect state for each version (#705)Boris I. Bendovsky2022-05-241-1594/+1054
| | | | | * [EAX] Add separate effect state for each version * [EAX] Don't use EAX call as data member
* Move EAX files to their own sub-directoryChris Robinson2022-05-161-3/+6
|
* Silence reverb with EAX by defaultChris Robinson2022-04-161-0/+6
|
* Revert "Set the proper reverb effect defaults for EAX"Chris Robinson2022-03-241-25/+0
| | | | This reverts commit 964a11ef629fa3a89e827516a47949c858ce864c.
* Set the proper reverb effect defaults for EAXChris Robinson2022-03-231-0/+25
|
* Simplify committing EAX propertiesChris Robinson2022-03-051-38/+13
| | | | | | Based on DirectSound's EAX behavior, committing any EAX property commits *all* deferred property changes, not just the object being changed. So applying EAX changes can be handled in one place.
* Handle deferring for EAX 1 reverbChris Robinson2022-03-041-351/+212
| | | | | I don't know if EAX 1 actually handles deferring updates, but it will simplify future changes.
* Ensure deferred EAX effect properties are committedChris Robinson2022-03-041-3/+3
|
* Remove unused dirty flagsChris Robinson2022-02-211-13/+0
|
* Implement EAX v1.0 (#664)Boris I. Bendovsky2022-02-211-36/+284
|
* Avoid using ALeffect to manage EaxEffect objectsChris Robinson2022-02-071-13/+5
| | | | Effect slots can just use its EaxEffect directly.
* Move ALSOFT_EAX definition to config.hChris Robinson2022-01-301-8/+3
| | | | And disable it by default for non-Windows targets
* Add EAX extensions (EAX 2.0-5.0, X-RAM) (#632)Boris I. Bendovsky2022-01-301-0/+1922
| | | | | | | | | | | | | | | * Add EAX extensions (EAX 2.0-5.0, X-RAM) * Comment out C++17 leftovers * Remove everything related to patching * Update alsoftrc.sample * Rewrite integration * Fix GCC compilation under Linux * Always reset EAX effect properties when loading it into FX slot
* Update include headersChris Robinson2021-04-271-1/+1
| | | | Don't add alc/ to the include paths.
* Move AL EffectProp handling to separate sourcesChris Robinson2020-11-251-0/+556