ScummVM API documentation
hmifxfp.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef AUDIO_EFFECTS_HMI_HMIFXFP_H
23 #define AUDIO_EFFECTS_HMI_HMIFXFP_H
24 
25 #include "audio/effects/hmi/interfaces/envelope.h"
26 #include "audio/effects/hmi/interfaces/filter1.h"
27 #include "audio/effects/hmi/interfaces/mono_delay.h"
28 #include "audio/effects/hmi/interfaces/phasor.h"
29 #include "audio/effects/hmi/interfaces/resonator.h"
30 #include "audio/effects/hmi/interfaces/reverb1.h"
31 #include "audio/effects/hmi/interfaces/reverb2.h"
32 #include "audio/effects/hmi/interfaces/ring_modulator.h"
33 #include "audio/effects/hmi/interfaces/stereo_delay.h"
34 
35 namespace Audio {
36 
37 class HMIFxFp {
38 public:
39  HMIFxFp();
40  int hmiFXGetInterfaceList(HMIInterface ***outList);
41 
42 private:
43  void initializeInterfaces();
44 
45  HMIMonoDelay _monoDelay;
46  HMIStereoDelay _stereoDelay;
47  HMIReverb1 _reverb1;
48  HMIFilter1 _filter1;
49  HMIRingModulator _ringModulator;
50  HMIEnvelope _envelope;
51  HMIResonator _resonator;
52  HMIPhasor _phasor;
53  HMIReverb2 _reverb2;
54  HMIInterface *_interfaceList[10] = {nullptr};
55 };
56 
57 } // End of namespace Audio
58 
59 #endif
Definition: filter1.h:29
Definition: mono_delay.h:29
Definition: envelope.h:29
Definition: hmi_interface.h:31
Definition: phasor.h:29
Definition: ring_modulator.h:29
Definition: hmifxfp.h:37
Definition: reverb2.h:29
Definition: stereo_delay.h:29
Definition: system.h:39
Definition: resonator.h:29
Definition: reverb1.h:29