Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
impulse.hh
1//
2// YASE Impulse 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_IMPULSE_H
22#define YASE_IMPULSE_H
23
24#include "yase.hh"
25
26namespace yase {
27
29
35
36 class Impulse : public Triggerable {
37
38 typedef void (Impulse::*UpdateFunction)();
39
40 public:
41
42 Impulse();
43
44 void trigger();
45 void release() {}
46
47 void set(int k);
48 void init();
49 void update();
50 void set_type(std::string);
51
52 private:
53
54 int length, n, signal;
55 UpdateFunction update_fcn;
56 void square();
57 void random();
58
59 };
60
61}
62
63#endif
An impulse.
Definition impulse.hh:36
void set(int k)
Definition impulse.cc:75
void trigger()
Trigger the impulse.
Definition impulse.cc:68
void init()
Definition impulse.cc:32
void set_type(std::string)
Definition impulse.cc:43
void update()
Definition impulse.cc:36
Definition triggerable.hh:28
Definition additive_saw.cc:24