From 2b60d55c919e7588f5aff15936e83c300b3660bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 22 Mar 2005 20:58:25 +0000 Subject: zexy-2.0: - use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641 --- src/blockswap_tilde.c | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 src/blockswap_tilde.c (limited to 'src/blockswap_tilde.c') diff --git a/src/blockswap_tilde.c b/src/blockswap_tilde.c new file mode 100644 index 0000000..8c323fb --- /dev/null +++ b/src/blockswap_tilde.c @@ -0,0 +1,99 @@ +/****************************************************** + * + * zexy - implementation file + * + * copyleft (c) IOhannes m zmölnig + * + * 1999:forum::für::umläute:2004 + * + * institute of electronic music and acoustics (iem) + * + ****************************************************** + * + * license: GNU General Public License v.2 + * + ******************************************************/ + +#include "zexy.h" + +/* ------------------------ blockswap~ ----------------------------- */ + +/* swaps a signalblock around it's center: + {x[0], x[1], ... x[n-1]} --> {x[n-1], x[n-2], ... x[0]} +*/ + +static t_class *blockswap_class; + +typedef struct _blockswap +{ + t_object x_obj; + int doit; + int blocksize; + t_float *blockbuffer; +} t_blockswap; + +static void blockswap_float(t_blockswap *x, t_floatarg f) +{ + x->doit = (f != 0); +} + +static t_int *blockswap_perform(t_int *w) +{ + t_blockswap *x = (t_blockswap *)(w[1]); + t_float *in = (t_float *)(w[2]); + t_float *out = (t_float *)(w[3]); + int N = (int)(w[4]); + int N2=N/2; + if (x->doit) { + int n=N2; + t_float *dummy=x->blockbuffer; + while(n--)*dummy++=*in++; + n=N-N2; + while(n--)*out++=*in++; + dummy=x->blockbuffer; + n=N2; + while(n--)*out++=*dummy++; + } else while (N--) *out++=*in++; + return (w+5); +} + +static void blockswap_dsp(t_blockswap *x, t_signal **sp) +{ + if (x->blocksize*2s_n){ + if(x->blockbuffer)freebytes(x->blockbuffer, sizeof(t_float)*x->blocksize); + x->blocksize = sp[0]->s_n/2; + x->blockbuffer = getbytes(sizeof(t_float)*x->blocksize); + } + dsp_add(blockswap_perform, 4, x, sp[0]->s_vec, sp[1]->s_vec, sp[0]->s_n); +} + +static void blockswap_helper(void) +{ + post("\n%c blockswap~-object for blockwise-swapping of a signal ", HEARTSYMBOL); + post("'help' : view this\n" + "signal~"); + post("outlet : signal~"); +} + +static void *blockswap_new() +{ + t_blockswap *x = (t_blockswap *)pd_new(blockswap_class); + outlet_new(&x->x_obj, gensym("signal")); + x->doit = 1; + x->blocksize=0; + return (x); +} + +void blockswap_tilde_setup(void) +{ + blockswap_class = class_new(gensym("blockswap~"), (t_newmethod)blockswap_new, 0, + sizeof(t_blockswap), 0, A_DEFFLOAT, 0); + class_addmethod(blockswap_class, nullfn, gensym("signal"), 0); + class_addmethod(blockswap_class, (t_method)blockswap_dsp, gensym("dsp"), 0); + + class_addfloat(blockswap_class, blockswap_float); + + class_addmethod(blockswap_class, (t_method)blockswap_helper, gensym("help"), 0); + class_sethelpsymbol(blockswap_class, gensym("zexy/blockswap~")); + zexy_register("blockswap~"); +} -- cgit v1.2.1