[go: up one dir, main page]

File: Phaser.h

package info (click to toggle)
caps 0.3.0-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 888 kB
  • ctags: 1,273
  • sloc: cpp: 9,837; ansic: 584; makefile: 62
file content (176 lines) | stat: -rw-r--r-- 2,928 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
	Phaser.h
	
	Copyright 2002-5 Tim Goetze <tim@quitte.de>
	
	http://quitte.de/dsp/

	Standard and fractal-modulated phaser units.

*/
/*
	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 _PHASER_H_
#define _PHASER_H_

#include "dsp/Sine.h"
#include "dsp/Lorenz.h"
#include "dsp/Delay.h"

/* all-pass as used by the phaser. */
class PhaserAP
{
	public:
		d_sample a, m;
		
		PhaserAP() 
		{ 
			a = m = 0.; 
		}

		void set (double delay)
		{
			a = (1 - delay) / (1 + delay);
		}

		d_sample process (d_sample x)
		{
			register d_sample y = -a * x + m;
			m = a * y + x;

			return y;
		}
};

class PhaserI
{
	public:
		double fs;

		PhaserAP ap[6];
		DSP::Sine lfo;

		d_sample rate;
		d_sample y0;
		d_sample normal;

		struct {
			double bottom, range;
		} delay;

		template <sample_func_t>
		void one_cycle (int frames);
	
		int blocksize, remain;

	public:
		d_sample * ports [6];

		static PortInfo port_info [];
		d_sample adding_gain;

		void init (double _fs)
			{
				fs = _fs;
				blocksize = 32;
				normal = NOISE_FLOOR;
			}

		void activate()
			{
				y0 = 0.;
				remain = 0;

				delay.bottom = 400. / fs;
				delay.range = 2200. / fs;

				rate = -1; /* force lfo reset in one_cycle() */
			}

		void run (int n)
			{
				one_cycle<store_func> (n);
			}
		
		void run_adding (int n)
			{
				one_cycle<adding_func> (n);
			}
};

/* same as above, but filter sweep is controlled by a Lorenz fractal */

class PhaserII
{
	public:
		double fs;

		PhaserAP ap[6];
		DSP::Lorenz lorenz;

		d_sample rate;
		d_sample y0;
		d_sample normal;

		struct {
			double bottom, range;
		} delay;

		template <sample_func_t>
		void one_cycle (int frames);
	
		int blocksize, remain;

	public:
		d_sample * ports [6];

		static PortInfo port_info [];
		d_sample adding_gain;

		void init (double _fs)
			{
				fs = _fs;
				blocksize = 32;
				normal = NOISE_FLOOR;
				lorenz.init();
			}

		void activate()
			{
				y0 = 0.;
				remain = 0;

				delay.bottom = 400. / fs;
				delay.range = 2200. / fs;

				rate = -1; /* force lfo reset in one_cycle() */
			}

		void run (int n)
			{
				one_cycle<store_func> (n);
			}
		
		void run_adding (int n)
			{
				one_cycle<adding_func> (n);
			}
};


#endif /* _PHASER_H_ */