Re: [PD-dev] glist font vs. default font - how to measure?

2007-09-05 Thread Mathieu Bouchard
On Tue, 4 Sep 2007, Hans-Christoph Steiner wrote: Actually, I think the preferred way of specifying the font would be to use Tk font specs rather than X11 font specs. They are easier anyway. I replaced all the X11 font specs in Pd-extended using Tk font specs. They are like this: font size

Re: [PD-dev] state-saving / properties in abstractions...

2007-09-05 Thread IOhannes m zmoelnig
Hans-Christoph Steiner wrote: Wow, awesome! You beat me to the whole thing. Can't wait to try them. iemlib is fine by me, as long as it doesn't restrict your access to them. since thomas is unavailable for the next 2 weeks, i just decided to put them into another new library iemguts

Re: [PD-dev] state-saving / properties in abstractions...

2007-09-05 Thread David Plans Casal
On 5 Sep 2007, at 10:42, IOhannes m zmoelnig wrote: Basically all the libs are such random grab bags, I don't think it currently matters much. i wouldn't say that. some are, others aren't (at least some of my libs aren't :-)) well mine is, so there ;-) but, I'm committed to cleaning up

Re: [PD-dev] cvs access

2007-09-05 Thread David Plans Casal
I'd say that's a pretty thorough introduction! d On 5 Sep 2007, at 02:34, Thomas O Fredericks wrote: I have been PDing for over 5 years. I definitly master patching in PD. I have created a few externals for PD, most of them for my personal use or for installation projects (with the help of

[PD-dev] [ pure-data-Bugs-1788587 ] unpackOSC doesn't like typed floats

2007-09-05 Thread SourceForge.net
Bugs item #1788587, was opened at 2007-09-05 18:01 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=1788587group_id=55736 Please note that this message will contain a full copy of

[PD-dev] [ pure-data-Bugs-1788587 ] unpackOSC doesn't like typed floats

2007-09-05 Thread SourceForge.net
Bugs item #1788587, was opened at 2007-09-05 18:01 Message generated for change (Comment added) made by zmoelnig You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=1788587group_id=55736 Please note that this message will contain a full copy of the comment

[PD-dev] [ pure-data-Bugs-1759014 ] random tcpserver crashes

2007-09-05 Thread SourceForge.net
Bugs item #1759014, was opened at 2007-07-23 18:17 Message generated for change (Comment added) made by zmoelnig You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=1759014group_id=55736 Please note that this message will contain a full copy of the comment

[PD-dev] sys_idlehook and audio API interaction

2007-09-05 Thread Claude Heiland-Allen
Hi, I made an external to let patches do things when Pd is idle: [idlebang] -- output a bang when Pd is idle but it seems to be heavily dependent on the audio API. With OSS, I get around 200 bangs per second. With ALSA, I get around 7 bangs per second. With JACK, I get around 1 bang

Re: [PD-dev] sys_idlehook and audio API interaction

2007-09-05 Thread Thomas Grill
Hi Claude, since we were in the same paper session at the convention you might remember that i was advocating a different idle processing scheme in my talk. When you are looking into m_sched.c you'll notice that the sys_idlehook call is dependent on the didsomething varialbe, which is

[PD-dev] [ pure-data-Bugs-1788587 ] unpackOSC doesn't like typed floats

2007-09-05 Thread SourceForge.net
Bugs item #1788587, was opened at 2007-09-05 12:01 Message generated for change (Comment added) made by mrpeach You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=1788587group_id=55736 Please note that this message will contain a full copy of the comment

Re: [PD-dev] sys_idlehook and audio API interaction

2007-09-05 Thread Claude Heiland-Allen
Hi Thomas, Yes, I remember, with different return codes from the hook for I'm done and I have more to do (and also I did nothing?). I also think there should be a better mechanism for registering hooks, that also allows unregistering hooks later. Example: 1. X stores existing loader hook W,

Re: [PD-dev] sys_idlehook and audio API interaction

2007-09-05 Thread Thomas Grill
Am 05.09.2007 um 22:04 schrieb Claude Heiland-Allen: Yes, I remember, with different return codes from the hook for I'm done and I have more to do (and also I did nothing?). I also think there should be a better mechanism for registering hooks, that also allows unregistering hooks

Re: [PD-dev] glist_grab not grabbing arrows

2007-09-05 Thread federico
*embarrassment* -_- nevermind the discussion about strcmp(), De Morgan's laws, and such I got confused about strcmp() the function returns a comparison result. In order to interpret it as the boolean strings are equal should be inverted... so my discussion actually is pointless :) (the

Re: [PD-dev] glist_grab not grabbing arrows

2007-09-05 Thread Hans-Christoph Steiner
On Sep 5, 2007, at 4:53 PM, federico wrote: I searched thru the externals... didn't found one using arrow keys. anyone can give an example of capturing arrow keys? There are internals for that: [key], [keyup] and [keyname], you can look at their code in x_gui.c ok, I understand pd_bind().