Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
delay.hh
1//
2// YASE 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_DELAY_H
22#define YASE_DELAY_H
23
24#include "module.hh"
25#include <deque>
26
27using namespace std;
28
29namespace yase {
30
32
39 class Delay : public Module {
40
41 public:
42
43 Delay(int duration);
44 Delay();
45 void init();
46 void update();
47 void clear();
48
49 void set(int new_duration);
50 bool is_full();
51
52 private:
53
54 deque<double> buffer;
55 int signal, duration;
56
57 };
58
59}
60
61#endif
A pure digital delay using a doubled ended queue.
Definition delay.hh:39
void update()
Definition delay.cc:66
void set(int new_duration)
Definition delay.cc:39
void clear()
Clear the delay buffer.
Definition delay.cc:52
void init()
Definition delay.cc:62
bool is_full()
Definition delay.cc:58
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24