blob: 5efd54bdb3082af031ccbeaf6c2c0b9ce9a1074c (
plain)
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
|
static t_class *paramPath_class;
typedef struct _paramPath
{
t_object x_obj;
t_outlet* outlet;
t_symbol* path;
//t_symbol* root;
} t_paramPath;
// Dump out everything (OR THE ID'S OR JUST THE NAMES?)
static void paramPath_bang(t_paramPath *x) {
outlet_symbol(x->outlet,x->path);
}
static void paramPath_free(t_paramPath *x)
{
}
static void *paramPath_new(t_symbol *s, int ac, t_atom *av) {
t_paramPath *x = (t_paramPath *)pd_new(paramPath_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 paramPath_setup(void) {
paramPath_class = class_new(gensym("param path"),
(t_newmethod)paramPath_new, (t_method)paramPath_free,
sizeof(t_paramPath), 0, A_GIMME, 0);
class_addbang(paramPath_class, paramPath_bang);
class_sethelpsymbol(paramPath_class, gensym("param"));
}
|