/******************************************************************************* "A Collection of Useful C++ Classes for Digital Signal Processing" By Vinnie Falco Official project location: https://github.com/vinniefalco/DSPFilters See Documentation.cpp for contact information, notes, and bibliography. -------------------------------------------------------------------------------- License: MIT License (http://www.opensource.org/licenses/mit-license.php) Copyright (c) 2009 by Vinnie Falco Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *******************************************************************************/ #pragma once #include "Common.h" #include "Cascade.h" #include "Design.h" #include "Filter.h" #include "PoleFilter.h" namespace Dsp { /* * Filters with Butterworth response characteristics * */ namespace Butterworth { // Half-band analog prototypes (s-plane) class AnalogLowPass : public LayoutBase { public: AnalogLowPass(); void design(int numPoles); private: int m_numPoles = 0; }; //------------------------------------------------------------------------------ class AnalogLowShelf : public LayoutBase { public: AnalogLowShelf(); void design(int numPoles, double gainDb); private: int m_numPoles = 0; double m_gainDb = 0; }; //------------------------------------------------------------------------------ // Factored implementations to reduce template instantiations struct LowPassBase : PoleFilterBase { void setup(int order, double sampleRate, double cutoffFrequency); }; struct HighPassBase : PoleFilterBase { void setup(int order, double sampleRate, double cutoffFrequency); }; struct BandPassBase : PoleFilterBase { void setup(int order, double sampleRate, double centerFrequency, double widthFrequency); #include "ButterworthSynthesisH.inl" }; struct BandStopBase : PoleFilterBase { void setup(int order, double sampleRate, double centerFrequency, double widthFrequency); }; struct LowShelfBase : PoleFilterBase { void setup(int order, double sampleRate, double cutoffFrequency, double gainDb); }; struct HighShelfBase : PoleFilterBase { void setup(int order, double sampleRate, double cutoffFrequency, double gainDb); }; struct BandShelfBase : PoleFilterBase { void setup(int order, double sampleRate, double centerFrequency, double widthFrequency, double gainDb); }; //------------------------------------------------------------------------------ // // Raw filters // template struct LowPass : PoleFilter {}; template struct HighPass : PoleFilter {}; template struct BandPass : PoleFilter {}; template struct BandStop : PoleFilter {}; template struct LowShelf : PoleFilter {}; template struct HighShelf : PoleFilter {}; template struct BandShelf : PoleFilter {}; //------------------------------------------------------------------------------ // // Gui-friendly Design layer // namespace Design { struct TypeIBase : DesignBase { enum { NumParams = 3 }; static int getNumParams() { return 3; } static ParamInfo getParamInfo_2() { return ParamInfo::defaultCutoffFrequencyParam(); } }; template struct TypeI : TypeIBase, FilterClass { void setParams(const Params& params) { FilterClass::setup(int(params[1]), params[0], params[2]); } }; struct TypeIIBase : DesignBase { enum { NumParams = 4 }; static int getNumParams() { return 4; } static ParamInfo getParamInfo_2() { return ParamInfo::defaultCenterFrequencyParam(); } static ParamInfo getParamInfo_3() { return ParamInfo::defaultBandwidthHzParam(); } }; template struct TypeII : TypeIIBase, FilterClass { void setParams(const Params& params) { FilterClass::setup(int(params[1]), params[0], params[2], params[3]); } #include "ButterworthSynthesisH2.inl" }; struct TypeIIIBase : DesignBase { enum { NumParams = 4 }; static int getNumParams() { return 4; } static ParamInfo getParamInfo_2() { return ParamInfo::defaultCutoffFrequencyParam(); } static ParamInfo getParamInfo_3() { return ParamInfo::defaultGainParam(); } }; template struct TypeIII : TypeIIIBase, FilterClass { void setParams(const Params& params) { FilterClass::setup(int(params[1]), params[0], params[2], params[3]); } }; struct TypeIVBase : DesignBase { enum { NumParams = 5 }; static int getNumParams() { return 5; } static ParamInfo getParamInfo_2() { return ParamInfo::defaultCenterFrequencyParam(); } static ParamInfo getParamInfo_3() { return ParamInfo::defaultBandwidthHzParam(); } static ParamInfo getParamInfo_4() { return ParamInfo::defaultGainParam(); } }; template struct TypeIV : TypeIVBase, FilterClass { void setParams(const Params& params) { FilterClass::setup(int(params[1]), params[0], params[2], params[3], params[4]); } }; // Factored kind and name struct LowPassDescription { static Kind getKind() { return kindLowPass; } static const char* getName() { return "Butterworth Low Pass"; } }; struct HighPassDescription { static Kind getKind() { return kindHighPass; } static const char* getName() { return "Butterworth High Pass"; } }; struct BandPassDescription { static Kind getKind() { return kindHighPass; } static const char* getName() { return "Butterworth Band Pass"; } }; struct BandStopDescription { static Kind getKind() { return kindHighPass; } static const char* getName() { return "Butterworth Band Stop"; } }; struct LowShelfDescription { static Kind getKind() { return kindLowShelf; } static const char* getName() { return "Butterworth Low Shelf"; } }; struct HighShelfDescription { static Kind getKind() { return kindHighShelf; } static const char* getName() { return "Butterworth High Shelf"; } }; struct BandShelfDescription { static Kind getKind() { return kindBandShelf; } static const char* getName() { return "Butterworth Band Shelf"; } }; // This glues on the Order parameter template class TypeClass, template class FilterClass> struct OrderBase : TypeClass> { const ParamInfo getParamInfo_1() const { return ParamInfo(idOrder, "Order", "Order", 1, MaxOrder, 2, &ParamInfo::Int_toControlValue, &ParamInfo::Int_toNativeValue, &ParamInfo::Int_toString); } }; //------------------------------------------------------------------------------ // // Design filters // template struct LowPass : OrderBase, LowPassDescription {}; template struct HighPass : OrderBase, HighPassDescription {}; template struct BandPass : OrderBase, BandPassDescription {}; template struct BandStop : OrderBase, BandStopDescription {}; template struct LowShelf : OrderBase, LowShelfDescription {}; template struct HighShelf : OrderBase, HighShelfDescription {}; template struct BandShelf : OrderBase, BandShelfDescription {}; } // namespace Design } // namespace Butterworth } // namespace Dsp