Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
oscillator.hh
1//
2// YASE Oscillator 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_OSCILLATOR_H
22#define YASE_OSCILLATOR_H
23
24#include "module.hh"
25
26namespace yase {
27
29
41
42 class Oscillator : public Module {
43
44 public:
45
46 Oscillator();
47 void init();
48 virtual void update();
49
50 protected:
51
52 double phase;
53
54 int frequency, // local names for I/O indices
55 signal, // These need to be protected instead of private
56 amplitude, // so that derived classes can use them
57 modulation,
58 tuning,
59 harmonic;
60
61 };
62
63}
64
65#endif
An abstract base class for modules.
Definition module.hh:39
An abstract base class from which oscillators like Sine, Saw, and Triangle are derived.
Definition oscillator.hh:42
virtual void update()
Definition oscillator.cc:44
void init()
Definition oscillator.cc:40
Definition additive_saw.cc:24