|
- // Copyright 2015 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.
- //
- // -----------------------------------------------------------------------------
- //
- // String.
-
- #ifndef ELEMENTS_DSP_STRING_H_
- #define ELEMENTS_DSP_STRING_H_
-
- #include "stmlib/stmlib.h"
-
- #include <algorithm>
-
- #include "stmlib/dsp/delay_line.h"
- #include "stmlib/dsp/filter.h"
-
- namespace elements {
-
- const size_t kDelayLineSize = 2048;
-
- class DampingFilter {
- public:
- DampingFilter() { }
- ~DampingFilter() { }
-
- void Init() {
- x_ = 0.0f;
- x__ = 0.0f;
- brightness_ = 0.0f;
- brightness_increment_ = 0.0f;
- damping_ = 0.0f;
- damping_increment_ = 0.0f;
- }
-
- inline void Configure(float damping, float brightness, size_t size) {
- if (!size) {
- damping_ = damping;
- brightness_ = brightness;
- damping_increment_ = 0.0f;
- brightness_increment_ = 0.0f;
- } else {
- float step = 1.0f / static_cast<float>(size);
- damping_increment_ = (damping - damping_) * step;
- brightness_increment_ = (brightness - brightness_) * step;
- }
- }
-
- inline float Process(float x) {
- float h0 = (1.0f + brightness_) * 0.5f;
- float h1 = (1.0f - brightness_) * 0.25f;
- float y = damping_ * (h0 * x_ + h1 * (x + x__));
- x__ = x_;
- x_ = x;
- brightness_ += brightness_increment_;
- damping_ += damping_increment_;
- return y;
- }
- private:
- float x_;
- float x__;
- float brightness_;
- float brightness_increment_;
- float damping_;
- float damping_increment_;
-
- DISALLOW_COPY_AND_ASSIGN(DampingFilter);
- };
-
- typedef stmlib::DelayLine<float, kDelayLineSize> StringDelayLine;
- typedef stmlib::DelayLine<float, kDelayLineSize / 2> StiffnessDelayLine;
-
- class String {
- public:
- String() { }
- ~String() { }
-
- void Init(bool enable_dispersion);
- void Process(const float* in, float* out, float* aux, size_t size);
-
- inline void set_frequency(float frequency) {
- frequency_ = frequency;
- }
-
- inline void set_frequency(float frequency, float coefficient) {
- frequency_ += coefficient * (frequency - frequency_);
- }
-
- inline void set_dispersion(float dispersion) {
- dispersion = dispersion < 0.24f
- ? (dispersion - 0.24f) * 4.166f
- : (dispersion > 0.26f ? (dispersion - 0.26f) * 1.35135f : 0.0f);
- dispersion_ = dispersion;
- }
-
- inline void set_brightness(float brightness) {
- brightness_ = brightness;
- }
-
- inline void set_damping(float damping) {
- damping_ = damping;
- }
-
- inline void set_position(float position) {
- position_ = position;
- }
-
- inline StringDelayLine* mutable_string() { return &string_; }
-
- private:
- template<bool enable_dispersion>
- void ProcessInternal(const float* in, float* out, float* aux, size_t size);
-
- float frequency_;
- float dispersion_;
- float brightness_;
- float damping_;
- float position_;
-
- float delay_;
- float clamped_position_;
- float previous_dispersion_;
- float previous_damping_compensation_;
-
- bool enable_dispersion_;
- bool enable_iir_damping_;
- float dispersion_noise_;
-
- // 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];
- float aux_sample_[2];
-
- float curved_bridge_;
-
- StringDelayLine string_;
- StiffnessDelayLine stretch_;
-
- DampingFilter fir_damping_filter_;
- stmlib::Svf iir_damping_filter_;
- stmlib::DCBlocker dc_blocker_;
-
- DISALLOW_COPY_AND_ASSIGN(String);
- };
-
- } // namespace elements
-
- #endif // ELEMENTS_DSP_STRING_H_
|