123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- /*
- Reverb.h
-
- Copyright 2002-5 Tim Goetze <tim@quitte.de>
-
- http://quitte.de/dsp/
- two reverb units: JVRev and Plate.
-
- the former is a rewrite of STK's JVRev, a traditional design.
-
- original comment:
-
- This is based on some of the famous
- Stanford CCRMA reverbs (NRev, KipRev)
- all based on the Chowning/Moorer/
- Schroeder reverberators, which use
- networks of simple allpass and comb
- delay filters.
- (STK is an effort of Gary Scavone).
-
- the algorithm is mostly unchanged in this implementation; the delay
- line lengths have been fiddled with to make the stereo field more
- evenly weighted, and denormal protection has been added.
- the Plate reverb is based on the circuit discussed in Jon Dattorro's
- september 1997 JAES paper on effect design (part 1: reverb & filters).
- */
- /*
- 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.
- */
- #ifndef _REVERB_H_
- #define _REVERB_H_
- #include <stdio.h>
- #include "dsp/Delay.h"
- #include "dsp/OnePole.h"
- #include "dsp/Sine.h"
- #include "dsp/util.h"
- /* both reverbs use this */
- class Lattice
- : public DSP::Delay
- {
- public:
- inline sample_t
- process (sample_t x, double d)
- {
- sample_t y = get();
- x -= d * y;
- put (x);
- return d * x + y;
- }
- };
- /* helper for JVRev */
- class JVComb
- : public DSP::Delay
- {
- public:
- float c;
-
- inline sample_t
- process (sample_t x)
- {
- x += c * get();
- put (x);
- return x;
- }
- };
- class JVRev
- : public Plugin
- {
- public:
- static int default_length[9];
- sample_t t60;
- Lattice allpass [3];
- JVComb comb[4];
- DSP::Delay left, right;
-
- double apc;
-
- template <sample_func_t F>
- void one_cycle (int frames);
- int length [9];
- void set_t60 (sample_t t);
- public:
- static PortInfo port_info [];
- void init();
- void activate();
- void run (int n)
- {
- one_cycle<store_func> (n);
- }
-
- void run_adding (int n)
- {
- one_cycle<adding_func> (n);
- }
- };
- /* /////////////////////////////////////////////////////////////////////// */
- class ModLattice
- {
- public:
- float n0, width;
- DSP::Delay delay;
- DSP::Sine lfo;
- DSP::DelayTapA tap;
-
- void init (int n, int w)
- {
- n0 = n;
- width = w;
- delay.init (n + w);
- }
- void reset()
- {
- delay.reset();
- tap.reset();
- }
- inline sample_t
- process (sample_t x, double d)
- {
- /* TODO: try all-pass interpolation */
- sample_t y = delay.get_at (n0 + width * lfo.get());
- x += d * y;
- delay.put (x);
- return y - d * x; /* note sign */
- }
- };
- class PlateStub
- : public Plugin
- {
- public:
- sample_t f_lfo;
- sample_t indiff1, indiff2, dediff1, dediff2;
-
- struct {
- DSP::OnePoleLP bandwidth;
- Lattice lattice[4];
- } input;
- struct {
- ModLattice mlattice[2];
- Lattice lattice[2];
- DSP::Delay delay[4];
- DSP::OnePoleLP damping[2];
- int taps[12];
- } tank;
- public:
- void init();
- void activate()
- {
- input.bandwidth.reset();
- for (int i = 0; i < 4; ++i)
- {
- input.lattice[i].reset();
- tank.delay[i].reset();
- }
- for (int i = 0; i < 2; ++i)
- {
- tank.mlattice[i].reset();
- tank.lattice[i].reset();
- tank.damping[i].reset();
- }
-
- tank.mlattice[0].lfo.set_f (1.2, fs, 0);
- tank.mlattice[1].lfo.set_f (1.2, fs, .5 * M_PI);
- }
- inline void process (sample_t x, sample_t decay,
- sample_t * xl, sample_t * xr);
- };
- /* /////////////////////////////////////////////////////////////////////// */
- class Plate
- : public PlateStub
- {
- public:
- template <sample_func_t F>
- void one_cycle (int frames);
- public:
- static PortInfo port_info [];
- void run (int n)
- {
- one_cycle<store_func> (n);
- }
-
- void run_adding (int n)
- {
- one_cycle<adding_func> (n);
- }
- };
- /* /////////////////////////////////////////////////////////////////////// */
- class Plate2x2
- : public PlateStub
- {
- public:
- template <sample_func_t F>
- void one_cycle (int frames);
- public:
- static PortInfo port_info [];
- void run (int n)
- {
- one_cycle<store_func> (n);
- }
-
- void run_adding (int n)
- {
- one_cycle<adding_func> (n);
- }
- };
- #endif /* _REVERB_H_ */
|