discard
This commit is contained in:
parent
152b0c62a5
commit
44feac5e0b
@ -34,13 +34,30 @@ void Chassis::initParameter(uint32_t index, Parameter ¶meter) {
|
|||||||
parameter.ranges.min = 0.0f;
|
parameter.ranges.min = 0.0f;
|
||||||
parameter.ranges.max = 127.0f;
|
parameter.ranges.max = 127.0f;
|
||||||
parameter.ranges.def = 0.0f;
|
parameter.ranges.def = 0.0f;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case k_sqr:
|
||||||
|
parameter.hints = kParameterIsAutomatable | kParameterIsBoolean;
|
||||||
|
parameter.name = "Square";
|
||||||
|
parameter.symbol = "sqr";
|
||||||
|
parameter.ranges.min = 0.0f;
|
||||||
|
parameter.ranges.max = 127.0f;
|
||||||
|
parameter.ranges.def = 0.0f;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Chassis::setParameterValue(uint32_t index, float value) {
|
void Chassis::setParameterValue(uint32_t index, float value) {
|
||||||
switch (index) {
|
switch (index) {
|
||||||
case k_saw:
|
case k_saw:
|
||||||
s.p.saw = value / 127.0f;
|
s.p.saw = value / 127.0f;
|
||||||
|
break;
|
||||||
|
case k_sqr:
|
||||||
|
s.p.sqr = value / 127.0f;
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ class Chassis : public Plugin {
|
|||||||
public:
|
public:
|
||||||
enum Parameters {
|
enum Parameters {
|
||||||
k_saw,
|
k_saw,
|
||||||
|
k_sqr,
|
||||||
kParameterCount
|
kParameterCount
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -55,39 +55,14 @@ void Voice::off() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Voice::run(Synth &s, float *buffer, uint32_t samples) {
|
void Voice::run(Synth &s, float *buffer, uint32_t samples) {
|
||||||
float y, t;
|
float y;
|
||||||
env = ((target - env) * 0.1) + env;
|
env = ((target - env) * 0.01) + env;
|
||||||
for (uint32_t i = 0; i < samples; i++) {
|
for (uint32_t i = 0; i < samples; i++) {
|
||||||
|
|
||||||
// prepare the delay slot
|
|
||||||
out = delay;
|
|
||||||
delay = 0;
|
|
||||||
phase += omega;
|
phase += omega;
|
||||||
//delay = 1-(2*phase);
|
if (phase > 1) phase -= 1;
|
||||||
|
y = (2 * phase) - 1;
|
||||||
|
y -= blep(phase, omega);
|
||||||
|
|
||||||
if (phase > 1.0f) {
|
buffer[i] += (0.25 * y * env) * s.p.saw;
|
||||||
phase -= 1.0f;
|
|
||||||
|
|
||||||
t = phase / omega;
|
|
||||||
out -= (t*t*t) - 0.5 * (t*t*t*t);
|
|
||||||
//delay -= (2 * t) - (t * t) - 1;
|
|
||||||
|
|
||||||
t = 1-(phase / omega);
|
|
||||||
delay = (t*t*t) - 0.5 * (t*t*t*t);
|
|
||||||
//out -= (2*t) + (t*t) + 1;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
delay += (phase);
|
|
||||||
|
|
||||||
|
|
||||||
y = 0.5 * (out-0.5) * env;// * s.p.saw;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// y -= blep(phase, omega);
|
|
||||||
|
|
||||||
buffer[i] += y;// (0.25 * y * env) * s.p.saw;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user