zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

MoogFilter.h (1586B)


      1 /*
      2   ZynAddSubFX - a software synthesizer
      3 
      4   Moog Filter.h - moog style multimode filter (lowpass, highpass...)
      5   Copyright (C) 2020-2020 Michael Kirchner
      6   Author: Michael Kirchner
      7 
      8   This program is free software; you can redistribute it and/or
      9   modify it under the terms of the GNU General Public License
     10   as published by the Free Software Foundation; either version 2
     11   of the License, or (at your option) any later version.
     12 */
     13 
     14 #pragma once
     15 #include "Filter.h"
     16 
     17 namespace zyn {
     18 
     19 class MoogFilter:public Filter
     20 {
     21     public:
     22         //! @param Fq resonance, range [0.1,1000], logscale
     23         MoogFilter(unsigned char Ftype, float Ffreq, float Fq,
     24                 unsigned int srate, int bufsize);
     25         ~MoogFilter() override;
     26         void filterout(float *smp) override;
     27         void setfreq(float /*frequency*/) override;
     28         void setfreq_and_q(float frequency, float q_) override;
     29         void setq(float /*q_*/) override;
     30         void setgain(float dBgain) override;
     31         void settype(unsigned char ftype);
     32 
     33     private:
     34         unsigned sr;
     35         float gain;
     36 
     37         float step(float x);
     38 
     39         float tanhXdivX(const float x) const;
     40         float tanhX(const float x) const;
     41         float tan_2(const float x) const;
     42 
     43         float feedbackGain;
     44         // aN: multimode coefficients for LP,BP,HP configurations
     45         float a0, a1, a2, a3, a4;
     46         float state[4] = {0.0f,0.0f,0.0f,0.0f};
     47         float passbandCompensation;
     48         // c*: cutoff frequency c and precalced products (times t) and powers(p) of it
     49         float c, ct2, cp2, cp3, cp4;
     50 };
     51 
     52 }