forked from Geonkick-Synthesizer/geonkick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoscillator.cpp
executable file
·230 lines (192 loc) · 6.2 KB
/
oscillator.cpp
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
* File name: oscillator.cpp
* Project: Geonkick (A kick synthesizer)
*
* Copyright (C) 2017 Iurie Nistor
*
* This file is part of Geonkick.
*
* GeonKick is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "oscillator.h"
Oscillator::Oscillator(GeonkickApi *api, Oscillator::Type type)
: geonkickApi{api}
, oscillatorType{type}
, filterType{FilterType::LowPass}
{
RK_ACT_BIND(geonkickApi,
kickLengthUpdated,
RK_ACT_ARGS(double val),
this, kickLengthUpdated(val));
}
void Oscillator::setAsFm(bool b)
{
geonkickApi->setOscillatorAsFm(index(), b);
}
bool Oscillator::isFm() const
{
return geonkickApi->isOscillatorAsFm(index());
}
void Oscillator::setFunction(FunctionType func)
{
geonkickApi->setOscillatorFunction(index(), static_cast<GeonkickApi::FunctionType>(func));
}
void Oscillator::setPhase(gkick_real phase)
{
geonkickApi->setOscillatorPhase(index(), phase);
}
gkick_real Oscillator::getPhase() const
{
return geonkickApi->oscillatorPhase(index());
}
void Oscillator::setSeed(int seed)
{
geonkickApi->setOscillatorSeed(index(), seed);
}
int Oscillator::getSeed() const
{
return geonkickApi->oscillatorSeed(index());
}
Oscillator::FunctionType Oscillator::function() const
{
return static_cast<FunctionType>(geonkickApi->oscillatorFunction(index()));
}
std::vector<RkRealPoint>
Oscillator::envelopePoints(EnvelopeType envelope) const
{
return geonkickApi->oscillatorEvelopePoints(index(), static_cast<GeonkickApi::EnvelopeType>(envelope));
}
void Oscillator::addEnvelopePoint(EnvelopeType envelope, double x, double y)
{
geonkickApi->addOscillatorEnvelopePoint(index(),
static_cast<GeonkickApi::EnvelopeType>(envelope),
RkRealPoint(x, y));
}
void Oscillator::removeEnvelopePoint(EnvelopeType envelope, int point_index)
{
geonkickApi->removeOscillatorEvelopePoint(index(),
static_cast<GeonkickApi::EnvelopeType>(envelope),
point_index);
}
void Oscillator::updateEnvelopePoint(EnvelopeType envelope, int point_index, double x, double y)
{
geonkickApi->updateOscillatorEvelopePoint(index(),
static_cast<GeonkickApi::EnvelopeType>(envelope),
point_index,
RkRealPoint(x, y));
}
void Oscillator::setType(Oscillator::Type type)
{
oscillatorType = type;
}
Oscillator::Type Oscillator::type() const
{
return oscillatorType;
}
void Oscillator::setAmplitude(double amp)
{
if (geonkickApi->setOscillatorAmplitude(index(), amp))
action amplitudeUpdated(amp);
}
double Oscillator::amplitude(void) const
{
return geonkickApi->oscillatorAmplitude(index());
}
void Oscillator::setFrequency(double freq)
{
if (geonkickApi->setOscillatorFrequency(index(), freq))
action frequencyUpdated(freq);
}
void Oscillator::setPitchShift(double semitones)
{
if (geonkickApi->setOscillatorPitchShift(index(), semitones))
action pitchShiftUpdated(semitones);
}
double Oscillator::frequency(void) const
{
return geonkickApi->oscillatorFrequency(index());
}
double Oscillator::pitchShift(void) const
{
return geonkickApi->oscillatorPitchShift(index());
}
int Oscillator::index() const
{
return static_cast<int>(oscillatorType);
}
Oscillator::FilterType Oscillator::filter() const
{
return static_cast<FilterType>(geonkickApi->getOscillatorFilterType(index()));
}
void Oscillator::setFilterType(FilterType filter)
{
geonkickApi->setOscillatorFilterType(index(), static_cast<GeonkickApi::FilterType>(filter));
}
void Oscillator::enableFilter(bool b)
{
geonkickApi->enableOscillatorFilter(index(), b);
}
bool Oscillator::isFilterEnabled() const
{
return geonkickApi->isOscillatorFilterEnabled(index());
}
void Oscillator::setFilterFrequency(double f)
{
geonkickApi->setOscillatorFilterCutOffFreq(index(), f);
}
double Oscillator::filterFrequency(void) const
{
return geonkickApi->getOscillatorFilterCutOffFreq(index());
}
void Oscillator::setFilterQFactor(double factor)
{
return geonkickApi->setOscillatorFilterFactor(index(), factor);
}
double Oscillator::filterQFactor() const
{
return geonkickApi->getOscillatorFilterFactor(index());
}
void Oscillator::enable(bool b)
{
geonkickApi->enableOscillator(index(), b);
}
bool Oscillator::isEnabled() const
{
return geonkickApi->isOscillatorEnabled(index());
}
double Oscillator::envelopeLength() const
{
return geonkickApi->kickLength();
}
void Oscillator::setSample(const std::string &file)
{
geonkickApi->setOscillatorSample(file, index());
auto path = std::filesystem::path(file);
geonkickApi->setCurrentWorkingPath("Samples", path.has_parent_path() ? path.parent_path().string() : path.string());
}
std::string Oscillator::samplesPath() const
{
return geonkickApi->currentWorkingPath("Samples").string();
}
void Oscillator::setEnvelopeApplyType(Oscillator::EnvelopeType envelope,
Oscillator::EnvelopeApplyType apply)
{
geonkickApi->setOscillatorEnvelopeApplyType(index(), envelope, apply);
}
Oscillator::EnvelopeApplyType
Oscillator::envelopeApplyType(Oscillator::EnvelopeType envelope) const
{
return geonkickApi->getOscillatorEnvelopeApplyType(index(), envelope);
}