Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
mixer.hh
1//
2// YASE Mixer 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_MIXER_H
22#define YASE_MIXER_H
23
24#include <vector>
25#include "gain.hh"
26#include "sum.hh"
27
28namespace yase {
29
31
37
38 class Mixer : public Module {
39
40 public:
41
42 Mixer(int n);
43 void init();
44 void update();
45
46 inline int amplitude_index(int i) { return n + i; }
47 void set_amplitude_input(int i, double value);
48 double get_amplitude_input(int i);
49 void extend();
50 inline int size() { return n; }
51
52 private:
53
54 int n,
55 signal,
56 output_gain;
57
58 };
59
60}
61
62#endif
A mixer.
Definition mixer.hh:38
void init()
Definition mixer.cc:50
void update()
Definition mixer.cc:52
double get_amplitude_input(int i)
Definition mixer.cc:63
void set_amplitude_input(int i, double value)
Definition mixer.cc:71
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24