Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
controls.hh
1//
2// YASE Controls 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_CONTROLS_H
22#define YASE_CONTROLS_H
23
24#include "yase.hh"
25#include "json.hpp"
26
27namespace yase {
28
30
81
82 class Controls : public Container {
83
84 public:
85
86 Controls();
87 ~Controls();
88 void init();
89 void update();
90
91 Controls &map(Fader &fader, int midi_id);
92 Controls &map(Module &module, string name, double min, double max, int midi_id);
93 Controls &map(Module &module, int index, double min, double max, int midi_id);
94 Controls &map(Module &module, string name, json spec) ;
95
96 Controls &set_tracking_gain(double x);
98 Controls &exponential(double base);
99
100 void randomize();
101
102 private:
103
104 std::vector<Fader *> faders;
105
106 };
107
108}
109
110#endif
A module and event manager that can contain other modules.
Definition container.hh:63
Use a Controls object to connect MIDI knobs and faders to Module inputs.
Definition controls.hh:82
Controls & set_tracking_gain(double x)
Definition controls.cc:133
Controls & map(Fader &fader, int midi_id)
Definition controls.cc:50
void randomize()
Randomly assign a value to all controls.
Definition controls.cc:158
void init()
Definition controls.cc:39
Controls & linear()
Set the most recently added control's response to linear.
Definition controls.cc:141
void update()
Definition controls.cc:43
Controls & exponential(double base)
Definition controls.cc:150
A Fader Module maps an input target to an output value.
Definition fader.hh:40
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24