From d82c79024b44f96d3c5f613cfb93cc9c9d917ff9 Mon Sep 17 00:00:00 2001 From: Thomas O Fredericks Date: Thu, 22 Oct 2009 19:48:22 +0000 Subject: Added single file version of param svn path=/trunk/externals/tof/; revision=12644 --- src/paramId.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/paramId.h (limited to 'src/paramId.h') diff --git a/src/paramId.h b/src/paramId.h new file mode 100644 index 0000000..d36167b --- /dev/null +++ b/src/paramId.h @@ -0,0 +1,52 @@ + + +static t_class *paramId_class; + + +typedef struct _paramId +{ + t_object x_obj; + t_outlet* outlet; + t_symbol* path; + //t_symbol* root; +} t_paramId; + + + +// Dump out everything (OR THE ID'S OR JUST THE NAMES?) +static void paramId_bang(t_paramId *x) { + + outlet_symbol(x->outlet,x->path); + + +} + + + +static void paramId_free(t_paramId *x) +{ + + +} + + +static void *paramId_new(t_symbol *s, int ac, t_atom *av) { + t_paramId *x = (t_paramId *)pd_new(paramId_class); + + //x->root = tof_get_dollarzero(tof_get_root_canvas(tof_get_canvas())); + t_canvas* canvas = tof_get_canvas(); + x->path = param_get_path(canvas,NULL); + + x->outlet = outlet_new(&x->x_obj, &s_list); + + return (x); +} + +void paramId_setup(void) { + paramId_class = class_new(gensym("paramId"), + (t_newmethod)paramId_new, (t_method)paramId_free, + sizeof(t_paramId), 0, A_GIMME, 0); + + class_addbang(paramId_class, paramId_bang); + +} -- cgit v1.2.1