You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
MiniDexed/src/fx_rack.cpp

153 lines
3.5 KiB

#include "fx_rack.h"
#include <cassert>
FXRack::FXRack(float32_t sampling_rate, bool enable, float32_t wet) :
FX(sampling_rate),
FXElement(sampling_rate),
enable_(enable),
wet_level_(wet),
fx_chain_()
{
this->fxTube_ = new FXUnit<Tube>(sampling_rate);
this->fxChorus_ = new FXUnit<Chorus>(sampling_rate);
this->fxFlanger_ = new FXUnit<Flanger>(sampling_rate);
this->fxOrbitone_ = new FXUnit<Orbitone>(sampling_rate);
this->fxPhaser_ = new FXUnit<Phaser>(sampling_rate);
this->fxDelay_ = new FXUnit<Delay>(sampling_rate);
this->fxReverberator_ = new FXUnit<Reverberator>(sampling_rate);
this->registerFX(this->fxTube_);
this->registerFX(this->fxChorus_);
this->registerFX(this->fxFlanger_);
this->registerFX(this->fxOrbitone_);
this->registerFX(this->fxPhaser_);
this->registerFX(this->fxDelay_);
this->registerFX(this->fxReverberator_);
}
FXRack::~FXRack()
{
this->fx_chain_.clear();
delete this->fxTube_;
delete this->fxChorus_;
delete this->fxFlanger_;
delete this->fxOrbitone_;
delete this->fxPhaser_;
delete this->fxDelay_;
delete this->fxReverberator_;
}
inline void FXRack::reset()
{
for(FXElement* fx : this->fx_chain_)
{
fx->reset();
}
}
inline void FXRack::processSample(float32_t inL, float32_t inR, float32_t& outL, float32_t& outR)
{
for(FXElement* fx : this->fx_chain_)
{
fx->processSample(inL, inR, outL, outR);
inL = outL;
inR = outR;
}
}
void FXRack::process(float32_t* left_input, float32_t* right_input, float32_t* left_output, float32_t* right_output, size_t nSamples)
{
for(unsigned i = 0; i < nSamples; ++i)
{
float32_t sampleInL = *left_input;
float32_t sampleInR = *right_input;
float32_t sampleOutL = 0.0f;
float32_t sampleOutR = 0.0f;
if(this->isEnable())
{
this->processSample(sampleInL, sampleInR, sampleOutL, sampleOutR);
float32_t dryLevel = 1.0f - this->getWetLevel();
*left_output = this->getWetLevel() * sampleOutL + dryLevel * (*left_input);
*right_output = this->getWetLevel() * sampleOutR + dryLevel * (*right_input);
}
else
{
*left_output = sampleInL;
*right_output = sampleInR;
}
// Move inputs by 1 sample
++left_input;
++right_input;
// Move outputs by 1 sample
++left_output;
++right_output;
}
}
void FXRack::setEnable(bool enable)
{
this->enable_ = enable;
}
bool FXRack::isEnable() const
{
return this->enable_;
}
void FXRack::setWetLevel(float32_t wet_level)
{
this->wet_level_ = constrain(wet_level, 0.0f, 1.0f);
}
float32_t FXRack::getWetLevel() const
{
return this->wet_level_;
}
void FXRack::registerFX(FXElement* fx)
{
assert(fx);
this->fx_chain_.push_back(fx);
}
FXUnit<Tube>* FXRack::getTube()
{
return this->fxTube_;
}
FXUnit<Chorus>* FXRack::getChorus()
{
return this->fxChorus_;
}
FXUnit<Flanger>* FXRack::getFlanger()
{
return this->fxFlanger_;
}
FXUnit<Orbitone>* FXRack::getOrbitone()
{
return this->fxOrbitone_;
}
FXUnit<Phaser>* FXRack::getPhaser()
{
return this->fxPhaser_;
}
FXUnit<Delay>* FXRack::getDelay()
{
return this->fxDelay_;
}
FXUnit<Reverberator>* FXRack::getReverberator()
{
return this->fxReverberator_;
}