tibia/test/plugin.h

119 lines
3.8 KiB
C
Raw Normal View History

2024-02-22 11:31:35 +00:00
/*
* Tibia
*
* Copyright (C) 2023, 2024 Orastron Srl unipersonale
*
* Tibia 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, version 3 of the License.
*
* Tibia 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 Tibia. If not, see <http://www.gnu.org/licenses/>.
*
* File author: Stefano D'Angelo
*/
2024-01-05 13:45:14 +00:00
typedef struct plugin {
2024-01-13 11:07:00 +00:00
float sample_rate;
size_t delay_line_length;
2024-01-13 13:04:09 +00:00
float gain;
float delay;
2024-01-15 20:03:11 +00:00
float cutoff;
2024-01-13 13:04:09 +00:00
char bypass;
2024-01-13 11:07:00 +00:00
float * delay_line;
size_t delay_line_cur;
2024-01-15 20:03:11 +00:00
float z1;
2024-01-16 14:37:08 +00:00
float cutoff_k;
2024-01-17 16:31:14 +00:00
float yz1;
2024-01-05 13:45:14 +00:00
} plugin;
static void plugin_init(plugin *instance, plugin_callbacks *cbs) {
2024-01-19 16:28:00 +00:00
(void)instance;
(void)cbs;
2024-01-05 13:45:14 +00:00
}
2024-01-11 05:54:34 +00:00
static void plugin_fini(plugin *instance) {
2024-01-19 16:28:00 +00:00
(void)instance;
2024-01-05 13:45:14 +00:00
}
2024-01-11 05:54:34 +00:00
static void plugin_set_sample_rate(plugin *instance, float sample_rate) {
2024-01-13 11:07:00 +00:00
instance->sample_rate = sample_rate;
2024-01-17 16:31:14 +00:00
//safe approx instance->delay_line_length = ceilf(sample_rate) + 1;
instance->delay_line_length = (size_t)(sample_rate + 1.f) + 1;
2024-01-13 11:07:00 +00:00
}
static size_t plugin_mem_req(plugin *instance) {
return instance->delay_line_length * sizeof(float);
}
static void plugin_mem_set(plugin *instance, void *mem) {
2024-01-23 17:38:52 +00:00
instance->delay_line = (float *)mem;
2024-01-05 13:45:14 +00:00
}
2024-01-11 05:54:34 +00:00
static void plugin_reset(plugin *instance) {
2024-01-17 16:31:14 +00:00
for (size_t i = 0; i < instance->delay_line_length; i++)
instance->delay_line[i] = 0.f;
2024-01-13 11:07:00 +00:00
instance->delay_line_cur = 0;
2024-01-15 20:03:11 +00:00
instance->z1 = 0.f;
2024-01-16 14:37:08 +00:00
instance->cutoff_k = 1.f;
2024-01-17 16:31:14 +00:00
instance->yz1 = 0.f;
2024-01-05 13:45:14 +00:00
}
2024-01-11 05:54:34 +00:00
static void plugin_set_parameter(plugin *instance, size_t index, float value) {
2024-01-05 13:45:14 +00:00
switch (index) {
case plugin_parameter_gain:
2024-01-17 16:31:14 +00:00
//approx instance->gain = powf(10.f, 0.05f * value);
instance->gain = ((2.6039890429412597e-4f * value + 0.032131027163547855f) * value + 1.f) / ((0.0012705124328080768f * value - 0.0666763481312185f) * value + 1.f);
2024-01-05 13:45:14 +00:00
break;
case plugin_parameter_delay:
2024-01-13 13:04:09 +00:00
instance->delay = 0.001f * value;
2024-01-13 11:07:00 +00:00
break;
case plugin_parameter_cutoff:
2024-01-15 20:03:11 +00:00
instance->cutoff = value;
break;
case plugin_parameter_bypass:
2024-01-05 13:45:14 +00:00
instance->bypass = value >= 0.5f;
break;
}
}
2024-01-11 05:54:34 +00:00
static float plugin_get_parameter(plugin *instance, size_t index) {
2024-01-19 16:28:00 +00:00
(void)index;
2024-01-17 16:31:14 +00:00
return instance->yz1;
2024-01-09 10:47:25 +00:00
}
2024-01-13 11:07:00 +00:00
static size_t calc_index(size_t cur, size_t delay, size_t len) {
return (cur < delay ? cur + len : cur) - delay;
}
2024-01-11 05:54:34 +00:00
static void plugin_process(plugin *instance, const float **inputs, float **outputs, size_t n_samples) {
2024-01-17 16:31:14 +00:00
//approx size_t delay = roundf(instance->sample_rate * instance->delay);
size_t delay = (size_t)(instance->sample_rate * instance->delay + 0.5f);
2024-01-16 14:37:08 +00:00
const float mA1 = instance->sample_rate / (instance->sample_rate + 6.283185307179586f * instance->cutoff * instance->cutoff_k);
2024-01-13 11:07:00 +00:00
for (size_t i = 0; i < n_samples; i++) {
instance->delay_line[instance->delay_line_cur] = inputs[0][i];
2024-01-15 20:03:11 +00:00
const float x = instance->delay_line[calc_index(instance->delay_line_cur, delay, instance->delay_line_length)];
2024-01-13 11:07:00 +00:00
instance->delay_line_cur++;
if (instance->delay_line_cur == instance->delay_line_length)
instance->delay_line_cur = 0;
2024-01-15 20:03:11 +00:00
const float y = x + mA1 * (instance->z1 - x);
instance->z1 = y;
2024-01-13 13:04:09 +00:00
outputs[0][i] = instance->bypass ? inputs[0][i] : instance->gain * y;
2024-01-17 16:31:14 +00:00
instance->yz1 = outputs[0][i];
2024-01-13 11:07:00 +00:00
}
2024-01-05 13:45:14 +00:00
}
2024-01-16 14:37:08 +00:00
2024-01-20 10:18:40 +00:00
static void plugin_midi_msg_in(plugin *instance, size_t index, const uint8_t * data) {
2024-01-19 16:28:00 +00:00
(void)index;
2024-02-20 10:27:03 +00:00
if (((data[0] & 0xf0) == 0x90) && (data[2] != 0))
2024-01-20 10:18:40 +00:00
//approx instance->cutoff_k = powf(2.f, (1.f / 12.f) * (note - 60));
instance->cutoff_k = data[1] < 64 ? (-0.19558034980097166f * data[1] - 2.361735109225749f) / (data[1] - 75.57552349522389f) : (393.95397927344214f - 7.660826245588588f * data[1]) / (data[1] - 139.0755234952239f);
2024-01-16 14:37:08 +00:00
}