Small improvements

pull/495/head
abscisys 2 years ago
parent 4c8b5f5372
commit cc147daec2
  1. 2
      src/fx.cpp
  2. 1
      src/fx.h
  3. 2
      src/fx_components.h
  4. 25
      src/test/test_fx_helper.cpp

@ -35,5 +35,5 @@ FX::~FX()
void FXBase::prepare() void FXBase::prepare()
{ {
// does nothing by default
} }

@ -36,7 +36,6 @@ public:
float32_t getSamplingRate() const; float32_t getSamplingRate() const;
virtual void reset() = 0; virtual void reset() = 0;
// virtual void prepare() = 0;
virtual void prepare(); virtual void prepare();
private: private:

@ -150,7 +150,7 @@ private:
}; };
typedef InterpolatedSineOscillator LFO; typedef ComplexLFO LFO;
class JitterGenerator : public FXBase class JitterGenerator : public FXBase

@ -1,8 +1,8 @@
#include "test_fx_helper.h" #include "test_fx_helper.h"
string getScenarioName(int scenario) std::string getScenarioName(int scenario)
{ {
stringstream ss; std::stringstream ss;
bool fxTube = Active(scenario, FXSwitch::FX__Tube); bool fxTube = Active(scenario, FXSwitch::FX__Tube);
bool fxChorus = Active(scenario, FXSwitch::FX__Chorus); bool fxChorus = Active(scenario, FXSwitch::FX__Chorus);
@ -26,56 +26,49 @@ string getScenarioName(int scenario)
if(fxChorus) if(fxChorus)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Chorus"; ss << "Chrs";
first = false; first = false;
} }
if(fxPhaser) if(fxPhaser)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Phaser"; ss << "Phsr";
first = false; first = false;
} }
if(fxOrbitone) if(fxOrbitone)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Orbitone"; ss << "Orbt";
first = false; first = false;
} }
if(fxFlanger) if(fxFlanger)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Flanger"; ss << "Flgr";
first = false; first = false;
} }
if(fxDelay) if(fxDelay)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Delay"; ss << "Dely";
first = false;
}
if(fxDelay)
{
if(!first) ss << ", ";
ss << "Delay";
first = false; first = false;
} }
if(fxReverb) if(fxReverb)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Reverb"; ss << "Revb";
first = false; first = false;
} }
if(fxShimmer) if(fxShimmer)
{ {
if(!first) ss << ", "; if(!first) ss << ", ";
ss << "Shimmer"; ss << "Shim";
first = false; first = false;
} }

Loading…
Cancel
Save