Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
echo.hh
1//
2// YASE Echo Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_ECHO_H
22#define YASE_ECHO_H
23
24#include "yase.hh"
25
26namespace yase {
27
29
34 class Echo : public Container {
35
36 public:
37
38 Echo();
39 void init();
40 void update();
41
42 private:
43
44 Sum sum;
45 FadableDelay delay;
46 Gain gain;
47
48 int signal, // Indices of inputs and outputs
49 amplitude,
50 duration;
51
52 };
53
54}
55
56#endif
A module and event manager that can contain other modules.
Definition container.hh:63
An echo module incorporating a fadable delay in a feedback configuration.
Definition echo.hh:34
void update()
Definition echo.cc:51
void init()
Definition echo.cc:47
A time modulatable delay.
Definition fadable_delay.hh:54
Amplifies (or attenuates) its input signal to get the output signal.
Definition gain.hh:38
Summing Module.
Definition sum.hh:33
Definition additive_saw.cc:24