Files
-
blinds / hardware_design / pcb / blinds_v60.brd
-
blinds / hardware_design / pcb / blinds_v60.sch
-
braids / hardware_design / pcb / braids_v50.brd
-
braids / hardware_design / pcb / braids_v50.sch
-
branches / hardware_design / pcb / branches_v40.brd
-
branches / hardware_design / pcb / branches_v40.sch
-
clouds / hardware_design / pcb / clouds_v30.brd
-
clouds / hardware_design / pcb / clouds_v30.sch
-
ears / hardware_design / panel / ears_panel_v30.brd
-
ears / hardware_design / panel / ears_panel_v30.sch
-
ears / hardware_design / pcb / ears_v40.brd
-
ears / hardware_design / pcb / ears_v40.sch
-
edges / hardware_design / pcb / edges_expander_v01.brd
-
edges / hardware_design / pcb / edges_expander_v01.sch
-
edges / hardware_design / pcb / edges_v20.brd
-
edges / hardware_design / pcb / edges_v20.sch
-
elements / hardware_design / pcb / elements_v02.brd
-
elements / hardware_design / pcb / elements_v02.sch
-
frames / hardware_design / pcb / frames_v03.brd
-
frames / hardware_design / pcb / frames_v03.sch
-
grids / hardware_design / pcb / grids_v02.brd
-
grids / hardware_design / pcb / grids_v02.sch
-
kinks / hardware_design / pcb / kinks_v41.brd
-
kinks / hardware_design / pcb / kinks_v41.sch
-
links / hardware_design / pcb / links_v40.brd
-
links / hardware_design / pcb / links_v40.sch
-
marbles / hardware_design / pcb / marbles_v70.brd
-
marbles / hardware_design / pcb / marbles_v70.sch
-
peaks / hardware_design / pcb / peaks_v30.brd
-
peaks / hardware_design / pcb / peaks_v30.sch
-
plaits / hardware_design / pcb / plaits_v50.brd
-
plaits / hardware_design / pcb / plaits_v50.sch
-
rings / hardware_design / pcb / rings_v30.brd
-
rings / hardware_design / pcb / rings_v30.sch
-
ripples / hardware_design / pcb / ripples_v40.brd
-
ripples / hardware_design / pcb / ripples_v40.sch
-
shades / hardware_design / pcb / shades_v30.brd
-
shades / hardware_design / pcb / shades_v30.sch
-
shelves / hardware_design / pcb / shelves_expander_v10.brd
-
shelves / hardware_design / pcb / shelves_expander_v10.sch
-
shelves / hardware_design / pcb / shelves_v05.brd
-
shelves / hardware_design / pcb / shelves_v05.sch
-
stages / hardware_design / pcb / stages_v70.brd
-
stages / hardware_design / pcb / stages_v70.sch
-
streams / hardware_design / pcb / streams_v02_bargraph.brd
-
streams / hardware_design / pcb / streams_v02_bargraph.sch
-
streams / hardware_design / pcb / streams_v05.brd
-
streams / hardware_design / pcb / streams_v05.sch
-
tides / hardware_design / pcb / tides_v40.brd
-
tides / hardware_design / pcb / tides_v40.sch
-
veils / hardware_design / pcb / veils_v40.brd
-
veils / hardware_design / pcb / veils_v40.sch
-
volts / hardware_design / pcb / volts_v01.brd
-
volts / hardware_design / pcb / volts_v01.sch
-
warps / hardware_design / pcb / warps_v30.brd
-
warps / hardware_design / pcb / warps_v30.sch
-
yarns / hardware_design / pcb / yarns_v03.brd
-
yarns / hardware_design / pcb / yarns_v03.sch
Last update 6 years 2 months
by
Olivier Gillet
Filesplaitsdspdrums | |
---|---|
.. | |
analog_bass_drum.h | |
analog_snare_drum.h | |
hi_hat.h | |
synthetic_bass_drum.h | |
synthetic_snare_drum.h |
analog_bass_drum.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. // // ----------------------------------------------------------------------------- // // 808 bass drum model, revisited. #ifndef PLAITS_DSP_DRUMS_ANALOG_BASS_DRUM_H_ #define PLAITS_DSP_DRUMS_ANALOG_BASS_DRUM_H_ #include <algorithm> #include "stmlib/dsp/dsp.h" #include "stmlib/dsp/filter.h" #include "stmlib/dsp/parameter_interpolator.h" #include "stmlib/dsp/units.h" #include "plaits/dsp/dsp.h" #include "plaits/dsp/oscillator/sine_oscillator.h" namespace plaits { class AnalogBassDrum { public: AnalogBassDrum() { } ~AnalogBassDrum() { } void Init() { pulse_remaining_samples_ = 0; fm_pulse_remaining_samples_ = 0; pulse_ = 0.0f; pulse_height_ = 0.0f; pulse_lp_ = 0.0f; fm_pulse_lp_ = 0.0f; retrig_pulse_ = 0.0f; lp_out_ = 0.0f; tone_lp_ = 0.0f; sustain_gain_ = 0.0f; resonator_.Init(); oscillator_.Init(); } inline float Diode(float x) { if (x >= 0.0f) { return x; } else { x *= 2.0f; return 0.7f * x / (1.0f + fabsf(x)); } } void Render( bool sustain, bool trigger, float accent, float f0, float tone, float decay, float attack_fm_amount, float self_fm_amount, float* out, size_t size) { const int kTriggerPulseDuration = 1.0e-3 * kSampleRate; const int kFMPulseDuration = 6.0e-3 * kSampleRate; const float kPulseDecayTime = 0.2e-3 * kSampleRate; const float kPulseFilterTime = 0.1e-3 * kSampleRate; const float kRetrigPulseDuration = 0.05f * kSampleRate; const float scale = 0.001f / f0; const float q = 1500.0f * stmlib::SemitonesToRatio(decay * 80.0f); const float tone_f = std::min( 4.0f * f0 * stmlib::SemitonesToRatio(tone * 108.0f), 1.0f); const float exciter_leak = 0.08f * (tone + 0.25f); if (trigger) { pulse_remaining_samples_ = kTriggerPulseDuration; fm_pulse_remaining_samples_ = kFMPulseDuration; pulse_height_ = 3.0f + 7.0f * accent; lp_out_ = 0.0f; } stmlib::ParameterInterpolator sustain_gain( &sustain_gain_, accent * decay, size); while (size--) { // Q39 / Q40 float pulse = 0.0f; if (pulse_remaining_samples_) { --pulse_remaining_samples_; pulse = pulse_remaining_samples_ ? pulse_height_ : pulse_height_ - 1.0f; pulse_ = pulse; } else { pulse_ *= 1.0f - 1.0f / kPulseDecayTime; pulse = pulse_; } if (sustain) { pulse = 0.0f; } // C40 / R163 / R162 / D83 ONE_POLE(pulse_lp_, pulse, 1.0f / kPulseFilterTime); pulse = Diode((pulse - pulse_lp_) + pulse * 0.044f); // Q41 / Q42 float fm_pulse = 0.0f; if (fm_pulse_remaining_samples_) { --fm_pulse_remaining_samples_; fm_pulse = 1.0f; // C39 / C52 retrig_pulse_ = fm_pulse_remaining_samples_ ? 0.0f : -0.8f; } else { // C39 / R161 retrig_pulse_ *= 1.0f - 1.0f / kRetrigPulseDuration; } if (sustain) { fm_pulse = 0.0f; } ONE_POLE(fm_pulse_lp_, fm_pulse, 1.0f / kPulseFilterTime); // Q43 and R170 leakage float punch = 0.7f + Diode(10.0f * lp_out_ - 1.0f); // Q43 / R165 float attack_fm = fm_pulse_lp_ * 1.7f * attack_fm_amount; float self_fm = punch * 0.08f * self_fm_amount; float f = f0 * (1.0f + attack_fm + self_fm); CONSTRAIN(f, 0.0f, 0.4f); float resonator_out; if (sustain) { oscillator_.Next(f, sustain_gain.Next(), &resonator_out, &lp_out_); } else { resonator_.set_f_q<stmlib::FREQUENCY_DIRTY>(f, 1.0f + q * f); resonator_.Process<stmlib::FILTER_MODE_BAND_PASS, stmlib::FILTER_MODE_LOW_PASS>( (pulse - retrig_pulse_ * 0.2f) * scale, &resonator_out, &lp_out_); } ONE_POLE(tone_lp_, pulse * exciter_leak + resonator_out, tone_f); *out++ = tone_lp_; } } private: int pulse_remaining_samples_; int fm_pulse_remaining_samples_; float pulse_; float pulse_height_; float pulse_lp_; float fm_pulse_lp_; float retrig_pulse_; float lp_out_; float tone_lp_; float sustain_gain_; stmlib::Svf resonator_; // Replace the resonator in "free running" (sustain) mode. SineOscillator oscillator_; DISALLOW_COPY_AND_ASSIGN(AnalogBassDrum); }; } // namespace plaits #endif // PLAITS_DSP_DRUMS_ANALOG_BASS_DRUM_H_