Files

copied
Last update 6 years 2 months by Olivier Gillet
Filesplaitsdspphysical_modelling
..
delay_line.h
modal_voice.cc
modal_voice.h
resonator.cc
resonator.h
string.cc
string.h
string_voice.cc
string_voice.h
string.h
// Copyright 2016 Olivier Gillet. // // Author: Olivier Gillet (ol.gillet@gmail.com) // // 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. // // See http://creativecommons.org/licenses/MIT/ for more information. // // ----------------------------------------------------------------------------- // // Comb filter / KS string. "Lite" version of the implementation used in Rings. #ifndef PLAITS_DSP_PHYSICAL_MODELLING_STRING_H_ #define PLAITS_DSP_PHYSICAL_MODELLING_STRING_H_ #include <algorithm> #include "stmlib/stmlib.h" #include "stmlib/dsp/filter.h" #include "stmlib/utils/buffer_allocator.h" #include "plaits/dsp/physical_modelling/delay_line.h" namespace plaits { const size_t kDelayLineSize = 1024; enum StringNonLinearity { STRING_NON_LINEARITY_CURVED_BRIDGE, STRING_NON_LINEARITY_DISPERSION }; class String { public: String() { } ~String() { } void Init(stmlib::BufferAllocator* allocator); void Reset(); void Process( float f0, float non_linearity_amount, float brightness, float damping, const float* in, float* out, size_t size); private: template<StringNonLinearity non_linearity> void ProcessInternal( float f0, float non_linearity_amount, float brightness, float damping, const float* in, float* out, size_t size); DelayLine<float, kDelayLineSize> string_; DelayLine<float, kDelayLineSize / 4> stretch_; stmlib::Svf iir_damping_filter_; stmlib::DCBlocker dc_blocker_; float delay_; float dispersion_noise_; float curved_bridge_; // Very crappy linear interpolation upsampler used for low pitches that // do not fit the delay line. Rarely used. float src_phase_; float out_sample_[2]; DISALLOW_COPY_AND_ASSIGN(String); }; } // namespace plaits #endif // PLAITS_DSP_PHYSICAL_MODELLING_STRING_H_
Report a bug