123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- /*
- Phaser.cc
-
- Copyright 2002-7 Tim Goetze <tim@quitte.de>
-
- http://quitte.de/dsp/
- One simple mono phaser, 6 all-pass lines, the usual controls.
- Another unit in the same vein with the filter modulation controlled by
- a Lorenz fractal.
- */
- /*
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA or point your web browser to http://www.gnu.org.
- */
- #include "basics.h"
- #include "Phaser.h"
- #include "Descriptor.h"
- template <sample_func_t F>
- void
- PhaserI::one_cycle (int frames)
- {
- sample_t * s = ports[0];
- if (rate != *ports[1])
- {
- rate = getport(1);
- lfo.set_f (max (.001, rate * (double) blocksize), fs, lfo.get_phase());
- }
- double depth = getport(2);
- double spread = 1 + getport(3);
- double fb = getport(4);
- sample_t * dst = ports[5];
- while (frames)
- {
- if (remain == 0) remain = 32;
- int n = min (remain, frames);
- double d = delay.bottom + delay.range * (1. - fabs (lfo.get()));
- for (int j = 5; j >= 0; --j)
- {
- ap[j].set (d);
- d *= spread;
- }
-
- for (int i = 0; i < n; ++i)
- {
- sample_t x = s[i];
- sample_t y = x + y0 * fb + normal;
- for (int j = 5; j >= 0; --j)
- y = ap[j].process (y);
-
- y0 = y;
- F (dst, i, x + y * depth, adding_gain);
- }
- s += n;
- dst += n;
- frames -= n;
- remain -= n;
- }
- }
- /* //////////////////////////////////////////////////////////////////////// */
- PortInfo
- PhaserI::port_info [] =
- {
- {
- "in",
- INPUT | AUDIO,
- {BOUNDED, -1, 1}
- }, {
- "rate (Hz)",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_1, 0, 10}
- }, {
- "depth",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_HIGH, 0, 1}
- }, {
- "spread",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_LOW, 0, M_PI}
- }, {
- "feedback",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_HIGH, 0, .999}
- }, {
- "out",
- OUTPUT | AUDIO,
- {0}
- }
- };
- template <> void
- Descriptor<PhaserI>::setup()
- {
- UniqueID = 1775;
- Label = "PhaserI";
- Properties = HARD_RT;
- Name = CAPS "PhaserI - Mono phaser";
- Maker = "Tim Goetze <tim@quitte.de>";
- Copyright = "GPL, 2002-7";
- /* fill port info and vtable */
- autogen();
- }
- /* //////////////////////////////////////////////////////////////////////// */
- template <sample_func_t F>
- void
- PhaserII::one_cycle (int frames)
- {
- sample_t * s = ports[0];
- lorenz.set_rate (getport(1) * .08);
- double depth = getport(2);
- double spread = 1 + getport(3);
- double fb = getport(4);
- sample_t * dst = ports[5];
- while (frames)
- {
- if (remain == 0) remain = 32;
- int n = min (remain, frames);
- double d = delay.bottom + delay.range * (.3 * lorenz.get());
- for (int j = 5; j >= 0; --j)
- {
- ap[j].set (d);
- d *= spread;
- }
-
- for (int i = 0; i < n; ++i)
- {
- sample_t x = s[i];
- sample_t y = x + y0 * fb + normal;
- for (int j = 5; j >= 0; --j)
- y = ap[j].process (y);
-
- y0 = y;
- F (dst, i, x + y * depth, adding_gain);
- }
- s += n;
- dst += n;
- frames -= n;
- remain -= n;
- }
- }
- /* //////////////////////////////////////////////////////////////////////// */
- PortInfo
- PhaserII::port_info [] =
- {
- {
- "in",
- INPUT | AUDIO,
- {BOUNDED, -1, 1}
- }, {
- "rate",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_LOW, 0, 1}
- }, {
- "depth",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_HIGH, 0, 1}
- }, {
- "spread",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_LOW, 0, M_PI * .5}
- }, {
- "feedback",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_HIGH, 0, .999}
- }, {
- "out",
- OUTPUT | AUDIO,
- {0}
- }
- };
- template <> void
- Descriptor<PhaserII>::setup()
- {
- UniqueID = 2586;
- Label = "PhaserII";
- Properties = HARD_RT;
- Name = CAPS "PhaserII - Mono phaser modulated by a Lorenz fractal";
- Maker = "Tim Goetze <tim@quitte.de>";
- Copyright = "GPL, 2002-7";
- /* fill port info and vtable */
- autogen();
- }
|