1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
/*
* Thin C++ wrapper around the C library
*/
#ifndef GUTTERSYNTH_HPP
#define GUTTERSYNTH_HPP
#include "guttersynth.h"
#include <stdexcept>
#include <limits.h>
class GutterSynth {
protected:
gutter_state* s;
public:
GutterSynth(int bankCount, int filterCount, int samplerate) {
s = gutter_init(bankCount, filterCount, samplerate);
}
GutterSynth(int bankCount, int filterCount, int samplerate,
void* (*allocator)(size_t), void (*deallocator)(void*)
) {
s = gutter_init_ca(bankCount, filterCount, samplerate,
allocator, deallocator);
}
~GutterSynth() {
gutter_cleanup(s);
}
// simple accessors
FLT gamma() { return s->gamma; }
void gamma(FLT value) { s->gamma = value; }
FLT omega() { return s->omega; }
void omega(FLT value) { s->omega = value; }
FLT c() { return s->c; }
void c(FLT value) { s->c = value; }
FLT dt() { return s->dt; }
void dt(FLT value) { s->dt = value; }
FLT singleGain() { return s->singleGain; }
void singleGain(FLT value) { s->singleGain = value; }
int filterCount() { return s->filterCount; }
int bankCount() { return s->bankCount; }
bool enableAudioInput() { return bool(s->enableAudioInput); }
void enableAudioInput(bool value) { s->enableAudioInput = int(value); }
bool filtersOn() { return bool(s->filtersOn); }
void filtersOn(bool value) { s->filtersOn = int(value); }
int smoothing() { return s->smoothing; }
void smoothing(int smoothing) { s->smoothing = smoothing; }
int distortionMethod() { return s->distortionMethod; }
void distortionMethod(int method) {
int result = gutter_setdistortionmethod(s, method);
if (result != 0) {
throw std::invalid_argument("Filter out of range");
}
}
void randomiseFilters() {
gutter_randomisefilters(s);
}
void calcCoeffs() {
gutter_calccoeffs(s);
}
void setFreq(int bank, int filter, FLT value, bool recalculate=true) {
int result = gutter_setfreq(s, bank, filter, value);
if (result != 0) {
throw std::invalid_argument("Filter out of range");
}
if (recalculate) {
calcCoeffs();
}
}
void setQ(int bank, int filter, FLT value, bool recalculate=true) {
int result = gutter_setq(s, bank, filter, value);
if (result != 0) {
throw std::invalid_argument("Filter out of range");
}
if (recalculate) {
calcCoeffs();
}
}
void setQ(FLT value, bool recalculate=true) {
gutter_setqall(s, value);
if (recalculate) {
calcCoeffs();
}
}
void setGain(int bank, int filter, FLT value, bool recalculate=true) {
int result = gutter_setgain(s, bank, filter, value);
if (result != 0) {
throw std::invalid_argument("Filter out of range");
}
if (recalculate) {
calcCoeffs();
}
}
void reset() {
gutter_reset(s);
}
// process audio members
FLT process() {
return gutter_process(s);
}
FLT process(FLT audioInput) {
return gutter_process_input(s, audioInput);
}
void process(FLT* audioOutput, int nsamps) {
gutter_process_samples(s, audioOutput, nsamps);
}
void process(FLT* audioInput, FLT* audioOutput, int nsamps) {
gutter_process_input_samples(s, audioInput, audioOutput, nsamps);
}
};
#endif /* GUTTERSYNTH_HPP */
|