/****************************************************** * * zexy - implementation file * * copyleft (c) IOhannes m zmölnig * * 1999:forum::für::umläute:2004 * * * institute of electronic music and acoustics (iem) * * optimizations * copyright (c) 2005 tim blechmann ****************************************************** * * license: GNU General Public License v.2 * ******************************************************/ /* * This external makes the two main test-functions available : * dirac~: will make a single peak (eg: a 1 in all the 0s) at * a desired position in the signal-vector * the position can be passed as an argument when creating the object * * NOTE : the inlets do NOT specify any times but sample-NUMBERS; * there are 64 samples in a "standard" signal-vector, * each "lasting" for 1/44100 secs. */ #include "zexy.h" /* ------------------------ dirac~ ----------------------------- */ static t_class *dirac_class; typedef struct _dirac { t_object x_obj; t_int position; t_int do_it; } t_dirac; static void dirac_bang(t_dirac *x) { x->do_it = x->position; } static void dirac_float(t_dirac *x, t_float where) { x->do_it = x->position = (t_int)where; } static t_int *dirac_perform(t_int *w) { t_dirac *x = (t_dirac *)(w[1]); t_float *out = (t_float *)(w[2]); int n = (int)(w[3]); t_int do_it = x->do_it; zero_perform(w+1); if (do_it >= n) x->do_it -= n; else if(do_it >= 0) { out[do_it] = 1.f; x->do_it = -1; } return (w+4); } static t_int *dirac_perf8(t_int *w) { t_dirac *x = (t_dirac *)(w[1]); t_float *out = (t_float *)(w[2]); int n = (int)(w[3]); t_int do_it = x->do_it; #ifndef __WIN32__ /* LATER: investigate the occurence of zero_perf8() */ /* it seems, like pd has the symbol zero_perf8(), * but it is not exported by m_pd.h: * so linux can use it, but w32 not * have to tell miller about that */ zero_perf8(w+1); #else zero_perform(w+1); #endif if (do_it >= n) x->do_it -= n; else if(do_it >= 0) { out[do_it] = 1.f; x->do_it = -1; } return (w+4); } static void dirac_dsp(t_dirac *x, t_signal **sp) { if (sp[0]->s_n & 7) dsp_add(dirac_perform, 3, x, sp[0]->s_vec, sp[0]->s_n); else dsp_add(dirac_perf8, 3, x, sp[0]->s_vec, sp[0]->s_n); } static void dirac_helper(void) { post("%c dirac~-object :: generates a dirac (unity-pulse)", HEARTSYMBOL); post("creation : \"dirac~ []\" : create a dirac at specified position (in samples)\n" "inlet\t: \t: create a dirac at new position\n" "\t 'bang'\t: create a dirac at specified position\n" "\t 'help'\t: view this\n" "outlet\t: signal~"); } static void *dirac_new(t_floatarg where) { t_dirac *x = (t_dirac *)pd_new(dirac_class); outlet_new(&x->x_obj, gensym("signal")); x->do_it = where; if (where > 0) x->position = where; else x->position = -where; return (x); } void dirac_tilde_setup(void) { dirac_class = class_new(gensym("dirac~"), (t_newmethod)dirac_new, 0, sizeof(t_dirac), 0, A_DEFFLOAT, 0); class_addfloat(dirac_class, dirac_float); class_addbang(dirac_class, dirac_bang); class_addmethod(dirac_class, (t_method)dirac_dsp, gensym("dsp"), 0); class_addmethod(dirac_class, (t_method)dirac_helper, gensym("help"), 0); class_sethelpsymbol(dirac_class, gensym("zexy/dirac~")); zexy_register("dirac~"); } void z_dirac__setup(void) { dirac_tilde_setup(); }