132 lines
3.3 KiB
C++
132 lines
3.3 KiB
C++
/*
|
|
* Brickworks
|
|
*
|
|
* Copyright (C) 2023 Orastron Srl unipersonale
|
|
*
|
|
* Brickworks 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.
|
|
*
|
|
* Brickworks 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 Brickworks. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* File author: Stefano D'Angelo
|
|
*/
|
|
|
|
#ifndef BWPP_DELAY_H
|
|
#define BWPP_DELAY_H
|
|
|
|
#include <bw_delay.h>
|
|
#include <array>
|
|
|
|
namespace Brickworks {
|
|
|
|
/*! api {{{
|
|
* ##### Brickworks::Delay
|
|
* ```>>> */
|
|
template<size_t N_CHANNELS>
|
|
class Delay {
|
|
public:
|
|
Delay(float maxDelay = 1.f);
|
|
~Delay();
|
|
|
|
void setSampleRate(float sampleRate);
|
|
void reset();
|
|
void process(
|
|
std::array<const float *, N_CHANNELS> x,
|
|
std::array<float *, N_CHANNELS> y,
|
|
int nSamples);
|
|
|
|
float read(size_t channel, size_t di, float df);
|
|
void write(size_t channel, float x);
|
|
|
|
void setDelay(float value);
|
|
|
|
size_t getLength();
|
|
/*! <<<...
|
|
* }
|
|
* ```
|
|
* }}} */
|
|
|
|
/*** Implementation ***/
|
|
|
|
/* WARNING: This part of the file is not part of the public API. Its content may
|
|
* change at any time in future versions. Please, do not use it directly. */
|
|
|
|
private:
|
|
bw_delay_coeffs coeffs;
|
|
bw_delay_state states[N_CHANNELS];
|
|
bw_delay_state *statesP[N_CHANNELS];
|
|
void *mem;
|
|
};
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline Delay<N_CHANNELS>::Delay(float maxDelay) {
|
|
bw_delay_init(&coeffs, maxDelay);
|
|
for (size_t i = 0; i < N_CHANNELS; i++)
|
|
statesP[i] = states + i;
|
|
mem = nullptr;
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline Delay<N_CHANNELS>::~Delay() {
|
|
if (mem != nullptr)
|
|
operator delete(mem);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline void Delay<N_CHANNELS>::setSampleRate(float sampleRate) {
|
|
bw_delay_set_sample_rate(&coeffs, sampleRate);
|
|
size_t req = bw_delay_mem_req(&coeffs);
|
|
if (mem != nullptr)
|
|
operator delete(mem);
|
|
mem = operator new(req * N_CHANNELS);
|
|
void *m = mem;
|
|
for (size_t i = 0; i < N_CHANNELS; i++, m = static_cast<char *>(m) + req)
|
|
bw_delay_mem_set(&coeffs, states + i, m);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline void Delay<N_CHANNELS>::reset() {
|
|
bw_delay_reset_coeffs(&coeffs);
|
|
for (size_t i = 0; i < N_CHANNELS; i++)
|
|
bw_delay_reset_state(&coeffs, states + i);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline void Delay<N_CHANNELS>::process(
|
|
std::array<const float *, N_CHANNELS> x,
|
|
std::array<float *, N_CHANNELS> y,
|
|
int nSamples) {
|
|
bw_delay_process_multi(&coeffs, statesP, x.data(), y.data(), N_CHANNELS, nSamples);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline float Delay<N_CHANNELS>::read(size_t channel, size_t di, float df) {
|
|
return bw_delay_read(&coeffs, states + channel, di, df);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline void Delay<N_CHANNELS>::write(size_t channel, float x) {
|
|
bw_delay_write(&coeffs, states + channel, x);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline void Delay<N_CHANNELS>::setDelay(float value) {
|
|
bw_delay_set_delay(&coeffs, value);
|
|
}
|
|
|
|
template<size_t N_CHANNELS>
|
|
inline size_t Delay<N_CHANNELS>::getLength() {
|
|
return bw_delay_get_length(&coeffs);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|