From 1975cbb20fda8e57b3d923358cf5007605af421c Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Mon, 19 Jul 2004 21:28:04 +0000 Subject: another object svn path=/trunk/externals/tb/; revision=1872 --- sc4pd/make-files.txt | 2 +- sc4pd/pd/latoocarfian.pd | 18 ++++ sc4pd/source/Latoocarfian.cpp | 226 ++++++++++++++++++++++++++++++++++++++++++ sc4pd/source/main.cpp | 6 +- 4 files changed, 250 insertions(+), 2 deletions(-) create mode 100644 sc4pd/pd/latoocarfian.pd create mode 100644 sc4pd/source/Latoocarfian.cpp (limited to 'sc4pd') diff --git a/sc4pd/make-files.txt b/sc4pd/make-files.txt index e652215..df0e4a6 100755 --- a/sc4pd/make-files.txt +++ b/sc4pd/make-files.txt @@ -6,4 +6,4 @@ SRCS= \ PinkNoise.cpp Dust2.cpp Crackle.cpp Rand.cpp TRand.cpp TExpRand.cpp \ IRand.cpp TIRand.cpp CoinGate.cpp support.cpp LinRand.cpp NRand.cpp\ ExpRand.cpp LFClipNoise.cpp LFNoise0.cpp LFNoise1.cpp LFNoise2.cpp \ - Logistic.cpp \ No newline at end of file + Logistic.cpp Latoocarfian.cpp \ No newline at end of file diff --git a/sc4pd/pd/latoocarfian.pd b/sc4pd/pd/latoocarfian.pd new file mode 100644 index 0000000..a3fb7e1 --- /dev/null +++ b/sc4pd/pd/latoocarfian.pd @@ -0,0 +1,18 @@ +#N canvas 0 0 450 300 10; +#X obj 89 115 print~; +#X obj 141 88 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 +-1; +#X obj 128 161 dac~; +#X obj 89 48 Latoocarfian~ 0.88 1.8 1.2 1.3; +#X obj 231 125 Latoocarfian 0.88 1.8 1.2 1.3; +#X floatatom 247 154 5 0 0 0 - - -; +#X floatatom 410 152 5 0 0 0 - - -; +#X obj 275 97 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 +-1; +#X connect 1 0 0 0; +#X connect 3 0 0 0; +#X connect 3 0 2 0; +#X connect 3 1 2 1; +#X connect 4 0 5 0; +#X connect 4 1 6 0; +#X connect 7 0 4 0; diff --git a/sc4pd/source/Latoocarfian.cpp b/sc4pd/source/Latoocarfian.cpp new file mode 100644 index 0000000..f831c27 --- /dev/null +++ b/sc4pd/source/Latoocarfian.cpp @@ -0,0 +1,226 @@ +/* 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 +#include "SC_PlugIn.h" +#include "support.hpp" + + +#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406) +#error You need at least FLEXT version 0.4.6 +#endif + + +/* ------------------------ Latoocarfian~ -------------------------------*/ + +class Latoocarfian_ar: + public flext_dsp +{ + FLEXT_HEADER(Latoocarfian_ar,flext_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(0.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); +} diff --git a/sc4pd/source/main.cpp b/sc4pd/source/main.cpp index 6294cbb..668c300 100644 --- a/sc4pd/source/main.cpp +++ b/sc4pd/source/main.cpp @@ -57,7 +57,8 @@ void sc4pd_library_setup() "PinkNoise(~), \n Crackle(~), Rand(~), TRand(~), " "TExpRand(~), IRand(~), TIRand(~),\n CoinGate, " "LinRand(~), NRand(~), ExpRand(~), LFClipNoise(~),\n" - " LFNoise0(~), LFNoise1(~), LFNoise2(~), Logistic(~)\n"); + " LFNoise0(~), LFNoise1(~), LFNoise2(~), Logistic(~), " + "Latoocarfian(~)\n"); //initialize objects FLEXT_DSP_SETUP(Dust_ar); @@ -133,6 +134,9 @@ void sc4pd_library_setup() FLEXT_DSP_SETUP(Logistic_ar); FLEXT_SETUP(Logistic_kr); + + FLEXT_DSP_SETUP(Latoocarfian_ar); + FLEXT_SETUP(Latoocarfian_kr); } FLEXT_LIB_SETUP(sc4pd,sc4pd_library_setup); -- cgit v1.2.1