Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
fader.hh
1//
2// YASE Fader 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_FADER_H
22#define YASE_FADER_H
23
24#include "module.hh"
25
26namespace yase {
27
29
40 class Fader : public Module {
41
42 public:
43
44 Fader();
45 Fader(double min, double max);
46 void init();
47 void update();
48 void randomize();
49
52 inline void set_tracking_gain(double x) { tracking_gain = x; }
53
55 inline void linear() { is_linear = true; }
56
60 inline void exponential(double b) { is_linear = false; base = b; }
61
62 private:
63
64 double adjusted_target();
65
66 double min_val,
67 max_val,
68 tracking_gain,
69 base;
70
71 int target, value;
72
73 bool is_linear;
74
75 };
76
77}
78
79#endif
A Fader Module maps an input target to an output value.
Definition fader.hh:40
void randomize()
Set the target of the fader to a random value from within its min and max values.
Definition fader.cc:64
Fader()
Construct a new fader with range [0,1]. The default response is linear. And the default tracking gain...
Definition fader.cc:39
void init()
Definition fader.cc:45
void set_tracking_gain(double x)
Definition fader.hh:52
void linear()
Set the response of the fader to lienar.
Definition fader.hh:55
void update()
Definition fader.cc:59
void exponential(double b)
Definition fader.hh:60
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24