fsh::stk
fantastic spatial holophonic synthesis toolkit
All Classes Functions Variables Typedefs Enumerations Enumerator Pages
FDNReverb.h
1/***************************************************************************************************
2 ██████ █████ █████ █████
3 ███░░███ ░░███ ░░███ ░░███
4 ░███ ░░░ █████ ░███████ ██ ██ █████ ███████ ░███ █████
5 ███████ ███░░ ░███░░███ ░░ ░░ ███░░ ░░░███░ ░███░░███
6 ░░░███░ ░░█████ ░███ ░███ ░░█████ ░███ ░██████░
7 ░███ ░░░░███ ░███ ░███ ░░░░███ ░███ ███ ░███░░███
8 █████ ██████ ████ █████ ██ ██ ██████ ░░█████ ████ █████
9 ░░░░░ ░░░░░░ ░░░░ ░░░░░ ░░ ░░ ░░░░░░ ░░░░░ ░░░░ ░░░░░
10
11 fantastic spatial holophonic synthesis tool kit
12
13 copyright (c) fabian hummel
14 www.github.com/fshstk
15 www.fshstk.com
16
17 this file is part of the fantastic spatial holophonic synthesis toolkit (fsh::stk)
18 fsh::stk is free software: it is provided under the terms of the gnu general public license v3.0
19 www.gnu.org/licenses/gpl-3.0
20***************************************************************************************************/
21
22#pragma once
23#include "IndexedVector.h"
24#include <juce_dsp/juce_dsp.h>
25
26namespace fsh::fx
27{
39{
40public:
42 static constexpr size_t fdnSize = 64;
43
45 struct Params
46 {
47 float roomSize = 0.0f;
48 float revTime = 0.0f;
49 float dryWet = 0.0f;
50 };
51
53 enum class Preset
54 {
55 Off = 0,
56 Earth,
57 Metal,
58 Sky,
59 };
60
62 FDNReverb();
63
65 void setParams(const Params&);
66
68 void setPreset(Preset);
69
71 void setSampleRate(double);
72
74 void process(juce::AudioBuffer<float>&);
75
77 void reset();
78
79private:
80 std::array<util::IndexedVector, fdnSize> delayBuffers;
81 std::array<float, fdnSize> feedbackGains = {};
82 std::array<float, fdnSize> transferVector = {};
83 std::vector<unsigned> primeNumbers;
84
85 Params params;
86 double sampleRate = 0.0;
87
88 void updateParameterSettings();
89};
90} // namespace fsh::fx
Ambisonic FDN reverb algorithm.
Definition FDNReverb.h:39
void process(juce::AudioBuffer< float > &)
Apply the FDN reverb algorithm to the given ambisonic audio buffer.
Definition FDNReverb.cpp:138
void setParams(const Params &)
Set the parameters for the FDN reverb algorithm directly.
Definition FDNReverb.cpp:195
FDNReverb()
Default constructor.
Definition FDNReverb.cpp:132
Preset
Presets for the FDN reverb algorithm.
Definition FDNReverb.h:54
@ Sky
Large room with a long reverberation time.
@ Earth
Small room with a short reverberation time.
@ Metal
Medium-sized room with a medium reverberation time.
void reset()
Clear the delay buffers.
Definition FDNReverb.cpp:215
static constexpr size_t fdnSize
The number of delay lines in the FDN.
Definition FDNReverb.h:42
void setPreset(Preset)
Set the parameters for the FDN reverb algorithm using a preset.
Definition FDNReverb.cpp:201
void setSampleRate(double)
Set the sample rate. Must be called before calling process().
Definition FDNReverb.cpp:209
Parameters for the FDN reverb algorithm.
Definition FDNReverb.h:46
float revTime
Reverberation time in seconds.
Definition FDNReverb.h:48
float dryWet
Dry/wet mix [0, 1].
Definition FDNReverb.h:49
float roomSize
Room size in meters.
Definition FDNReverb.h:47