Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
envelope.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_ENVELOPE_H
22#define YASE_ENVELOPE_H
23
24#include "yase.hh"
25
26namespace yase {
27
28 class Envelope;
29
30 typedef void (Envelope::*UpdateFunction)();
31
33
50 class Envelope : public Triggerable {
51
52 public:
53
54 Envelope();
55 void init();
56 void update();
57 void trigger();
58 void release();
59 void set_adsr(double aa, double dd, double ss, double rr);
60
61 private:
62
63 // i/o indices
64 int signal,
65 a,d,s,r,
66 velocity;
67
68 UpdateFunction update_fcn;
69
70 double amplitude;
71
72 void off();
73 void attack();
74 void decay();
75 void sustain();
76 void _release();
77
78 };
79
80}
81
82#endif
An ADSR envelope.
Definition envelope.hh:50
void init()
Definition envelope.cc:86
void set_adsr(double aa, double dd, double ss, double rr)
Definition envelope.cc:79
void update()
Definition envelope.cc:98
Definition triggerable.hh:28
Definition additive_saw.cc:24