hello
as i understood from my experiments with the stucts, the functionality to get/set symbol fields is not there. this post: http://lists.puredata.info/pipermail/pd-list/2004-08/021838.html suggests the same thing, and looking at the source i saw
g_traversal.c:
static void get_pointer(t_get *x, t_gpointer *gp) {
...
for (i = nitems - 1, vp = x->x_variables + i; i >= 0; i--, vp--) { float f = template_getfloat(template, vp->gv_sym, vec, 1); outlet_float(vp->gv_outlet, f); /* LATER deal with other types. */ } }
and similar code for "set".
am i right in assuming that it's just not been implemented yet? if so, are there any plans to do this in the near future or would it be useful to try to implement get/set for the symbols and send the patch to this list?
vasily
On Wed, 27 Jul 2005, Vasily Kuznetsov wrote:
am i right in assuming that it's just not been implemented yet?
I think so...
if so, are there any plans to do this in the near future or would it be useful to try to implement get/set for the symbols and send the patch to this list?
It would be appropriate to make the patch yourself but make sure it applies to devel_0_39 because that will soon be the branch that most developers will be working with.
____________________________________________________________________ Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju Freelance Digital Arts Engineer, Montréal QC Canada
Thanks Mathieu, I had lost Vasily's mail...
The CVS 0.39 has symbol support for 'get' and 'set'.
cheers Miller
On Sun, Jul 31, 2005 at 12:04:22AM -0400, Mathieu Bouchard wrote:
On Wed, 27 Jul 2005, Vasily Kuznetsov wrote:
am i right in assuming that it's just not been implemented yet?
I think so...
if so, are there any plans to do this in the near future or would it be useful to try to implement get/set for the symbols and send the patch to this list?
It would be appropriate to make the patch yourself but make sure it applies to devel_0_39 because that will soon be the branch that most developers will be working with.
Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju Freelance Digital Arts Engineer, Montréal QC Canada
PD-dev mailing list PD-dev@iem.at http://lists.puredata.info/listinfo/pd-dev
The last CVS version indeed has it. Thank you, Miller
Vasily
On Jul 31, 2005, at 11:43 AM, Miller Puckette wrote:
Thanks Mathieu, I had lost Vasily's mail...
The CVS 0.39 has symbol support for 'get' and 'set'.
cheers Miller
On Sun, Jul 31, 2005 at 12:04:22AM -0400, Mathieu Bouchard wrote: