Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
biquad.hh
1//
2// YASE Biquad 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_BIOQUADLPF_H
22#define YASE_BIOQUADLPF_H
23
24#include "iir_filter.hh"
25#include "yase.hh"
26
27namespace yase {
28
30
36 class Biquad : public IIRFilter {
37
38 typedef void (Biquad::*UpdateFunction)();
39
40 public:
41
42 Biquad();
43 void init();
44 void update();
45 void on();
46 void off();
47 bool toggle();
48
49 void set_type(std::string name);
50 void recalculate();
51
52 private:
53
54 UpdateFunction update_fcn;
55
56 double prev_freq,
57 prev_res,
58 cosw,
59 alpha;
60 int frequency, resonance;
61 bool active, changed;
62
63 void lpf();
64 void hpf();
65 void apf();
66 void bpf();
67
68 };
69
70}
71
72#endif
Standard Biquad filters adapated from https://www.w3.org/TR/audio-eq-cookbook/.
Definition biquad.hh:36
void recalculate()
Definition biquad.cc:98
void on()
Turn the filter on.
Definition biquad.cc:61
bool toggle()
Turn the filter on if it is off and off if it is on.
Definition biquad.cc:72
void off()
Definition biquad.cc:67
void update()
Definition biquad.cc:83
void init()
Definition biquad.cc:77
void set_type(std::string name)
Definition biquad.cc:42
This module implements an Infinite Impulse Response (IIR) filter.
Definition iir_filter.hh:47
Definition additive_saw.cc:24