Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
tapped_delay.hh
1//
2// YASE TappedDelay 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_TAPPEDDELAY_H
22#define YASE_TAPPEDDELAY_H
23
24#include "yase.hh"
25
26namespace yase {
27
29
54
55 class TappedDelay : public Module {
56
57 public:
58
59 TappedDelay(double duration);
61 void init();
62 void update();
63 string add_tap();
64
65 private:
66
67 double duration;
68 int duration_in_samples;
69 int signal;
70 double * buffer;
71 int buffer_index;
72
73 double tap_position(int i);
74 void add_sample(double u);
75 int fix(int n);
76 double get_value(double position);
77
78 };
79
80}
81
82#endif
An abstract base class for modules.
Definition module.hh:39
A linearly interpolated, tappable digital delay using a circular buffer.
Definition tapped_delay.hh:55
string add_tap()
Definition tapped_delay.cc:39
void init()
Definition tapped_delay.cc:47
void update()
Definition tapped_delay.cc:53
Definition additive_saw.cc:24