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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
/* sc4pd
Latoocarfian, Latoocarfian~
Copyright (c) 2004 Tim Blechmann.
This code is derived from:
SuperCollider real time audio synthesis system
Copyright (c) 2002 James McCartney. All rights reserved.
http://www.audiosynth.com
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.
Based on:
PureData by Miller Puckette and others.
http://www.crca.ucsd.edu/~msp/software.html
FLEXT by Thomas Grill
http://www.parasitaere-kapazitaeten.net/ext
SuperCollider by James McCartney
http://www.audiosynth.com
Coded while listening to: Keith Rowe & John Tilbury: Duos For Doris
*/
#include "sc4pd.hpp"
/* ------------------------ Latoocarfian~ -------------------------------*/
class Latoocarfian_ar:
public sc4pd_dsp
{
FLEXT_HEADER(Latoocarfian_ar,sc4pd_dsp);
public:
Latoocarfian_ar(int argc, t_atom *argv);
protected:
virtual void m_signal(int n, t_sample *const *in, t_sample *const *out);
void m_set_a(float f)
{
m_a = f;
}
void m_set_b(float f)
{
m_b = f;
}
void m_set_c(float f)
{
m_c = f;
}
void m_set_d(float f)
{
m_d = f;
}
private:
float m_x, m_y; //state
float m_a, m_b, m_c, m_d; //parameters
FLEXT_CALLBACK_F(m_set_a);
FLEXT_CALLBACK_F(m_set_b);
FLEXT_CALLBACK_F(m_set_c);
FLEXT_CALLBACK_F(m_set_d);
};
FLEXT_LIB_DSP_V("Latoocarfian~",Latoocarfian_ar);
Latoocarfian_ar::Latoocarfian_ar(int argc, t_atom *argv)
:m_x(4),m_y(1)
{
FLEXT_ADDMETHOD_(0,"a",m_set_a);
FLEXT_ADDMETHOD_(0,"b",m_set_b);
FLEXT_ADDMETHOD_(0,"c",m_set_c);
FLEXT_ADDMETHOD_(0,"d",m_set_d);
//parse arguments
AtomList Args(argc,argv);
if (Args.Count()!=4)
{
post("4 arguments needed");
}
m_a = sc_getfloatarg(Args,0);
m_b = sc_getfloatarg(Args,1);
m_c = sc_getfloatarg(Args,2);
m_d = sc_getfloatarg(Args,3);
AddOutSignal();
AddOutSignal(); // supercollider is only using the x coordinate
}
void Latoocarfian_ar::m_signal(int n, t_sample *const *in,
t_sample *const *out)
{
t_sample *xout = *out;
t_sample *yout = *(out+1);
float a = m_a;
float b = m_b;
float c = m_c;
float d = m_d;
float x = m_x;
float y = m_y;
for (int i = 0; i!= n;++i)
{
float x_new=sin(y*b)+c*sin(x*b);
float y_new=sin(x*a)+d*sin(y*a);
(*(xout)++)=x=x_new;
(*(yout)++)=y=y_new;
}
m_x = x;
m_y = y;
}
/* ------------------------ Latoocarfian ---------------------------------*/
class Latoocarfian_kr:
public flext_base
{
FLEXT_HEADER(Latoocarfian_kr,flext_base);
public:
Latoocarfian_kr(int argc, t_atom *argv);
protected:
void m_perform();
void m_set_a(float f)
{
m_a = f;
}
void m_set_b(float f)
{
m_b = f;
}
void m_set_c(float f)
{
m_c = f;
}
void m_set_d(float f)
{
m_d = f;
}
private:
float m_x, m_y; //state
float m_a, m_b, m_c, m_d; //parameters
FLEXT_CALLBACK_F(m_set_a);
FLEXT_CALLBACK_F(m_set_b);
FLEXT_CALLBACK_F(m_set_c);
FLEXT_CALLBACK_F(m_set_d);
FLEXT_CALLBACK(m_perform);
};
FLEXT_LIB_V("Latoocarfian",Latoocarfian_kr);
Latoocarfian_kr::Latoocarfian_kr(int argc, t_atom *argv)
:m_x(1),m_y(1)
{
FLEXT_ADDMETHOD_(0,"a",m_set_a);
FLEXT_ADDMETHOD_(0,"b",m_set_b);
FLEXT_ADDMETHOD_(0,"c",m_set_c);
FLEXT_ADDMETHOD_(0,"d",m_set_d);
FLEXT_ADDBANG(0,m_perform);
//parse arguments
AtomList Args(argc,argv);
if (Args.Count()!=4)
{
post("4 arguments needed");
}
m_a = sc_getfloatarg(Args,0);
m_b = sc_getfloatarg(Args,1);
m_c = sc_getfloatarg(Args,2);
m_d = sc_getfloatarg(Args,3);
AddOutFloat();
AddOutFloat(); // one outlet more than sc
}
void Latoocarfian_kr::m_perform()
{
m_x=sin(m_y*m_b)+m_c*sin(m_x*m_b);
m_y=sin(m_x*m_a)+m_d*sin(m_y*m_a);
ToOutFloat(0,m_x);
ToOutFloat(1,m_y);
}
|