Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
fadable_delay.hh
1//
2// YASE Fadable Delay 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_FADABLE_DELAY_H
22#define YASE_FADABLE_DELAY_H
23
24#include "delay.hh"
25#include "container.hh"
26
27namespace yase {
28
30
54 class FadableDelay : public Container {
55
56 public:
57
58 typedef enum { NORMAL, RECORDING, FADING } STATE;
59 const double FADE_TIME = 0.1;
60
62 void init();
63 void update();
64
65 private:
66
67 int current, signal, duration; // indices
68 int current_duration;
69 STATE state;
70 Delay delays[2];
71 double fade;
72 int counter;
73
74 };
75
76}
77
78#endif
79
A module and event manager that can contain other modules.
Definition container.hh:63
A pure digital delay using a doubled ended queue.
Definition delay.hh:39
A time modulatable delay.
Definition fadable_delay.hh:54
void update()
Definition fadable_delay.cc:50
void init()
Definition fadable_delay.cc:46
Definition additive_saw.cc:24