Re: [PD] Inlet Proxy object example

2007-12-13 Thread Hans-Christoph Steiner
Thanks for this, it looks like a nice, clean example of how to do this. Very valuable. I'm sure I'll have questions about this stuff. For example, right now I am in the process of figuring out how to parse the object arguments for ?, then dynamically create an inlet for each ? it

Re: [PD] Inlet Proxy object example

2007-12-13 Thread Claude Heiland-Allen
Hans-Christoph Steiner wrote: I was trying to figure out how this is done in [expr], but that code is super strange, so no luck yet. Anyone else have examples of dynamically creating inlets in C based on object arguments? pdlua does this, the relevant functions in pdlua/src/lua.c are: //

Re: [PD] Inlet Proxy object example

2007-12-13 Thread Martin Peach
Hans-Christoph Steiner wrote: I was trying to figure out how this is done in [expr], but that code is super strange, so no luck yet. Anyone else have examples of dynamically creating inlets in C based on object arguments? str_new() in mrpeach/str/str.c adds an extra inlet for some of its

Re: [PD] Inlet Proxy object example

2007-12-11 Thread Alexandre Quessy
Nice ! Is your SQLite object fully implemented ? (thus usable) a 2007/12/10, Mike McGonagle [EMAIL PROTECTED]: Hello everyone, Over the weekend, I was given a huge lesson in both PD and humility... Anyway, what this is is an example of how to create an inlet proxy object to handle

Re: [PD] Inlet Proxy object example

2007-12-11 Thread Mike McGonagle
On 12/11/07, Alexandre Quessy [EMAIL PROTECTED] wrote: Nice ! Is your SQLite object fully implemented ? (thus usable) Well, we are still discussing how the interface in PD should work. The version that is posted currently is still just a preliminary. It does crash, but I can't figure out just

[PD] Inlet Proxy object example

2007-12-10 Thread Mike McGonagle
Hello everyone, Over the weekend, I was given a huge lesson in both PD and humility... Anyway, what this is is an example of how to create an inlet proxy object to handle arbitrary list input on a cold right inlet. It is something that was extracted from the 'x_list.c' source, and generalized to