aboutsummaryrefslogtreecommitdiff
path: root/src/paramDump.h
blob: d6684e57c072acdc074865b2e6f115f250d5ff9d (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171


static t_class *paramDump_class;
 

typedef struct _paramDump
{
  t_object                  x_obj;
  t_outlet*			        outlet;
  t_symbol*					empty_s;
  t_symbol*					root;

} t_paramDump;

/*
static void paramDump_updateguis(t_paramDump *x, t_symbol* s) {
	
	t_param* p = get_param_list(x->root);
	int ac;
	t_atom* av;
	
	if ( s == x->empty_s ) {
		while (p) {
			if (p->GUIUpdate) {
				p->GUIUpdate(p->x);
			}
		p = p->next;
		}
	} else {
		int length = strlen(s->s_name);
		while (p) {
			if (p->GUIUpdate && (strncmp(p->path->s_name,s->s_name,length)==0) ) {
				p->GUIUpdate(p->x);
				
			}
		p = p->next;
		}
	}
		
}
*/
static void paramDump_guis(t_paramDump *x, t_symbol* s) {
	
	t_param* p = get_param_list(x->root);
	int ac;
	t_atom* av;
    t_symbol* send;
     t_symbol* receive;
	
	if ( s == x->empty_s ) {
		while (p) {
			if (p->GUI ) {
				p->GUI(p->x,&ac,&av,&send,&receive);
				tof_outlet_list_prepend(x->outlet,&s_list,ac,av,p->path);
				//outlet_anything(x->outlet,p->path,ac,av);
				
			}
		p = p->next;
		}
	} else {
		int length = strlen(s->s_name);
		while (p) {
			if (p->GUI && (strncmp(p->path->s_name,s->s_name,length)==0) ) {
				p->GUI(p->x,&ac,&av,&send,&receive);
				tof_outlet_list_prepend(x->outlet,&s_list,ac,av,p->path);
				//outlet_anything(x->outlet,p->path,ac,av);
				
			}
		p = p->next;
		}
	}
		
}


static void paramDump_symbol(t_paramDump *x, t_symbol* s) {
	
	t_param* p = get_param_list(x->root);
	#ifdef PARAMDEBUG
	if (p == NULL) {
		post("No params found");
	} else {
		post("Found params");
	}
	#endif
	
	t_symbol* selector;
	int ac;
	t_atom* av;
	
	
	
	int length = strlen(s->s_name);
	
	while (p) {
		if ( p->get && (strncmp(p->path->s_name,s->s_name,length)==0) ) {
			p->get(p->x, &selector, &ac, &av);
			tof_outlet_list_prepend(x->outlet,selector,ac,av,p->path);
		}
		p = p->next;
	}
    
}

// Dump out
static void paramDump_bang(t_paramDump *x) {
	
	t_param* p = get_param_list(x->root);
	#ifdef PARAMDEBUG
	if (p == NULL) {
		post("No params found");
	} else {
		post("Found params");
	}
	#endif
	
	t_symbol* selector;
	int ac;
	t_atom* av;
	
	
	while (p) {
		if ( p->get ) {
			p->get(p->x, &selector, &ac, &av);
			tof_outlet_list_prepend(x->outlet,selector,ac,av,p->path);
		}
		p = p->next;
	}
	
    
}



static void paramDump_free(t_paramDump *x)
{
	
	
}


static void *paramDump_new(t_symbol *s, int ac, t_atom *av) {
  t_paramDump *x = (t_paramDump *)pd_new(paramDump_class);
  
  x->root = tof_get_dollarzero(tof_get_root_canvas(tof_get_canvas()));
  x->empty_s = gensym("");
  
    //x->s_set = gensym("set");
	
    x->outlet = outlet_new(&x->x_obj, &s_list);
    
  return (x);
}

void paramDump_setup(void) {
  paramDump_class = class_new(gensym("param dump"),
    (t_newmethod)paramDump_new, (t_method)paramDump_free,
    sizeof(t_paramDump), 0, A_GIMME, 0);

 class_addbang(paramDump_class, paramDump_bang);
 class_addsymbol(paramDump_class, paramDump_symbol);

 //class_addmethod(paramDump_class, (t_method) paramDump_values, gensym("values"), A_DEFSYMBOL,0);
 
 class_addmethod(paramDump_class, (t_method) paramDump_guis, gensym("guis"), A_DEFSYMBOL,0);
 //class_addmethod(paramDump_class, (t_method) paramDump_updateguis, gensym("updateguis"), A_DEFSYMBOL,0);

 class_sethelpsymbol(paramDump_class,gensym("param"));
 //class_addmethod(paramDump_class, (t_method) paramDump_update_guis, gensym("update"), A_DEFSYMBOL,0);

}