|
|
|
// This program 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// fx_tape_delay.h
|
|
|
|
//
|
|
|
|
// Stereo Delay proposed in the context of the MiniDexed project
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "fx_components.h"
|
|
|
|
#include "fx_svf.h"
|
|
|
|
|
|
|
|
#include <random>
|
|
|
|
|
|
|
|
class Delay : public FXElement
|
|
|
|
{
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Delay);
|
|
|
|
|
|
|
|
class LowHighPassFilter : public FXElement
|
|
|
|
{
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(LowHighPassFilter);
|
|
|
|
|
|
|
|
public:
|
|
|
|
LowHighPassFilter(float32_t sampling_rate);
|
|
|
|
virtual ~LowHighPassFilter();
|
|
|
|
|
|
|
|
virtual void reset() override;
|
|
|
|
virtual void processSample(float32_t inL, float32_t inR, float32_t& outL, float32_t& outR) override;
|
|
|
|
|
|
|
|
void setCutoffChangeRatio(float32_t ratio);
|
|
|
|
|
|
|
|
private:
|
|
|
|
StateVariableFilter lpf_;
|
|
|
|
StateVariableFilter hpf_;
|
|
|
|
float32_t ratio_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
Delay(const float32_t sampling_rate, float32_t default_delay_time = 0.25f, float32_t default_flutter_level = 1.0f, float32_t default_wet_level = 0.5f);
|
|
|
|
virtual ~Delay();
|
|
|
|
|
|
|
|
virtual void reset() override;
|
|
|
|
virtual void processSample(float32_t inL, float32_t inR, float32_t& outL, float32_t& outR) override;
|
|
|
|
|
|
|
|
void setLeftDelayTime(float32_t delay_time);
|
|
|
|
float32_t getLeftDelayTime() const;
|
|
|
|
|
|
|
|
void setRightDelayTime(float32_t delay_time);
|
|
|
|
float32_t getRightDelayTime() const;
|
|
|
|
|
|
|
|
void setFeedback(float32_t feedback);
|
|
|
|
float32_t getFeedback() const;
|
|
|
|
|
|
|
|
void setFlutterRate(float32_t rate);
|
|
|
|
float32_t getFlutterRate() const;
|
|
|
|
|
|
|
|
void setFlutterAmount(float32_t amount);
|
|
|
|
float32_t getFlutterAmount() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const size_t MaxSampleDelayTime;
|
|
|
|
unsigned read_pos_L_;
|
|
|
|
unsigned read_pos_R_;
|
|
|
|
float32_t* buffer_L_;
|
|
|
|
float32_t* buffer_R_;
|
|
|
|
float32_t delay_time_L_; // Left delay time in seconds (0.0 - 2.0)
|
|
|
|
float32_t delay_time_R_; // Right delay time in seconds (0.0 - 2.0)
|
|
|
|
float32_t feedback_; // Feedback (0.0 - 1.0)
|
|
|
|
float32_t jitter_amount_;
|
|
|
|
|
|
|
|
LowHighPassFilter filter_;
|
|
|
|
PerlinNoiseGenerator jitter_generator_;
|
|
|
|
};
|