Re: [PD] best format for send/receive between iOS and libPD

2014-05-10 Thread Rich E
I'd second what Miller said, for a different reason though: every time you send a message from your app's main thread (the iOS / obj-c bits) into pd (the libpd bits), a mutex will lock because the audio thread runs on a different thread and needs to be synchronized. Breaking the lists down (not

Re: [PD] [OT] Multichannel output with presonus firepod on windows, how?

2014-03-31 Thread Rich E
:55 AM, Rich E reakina...@gmail.com wrote: Hi all, I'm not too familiar with using dedicated audio interfaces on Windows, but I find myself trying to get more than two channels to output on Windows in Pd with a Presonus Firepod, and all it allows for is stereo. Instead of one device that has

[PD] [OT] Multichannel output with presonus firepod on windows, how?

2014-03-30 Thread Rich E
Hi all, I'm not too familiar with using dedicated audio interfaces on Windows, but I find myself trying to get more than two channels to output on Windows in Pd with a Presonus Firepod, and all it allows for is stereo. Instead of one device that has 10 ins and 10 outs, I get 5 devices that each

Re: [PD] libpd separating gui from core

2014-02-26 Thread Rich E
On Wed, Feb 26, 2014 at 6:39 PM, Miller Puckette m...@ucsd.edu wrote: HI all - My figure was 100K lines, not 10K. PD's C code is at about 70K now, and the Tcl/TK code is 7K - so I am only adding expansions very carefully now. Another related idea with an absurdly arbitrary round number

Re: [PD] libpd separating gui from core

2014-02-26 Thread Rich E
On Wed, Feb 26, 2014 at 5:03 PM, Ivica Bukvic i...@vt.edu wrote: The reason why I believe combining all of these will not be feasible is because in one of my recent conversations with Miller (and Miller please correct me if I somehow misremember here) he expressed his belief any project that

Re: [PD] libpd separating gui from core

2014-02-23 Thread Rich E
Hey lets keep on topic here. :) I'd say separating the gui and core is much less work than trying to revamp pd's threading model. Just *enabling* thirdparty GUI's that can talk to pd core as an audio and computation engine, should be possible without breaking backwards compatibility.

Re: [PD] libpd separating gui from core

2014-02-22 Thread Rich E
On Fri, Feb 21, 2014 at 3:54 AM, Jonathan Wilkes jancs...@yahoo.com wrote: On 02/20/2014 09:50 PM, Rich E wrote: On Wed, Feb 19, 2014 at 12:07 AM, Jonathan Wilkes jancs...@yahoo.comwrote: On 02/18/2014 11:11 PM, Rich E wrote: On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat

Re: [PD] libpd separating gui from core

2014-02-20 Thread Rich E
On Wed, Feb 19, 2014 at 12:07 AM, Jonathan Wilkes jancs...@yahoo.comwrote: On 02/18/2014 11:11 PM, Rich E wrote: On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat...@gmail.com wrote: Ah wait, duh. Of course the graph needs to know positioning, that's how it determines execution order

Re: [PD] libpd separating gui from core

2014-02-18 Thread Rich E
On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat...@gmail.com wrote: Ah wait, duh. Of course the graph needs to know positioning, that's how it determines execution order or independent blocks of objects right? On Jan 13, 2014, at 5:14 PM, Dan Wilcox danomat...@gmail.com wrote: Does the

Re: [PD] Legal restrictions for apps

2013-10-05 Thread Rich E
AFAIK, [expr]/[expr~] are not built into any libpd produced binaries, nor any other GPL/LGPL components. The user has to opt into those by adding them to their project. So you should be good. On Thu, Oct 3, 2013 at 11:30 AM, Dan Wilcox danomat...@gmail.com wrote: If your using libpd, you

Re: [PD] Libpd running in OS X app

2013-07-08 Thread Rich E
project so I'll try that and see if it makes any difference. Weird! Thanks for the help guys, Joe On 7 July 2013 03:02, Rich E reakina...@gmail.com wrote: I started adding support for using PdAudioUnit in a Cocoa / OS X app (PdAudioController is too iOS-specific) and checked my progress

Re: [PD] Libpd running in OS X app

2013-07-06 Thread Rich E
I started adding support for using PdAudioUnit in a Cocoa / OS X app (PdAudioController is too iOS-specific) and checked my progress into the cocoa branch here: https://github.com/libpd/libpd/tree/cocoa There is a (very basic) working app at:

Re: [PD] [announce] [pd-fileutils] released, a command-line tool for managing pd files

2013-03-01 Thread Rich E
Yea this is really nice, glad you got the proof of concept working! Is there a number box? Couldn't find it. Please keep us all posted.. On Fri, Mar 1, 2013 at 12:08 PM, Hans-Christoph Steiner h...@at.or.atwrote: Wow, that's impressive, it actually works! Rough, yes, but working. .hc

Re: [PD] compiling externals for osx i5/i7

2012-11-03 Thread Rich E
Don't you want to compile universal binaries (-arch i386 -arch x86_64)? That way you only need one set. On Sat, Nov 3, 2012 at 7:49 PM, Miller Puckette m...@ucsd.edu wrote: This is strange... I thought i3/5/7 were upwards compatible with older processors and hence should not need any

Re: [PD] AES Budapest

2012-04-29 Thread Rich E
For some spicy gulyas I would suggest the Sürcsarnok, near to the Great Market Hall and the Szabadság Híd. :) I may be spelling these things wrong.. but it's well worth it and I were to pass through Budapest, that is one place I wouldn't miss. For music / night, Instant

Re: [PD] [PD-dev] Filter design for iPhone

2012-03-20 Thread Rich E
What do you mean by break, crashes? If yes, what version of libpd are you using? Up until about a month ago, floating point exceptions (such as NAN) would crash libpd, whereas pd-vanilla ignores them. Peter B. recently added a commit that changed this:

Re: [PD] C++ for reusable dsp lib - or better use C?

2012-03-04 Thread Rich E
On Sat, Mar 3, 2012 at 3:47 AM, Hans-Christoph Steiner h...@at.or.atwrote: The C++ ABI compatibility problems are not the only thing that make C++ hard to deploy. On limited platforms like Android, they include limited C++ support, like no exceptions and other stuff. Its still possible to

Re: [PD] C++ for reusable dsp lib - or better use C?

2012-03-04 Thread Rich E
For the last 10 years or so, it's been considered bad practice to use naked pointers in C++. This is because of shared_ptr and friends, along with stl. It's great; for example, I have a moderately sized C++ project I'm working on at the moment that has absolutely no explicit delete's -

Re: [PD] C++ for reusable dsp lib - or better use C?

2012-03-04 Thread Rich E
It's a bit dated now, but loris is a good example; a sophisticated sound modeling library. Written in C++ with a procedural interface in C and a scripting interface in python: http://www.hakenaudio.com/Loris/#doc cheers, Rich On Fri, Mar 2, 2012 at 11:32 PM, katja katjavet...@gmail.com wrote:

Re: [PD] latest Pd-Extended cpu usage (was: new editing features of Pd-extended 0.43, now in beta)

2012-02-29 Thread Rich E
Note that the issue I'm seeing is a difference in cpu usage between Pd-Extended and Pd-vanilla. In OS X 10.7, when opening up each version of pd and looking at Activity Monitor (before every opening a patch or turning on DSP), I get: - Pd-0.43.1-extended-20120228 running at ~ 17% cpu - Pd-0.43-1

Re: [PD] Mac OS X/PowerPC builds needed

2012-02-26 Thread Rich E
Does anyone use Power PC for audio work anymore? Also, is there a 10.7 machine? The latter seems more in demand. cheers, Rich On Mon, Feb 27, 2012 at 12:56 PM, Hans-Christoph Steiner h...@at.or.atwrote: So the Mac OS X PowerPC machine from the build farm has died. The hard drive is intact,

Re: [PD] C++ for reusable dsp lib - or better use C?

2012-02-21 Thread Rich E
(To throw in a different take). I definitely like C++ more for ease of interface. Templated math functions and overloaded operators are just too nice, the code looks so much better (at a user level). There are also plenty of audio languages written in C++ - SuperCollider, ZenGarden (which is

Re: [PD] [PD-announce] new editing features of Pd-extended 0.43, now in beta!

2012-02-20 Thread Rich E
On Sun, Feb 19, 2012 at 4:20 AM, Hans-Christoph Steiner h...@at.or.atwrote: You're using the 64-bit Mac OS X version. That won't be a full release in 0.43 since there are some issues porting things away from Carbon that won't be resolved in time. The 64-bit version means you can address

Re: [PD] [PD-announce] new editing features of Pd-extended 0.43, now in beta!

2012-02-17 Thread Rich E
Thanks Hans! I just tried on OS X Lion and got the following errors upon startup: /Applications/Pd-0.43.1-extended-20120217.app/Contents/Resources/Scripts/../extra/tclpd/tclpd.pd_darwin:

Re: [PD] PD on iPhone

2011-10-09 Thread Rich E
Development in libpd is going strong, although still in alpha. The iOS layer is working great, although both the audio and message callback layers are currently going through an overhaul to be more flexible. For an example of an app using it in the app store, check out NodeBeat by Seth Sandler

[PD] How to stop pd from reopening patches on startup in OS X?

2011-10-09 Thread Rich E
Theres a bug with the latest vanilla version of pd in OS X (at least 10.7, don't know about older versions) that causes pd to crash when trying to reopen patches from the last session. It is filed here: https://sourceforge.net/tracker/index.php?func=detailaid=3396316group_id=55736atid=478070 As

Re: [PD] How to stop pd from reopening patches on startup in OS X?

2011-10-09 Thread Rich E
it crashes. Dunno. On Mon, Oct 10, 2011 at 11:42 AM, Hans-Christoph Steiner h...@at.or.atwrote: I imagine they are probably stored in some kind of plist in ~/Library/Preferences. But that's just a guess. .hc On Oct 9, 2011, at 8:17 PM, Rich E wrote: Theres a bug with the latest vanilla version

[PD] compiling pd vanilla in OS X 10.7 Lion

2011-09-25 Thread Rich E
Hi all, I compiled pd vanilla (Miller's git repo) in OS X 10.7 Lion yesterday and ran into (only) a couple hitches. It seems gettext is missing and this causes the linking to fail because it can't find the msgfmt tool. I got it and compiled pd by doing: sudo brew install --universal gettext

Re: [PD] audio 1.0 not clipping?

2011-09-11 Thread Rich E
wrote: On Sun, 11 Sep 2011, Rich E wrote: Does anyone know why this doesn't clip?: [osc~ 200] | [*~ 1.5] | [dac~] I'm trying this using pd 0.43 and the audio still sounds good (although some extra harmonics can be heard), despite the phases being in the range of [-1.5, 1.5

[PD] audio 1.0 not clipping?

2011-09-10 Thread Rich E
Does anyone know why this doesn't clip?: [osc~ 200] | [*~ 1.5] | [dac~] I'm trying this using pd 0.43 and the audio still sounds good (although some extra harmonics can be heard), despite the phases being in the range of [-1.5, 1.5]... ? Cheers, Rich

[PD] is OOURA fft algorithm still used?

2011-05-16 Thread Rich E
Hi all, Is the OOURA fft algorithm (d_fft_fftsg.c) ever used in pd? I can't really tell from the makefile (granted, I don't really know how to use the autotools system), but I cannot see the file ever compiled into pd during the make. I though that OOURA was the fastest and most flexible fft

Re: [PD] [PD-announce] completion-plugin new version

2011-05-15 Thread Rich E
I'd love to try this out but I'm using Pd-Vanilla, and so tcl 8.4. Whats the easiest way to get pd on OS X to look at my copy of tcl 8.5? I installed it in /usr/local/bin via ActiveTcl... I was hoping not to have to compile for source but oh well. cheers, Rich On Sun, May 15, 2011 at 4:19 AM,

Re: [PD] [PD-announce] completion-plugin new version

2011-05-15 Thread Rich E
Ah I got it working from Miller's git repo, its nice! I'm sure it will make programming in pd much faster once I'm used to it. Still, does anyone know how to update to tcl 8.5 when using a precompiled binary version of pd? Cheers, Rich On Sun, May 15, 2011 at 5:05 PM, Rich E reakina

Re: [PD] Dynamic patching with audio - review

2011-03-22 Thread Rich E
...@artengine.cawrote: On Sun, 20 Mar 2011, Rich E wrote: Dynamic patch loading/unloading (not dynamic patching) could also be done directly in a pd external, provided the following small patch is accepted (: http://sourceforge.net/tracker/?func=detailaid=3189135group_id=55736atid=478072

Re: [PD] Dynamic patching with audio - review

2011-03-19 Thread Rich E
Oh, cool, I wasn't aware of that. Can you tell a bit more about the performance of this approach and how it compares to dynamic patching for dynamic instantiation of objects/patches? Ciao -- Frank BarknechtDo You RjDj.me? _ __footils.org__ Initial

Re: [PD] Dynamic patching with audio - review

2011-03-16 Thread Rich E
Hi, libpd will make a complete instance of Pd available inside of another application, but it does not deal with instantiating single objects. libpd does (handle instantiating patches) as of about 2 weeks ago. It maintains the $0 value of the patch as well, so you can send values to unique

Re: [PD] Dynamic patching with audio - review

2011-03-16 Thread Rich E
See this thread at Pd Everywhere: http://noisepages.com/groups/pd-everywhere/forum/topic/new-patch-handling-api/ On Thu, Mar 17, 2011 at 1:17 AM, Rich E rich.ea...@gmail.com wrote: Hi, libpd will make a complete instance of Pd available inside of another application, but it does not deal

Re: [PD] where to find $ args

2011-02-05 Thread Rich E
On Sat, Feb 5, 2011 at 3:44 PM, Mathieu Bouchard ma...@artengine.ca wrote: On Tue, 25 Jan 2011, Rich E wrote: Ah, understood. Thanks for the nice code explanation and references... they both really help. I noticed that t_canvasenvironment remains privately defined, so it's difficult

Re: [PD] where to find $ args

2011-01-25 Thread Rich E
Ah, understood. Thanks for the nice code explanation and references... they both really help. I noticed that t_canvasenvironment remains privately defined, so it's difficult to use this struct. To get the dollarzero, I saw this works: canvas_setcurrent(x_canvas); int dzero =

[PD] where to find $ args

2011-01-23 Thread Rich E
Hi list, If I were to make an external that has access to $ arguments, does anyone know where I can find the necessary methods for retrieving this information? Or is it only available at instantiation? Most importantly, I am looking for a way to get the $0 value of a patch from C. Cheers, Rich

Re: [PD] [PD-announce] libpd: An embeddable sound engine for Android, iOS, C, Java, and more

2010-11-09 Thread Rich E
Awesome work! May I ask what the current issues are with iOS? Rich On Sun, Oct 24, 2010 at 4:11 AM, Tedb0t li...@liminastudio.com wrote: Awesome!! Chris McCormick (who has also added the ability to make HTML5 web interfaces) Is there more information about this anywhere yet? :D

Re: [PD] build zexy i386 on snow leopard

2010-03-25 Thread Rich E
this, and then they'll work: [import hexloader] .hc On Mar 24, 2010, at 9:13 PM, Rich E wrote: Anyone know how to do this? I want to get the library so ~, ~ etc. work along with pd-extended. This is how I got them before. I tried: make CFLAGS=-arch i386 LDFLAGS=-arch i386 but ld

[PD] build zexy i386 on snow leopard

2010-03-24 Thread Rich E
Anyone know how to do this? I want to get the library so ~, ~ etc. work along with pd-extended. This is how I got them before. I tried: make CFLAGS=-arch i386 LDFLAGS=-arch i386 but ld is complaining still. thanks.. Rich ___ Pd-list@iem.at mailing

Re: [PD] pd-gui-rewrite preferences

2010-01-22 Thread Rich E
Steiner h...@at.or.at On Jan 22, 2010, at 1:12 PM, András Murányi wrote: Rich E wrote: Hi list, I was just thinking, as I noticed that Hans made it where Apple+, opens the preferences menu on OS X (as does every other native-mac app), why not group all the preferences in one dialog

[PD] pd-gui-rewrite preferences

2010-01-21 Thread Rich E
Hi list, I was just thinking, as I noticed that Hans made it where Apple+, opens the preferences menu on OS X (as does every other native-mac app), why not group all the preferences in one dialog, with sub dialogs? This is how other apps I use on OS X behave and I find it convenient. Besides,

Re: [PD] pd-gui-rewrite testing

2010-01-21 Thread Rich E
...@at.or.atwrote: On Jan 17, 2010, at 3:01 PM, Rich E wrote: On Sun, Jan 17, 2010 at 8:07 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Jan 17, 2010, at 10:10 AM, Rich E wrote: On Sun, Jan 10, 2010 at 12:29 AM, Hans-Christoph Steiner h...@at.or.atwrote: On Jan 9, 2010, at 5:37 PM

[PD] pd using 25% cpu when opened

2010-01-20 Thread Rich E
I just noticed that when I open pd, without a patch and with default settings, it uses 25% cpu according to the Activity Monitor. If I turn on dsp then turn it back off, it drops to almost nothing. I'm running OS X Snow Leopard 10.6. I first noticed this using the 0.43 devel branch, but then

Re: [PD] pd-gui-rewrite testing

2010-01-17 Thread Rich E
On Sun, Jan 10, 2010 at 12:29 AM, Hans-Christoph Steiner h...@at.or.atwrote: On Jan 9, 2010, at 5:37 PM, Rich E wrote: Still in OS X 10.6. I don't have one of these problems with Pd-devel-0.43 (dec 15) nightly build, so it must all be because of the tk/cocoa version that you mention. I'm

Re: [PD] 'synced' number and slider

2010-01-17 Thread Rich E
--- On Sat, 1/16/10, Rich E rich.ea...@gmail.com wrote: From: Rich E rich.ea...@gmail.com Subject: Re: [PD] 'synced' number and slider To: Jonathan Wilkes jancs...@yahoo.com Cc: Lorenzo lsut...@libero.it, IOhannes zmölnig zmoel...@iem.at, pd-list@iem.at Date: Saturday, January 16, 2010, 8

Re: [PD] pd-gui-rewrite testing

2010-01-17 Thread Rich E
On Sun, Jan 17, 2010 at 8:07 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Jan 17, 2010, at 10:10 AM, Rich E wrote: On Sun, Jan 10, 2010 at 12:29 AM, Hans-Christoph Steiner h...@at.or.atwrote: On Jan 9, 2010, at 5:37 PM, Rich E wrote: Still in OS X 10.6. I don't have one

Re: [PD] 'synced' number and slider

2010-01-16 Thread Rich E
You can still send the set message directly to the inlet of the numberbox2 or slider and it won't effect the other. See patch. 2010/1/16 Jonathan Wilkes jancs...@yahoo.com --- On Sat, 1/16/10, IOhannes zmölnig zmoel...@iem.at wrote: From: IOhannes zmölnig zmoel...@iem.at Subject: Re:

Re: [PD] pd-gui-rewrite testing

2010-01-16 Thread Rich E
if using Tk Carbon (i.e. no AppKit in [winfo server .] ). I added two new functions for dealing with the special Apple menus: http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=revrevision=12970 .hc On Jan 12, 2010, at 8:44 AM, Rich E wrote: Hello, I am forwarding

Re: [PD] Problem with Snow Leopard and Flext

2010-01-16 Thread Rich E
I have been working with a flext external in Snow Leopard, but I did not have any success getting it to work with Pd Extended (long story, it is a wacom external that is dealing with all the Carbon/Cocoa problems that currently exist). I compile everything with CFLAGS=-arch i386. No seg faults

Re: [PD] pd-gui-rewrite testing

2010-01-12 Thread Rich E
Hello, I am forwarding this to the tcl-mac list too, as this question is probably more appropriate there. On Sun, Jan 10, 2010 at 12:29 AM, Hans-Christoph Steiner h...@at.or.atwrote: On Jan 9, 2010, at 5:37 PM, Rich E wrote: Still in OS X 10.6. I don't have one of these problems with Pd

Re: [PD] pd-gui-rewrite testing

2010-01-09 Thread Rich E
of the nightly builds, which include Tcl/Tk 8.5.7/Carbon. I think they should work on 10.6: http://autobuild.puredata.info/auto-build/latest/ On Nov 16, 2009, at 1:55 PM, Rich E wrote: Hi List, Hans, I've been using the pd-gui-rewrite-0.43 svn for a couple days now and here are some notes I've taken

Re: [PD] compiling pd vanilla problems on OS X 10.6 Snow Leopard

2009-12-31 Thread Rich E
PM, Rich E reakina...@gmail.com wrote: I listed some notes about the problems I was having with the gui rewrite, most problematic is that you can't navigate in text with arrows. Should I file bug reports or is the list fine for this? pd-gui-rewrite compiled with tcl/tk 8.5, but vanilla

Re: [PD] compiling pd vanilla problems on OS X 10.6 Snow Leopard

2009-12-30 Thread Rich E
vanilla in Snow Leopard? Jaime? On Tue, Dec 29, 2009 at 6:15 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Dec 28, 2009, at 1:19 PM, Rich E wrote: Hans, The gui rewrite version works fine on my computer, but I need Pd-Vanilla/Extented for testing purposes. Not to mention, there are various

Re: [PD] compiling pd vanilla problems on OS X 10.6 Snow Leopard

2009-12-28 Thread Rich E
://puredata.info/dev/PdGuiRewrite If not, report problems here and I try to fix them and commit them. .hc On Dec 27, 2009, at 10:25 AM, Rich E wrote: On I go. Loading /usr/bin/wish turns out to be 64bit, but running pd from Miller's pre-built app (or Pd-extended pre-built) creates a 32bit

Re: [PD] compiling pd vanilla problems on OS X 10.6 Snow Leopard

2009-12-27 Thread Rich E
on an external. Rich On Sat, Dec 26, 2009 at 12:29 AM, Rich E reakina...@gmail.com wrote: I hope someone can help me fix the last problem on this list, it is blocking me (libPdTcl.dylib wrong architecture). I can't see why it is detected as the wrong architecture, everything I check says

Re: [PD] writing externals in xCode

2009-12-27 Thread Rich E
Hi, Here is a guide: http://puredata.info/docs/developer/PdExternalsInXcode/ - rich On Mon, Dec 28, 2009 at 2:24 AM, sonia yuditskaya marysgh...@gmail.comwrote: Hello Lovely List, Does anyone have experience writing externals in Xcode? Is there a place where I can look about setting up the

Re: [PD] compiling pd vanilla problems on OS X 10.6 Snow Leopard

2009-12-25 Thread Rich E
maybe there is a problem there. It is attached. merry christmas, feliz navidad és boldog karácsonzyt (i think I may have barely missed it in my time)! - rich On Wed, Dec 23, 2009 at 4:44 AM, Rich E reakina...@gmail.com wrote: Hi, I am having problems compiling pd from Miller's website in OS X

Re: [PD] Range object

2009-12-24 Thread Rich E
there's a help file in svn in the folder externals/deprecated/help/. I guess it is deprecated :) - rich On Wed, Dec 23, 2009 at 8:11 PM, Hans-Christoph Steiner h...@at.or.atwrote: [range] is literally a copy of [maxlib/scale] that has been deprecated. Use [maxlib/scale], which has a help

Re: [PD] pd external that uses cocoa / objective C

2009-12-23 Thread Rich E
I have the base of the external in C, then call methods from another source file containing the Cocoa API in ObjC? 2009/12/23 IOhannes zmölnig zmoel...@iem.at Rich E wrote: Hmmm, after hearing back from the Cocoa-dev mailing list that all of Cocoa's Event handling code is based on Carbon

Re: [PD] pd external that uses cocoa / objective C

2009-12-22 Thread Rich E
attempt with the language). Anyways, Carbon is written in C, the WinTab API is written in C, so introducing ObjC may turn out to be a hassle later on instead of allowing future compatibility? Well, thanks for the advice anyways. On Mon, Dec 21, 2009 at 6:59 PM, Rich E rich.ea...@gmail.com wrote

Re: [PD] wacom / gemtablet / hid

2009-12-22 Thread Rich E
I'm not in front of a Linux machine at the moment, but I was using a Wacom tablet in linux for the last couple years. [HID] doesn't work with calling the symbolic links in /dev/input/. I was able to get the tablet to send out data with [hid] by going through the [open $1( with all indeces,

Re: [PD] wacom / gemtablet / hid

2009-12-22 Thread Rich E
The problem that I had with /dev/input/even* devices is that it always changes when you unplug/replug your tablet. /dev/input/wacom is a symbolic link to the newly created input, no matter what event* it is. On Tue, Dec 22, 2009 at 8:18 PM, Hans-Christoph Steiner h...@at.or.atwrote: [hid]

Re: [PD] wacom / gemtablet / hid

2009-12-22 Thread Rich E
Does pd have permissions to open /dev/input/wacom (or any of the event*'s)? On Tue, Dec 22, 2009 at 9:51 PM, cyrille henry c...@chnry.net wrote: the problem i have is that both does not work! :-) c Rich E a écrit : The problem that I had with /dev/input/even* devices is that it always

Re: [PD] wacom / gemtablet / hid

2009-12-22 Thread Rich E
not send any data... thanks Cyrille Rich E a écrit : Does pd have permissions to open /dev/input/wacom (or any of the event*'s)? On Tue, Dec 22, 2009 at 9:51 PM, cyrille henry c...@chnry.net mailto: c...@chnry.net wrote: the problem i have is that both does not work! :-) c

Re: [PD] wacom / gemtablet / hid

2009-12-22 Thread Rich E
a segmentation fault... thanks for your help Cyrille Rich E a écrit : What distribution are you running? In the newer Ubuntu's (ex Jaunty), I had to do all sorts of things to get back the old (and working) xorg configuration and stop using udev. I have a ton of posts about this on the linuxwacom

[PD] compiling pd vanilla problems on OS X 10.6 Snow Leopard

2009-12-22 Thread Rich E
Hi, I am having problems compiling pd from Miller's website in OS X Snow Leopard. Basically, Pd fell behind Apple's updates. Here are my problems, fixes where I found them: - the configure script automatically adds -isysroot blah blah for the 10.4 sdk, which doesn't work. this line is

Re: [PD] pd external that uses cocoa / objective C

2009-12-21 Thread Rich E
everything that I want it to do (and fast). Rich On Mon, Dec 21, 2009 at 9:54 AM, IOhannes m zmoelnig zmoel...@iem.atwrote: Rich E wrote: Hi all, I have been thinking of how to use cocoa in a pd external and I could use some advice. It has to be in Objective-C of course, and I see

[PD] pd external that uses cocoa / objective C

2009-12-20 Thread Rich E
Hi all, I have been thinking of how to use cocoa in a pd external and I could use some advice. It has to be in Objective-C of course, and I see that gridflow uses cocoa a little (format/quartz.m). Still, I am not understanding how to combine the elements of a pd external (in C) with that of what

Re: [PD] question about external free functions

2009-12-08 Thread Rich E
AM, Mathieu Bouchard ma...@artengine.ca wrote: On Tue, 1 Dec 2009, Rich E wrote: Okay, so Ctrl-Q skips all free functions on purpose. If I am understanding correctly, I need to register my cleanup function with atexit on a function of type void _function_(void), but that means I don't have

Re: [PD] question about external free functions

2009-12-01 Thread Rich E
Bouchard ma...@artengine.cawrote: On Sat, 28 Nov 2009, Rich E wrote: Can anyone help me understand why an external's free function doesn't seem to be called if pd is shut down as a whole (ex. ctrl-q)? I put post's, printf's, and breakpoints in my free function and they are called if I remove

[PD] question about external free functions

2009-11-28 Thread Rich E
Hi, Can anyone help me understand why an external's free function doesn't seem to be called if pd is shut down as a whole (ex. ctrl-q)? I put post's, printf's, and breakpoints in my free function and they are called if I remove the external from the patch or the patch as a whole (ex. ctrl-w).

Re: [PD] [GEM] OS X How to compile against SDK 10.5 in os x 10.6

2009-11-17 Thread Rich E
Anyone have more suggestions as how to get this compiling on Snow Leopard? It is making it impossible to build pd extended, which I would like to do in order to add debug flags. Rich On Thu, Nov 12, 2009 at 12:51 AM, Jaime Oliver jaime.oliv...@gmail.comwrote: I thought I had sent this already,

Re: [PD] compiling externals on snow leopard

2009-11-17 Thread Rich E
On Sat, Nov 14, 2009 at 7:30 PM, Rich E reakina...@gmail.com wrote: On Sat, Nov 14, 2009 at 6:17 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Nov 14, 2009, at 11:13 AM, Rich E wrote: Ran into problems right after starting the program... don't know why they weren't there before

Re: [PD] multiple pd versions and settings on OS X

2009-11-17 Thread Rich E
, just copy /Applications/Pd-extended.app/Contents/org.puredata.pd.default.plist to /Applications/Pd-extended.app/Contents/org.puredata.pd.plist .hc On Nov 16, 2009, at 5:35 PM, Rich E wrote: Hi, I've been using several different versions of pd in OS X: Pd-extended (packaged), Pd-vanilla

[PD] pd-gui-rewrite testing

2009-11-16 Thread Rich E
Hi List, Hans, I've been using the pd-gui-rewrite-0.43 svn for a couple days now and here are some notes I've taken when finding various bugs (is the better sent to the pd-dev list?): • In Audio Settings, the text in the drop down menus is hardly visible because it is very light grey • there is

Re: [PD] pd-gui-rewrite testing

2009-11-16 Thread Rich E
this when trying to open the 'Load Meter' patch, or any other patch via 'open'. Trying to close pd and reopen gives: ERROR: 'pd' never showed up, 'pd-gui' quitting! On Mon, Nov 16, 2009 at 7:55 PM, Rich E reakina...@gmail.com wrote: Hi List, Hans, I've been using the pd-gui-rewrite-0.43 svn

[PD] multiple pd versions and settings on OS X

2009-11-16 Thread Rich E
Hi, I've been using several different versions of pd in OS X: Pd-extended (packaged), Pd-vanilla (packaged), and pd-gui-rewrite (compiled). Every time I use vanilla or gui-rewrite, I need to set and save the audio settings, which writes a plist settings file to ~/Library/Preferences/. Then, when

Re: [PD] compiling externals on snow leopard

2009-11-15 Thread Rich E
it through that (this is how I normally run my patches in linux anyway). A question about settings: where are they stored in OS X if I compile from source? I know Pd-extended works with the plist system, but how about in the pd-gui-rewrite? Rich On Sat, Nov 14, 2009 at 4:35 PM, Rich E reakina

Re: [PD] compiling externals on snow leopard

2009-11-15 Thread Rich E
/LDFLAGS. .hc On Nov 13, 2009, at 2:03 PM, Rich E wrote: I compiled the pd-gui-rewrite branch today as 64bit with portaudio support, but haven't tested it much. To compile portaudio as 64bit, you need the the sources from their svn. If I try to compile using the sources included with pd, I

Re: [PD] Max4Live... How about Pd4Live?

2009-11-15 Thread Rich E
The thing that impressed me the most about Max4Live (haven't tried it, just seen some videos) is that you can receive parameter changes of Live's controls within Max and you can send parameter changes to just about everything from Max to Live. So, you can have one automation control another, or

Re: [PD] compiling externals on snow leopard

2009-11-15 Thread Rich E
On Sat, Nov 14, 2009 at 6:17 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Nov 14, 2009, at 11:13 AM, Rich E wrote: Ran into problems right after starting the program... don't know why they weren't there before, but.. If I try running pd from /usr/local/bin via 'make install', I get

Re: [PD] compiling externals on snow leopard

2009-11-15 Thread Rich E
On Nov 14, 2009, at 10:35 AM, Rich E wrote: Portaudio makes now, 64bit pd. I can also make the 32bit version using CFLAGS and LDFLAGS, but the --enable-universal doesn't work because of the following error: gcc-4.2: -E, -S, -save-temps and -M options are not allowed with multiple -arch flags

Re: [PD] Max4Live... How about Pd4Live?

2009-11-15 Thread Rich E
On Sat, Nov 14, 2009 at 1:18 PM, João Pais jmmmp...@googlemail.com wrote: I think you can all forget pd4live. after all, it's a commercial company. When I asked Gerhard about it (a bit as a joke because I knew the answer), he replied something like BLAHGRGAHGAGGGRRG! which doesn't mean that

[PD] how to tell if pd is in the background/foreground

2009-11-15 Thread Rich E
Hi all, Anyone know how to tell (on OS X) if pd is in the background or foreground from C? I'm messing with Thomas' [wacom] external, trying to get it to keep the tablet disconnected from the cursor, but it resets every time pd goes to background. So, if I can figure out from the external when

[PD] running Pd-extended from terminal in OS X

2009-11-15 Thread Rich E
I can't seem to open patches from the terminal in OS X (with pd-extended, the second command works with vanilla). I try either: /Applications/Pd-extended.app/Contents/Resources/bin/pd ~/pd/externals/incr/incr-help.pd /Applications/Pd-extended.app/Contents/Resources/bin/pd -open

Re: [PD] running Pd-extended from terminal in OS X

2009-11-15 Thread Rich E
-extended (0.41.4), but with PD vanilla 0.42-5 it does work. Am 15.11.2009 um 21:16 schrieb Derek Holzer: You're right, doesn't work here either, using either open or -open flag, with explicit pathnames and all. D. Rich E wrote: I can't seem to open patches from the terminal in OS X

Re: [PD] running Pd-extended from terminal in OS X

2009-11-15 Thread Rich E
2009/11/15 IOhannes m zmölnig zmoel...@iem.at -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Max wrote: Doesn't work here (OS 10.6) neither with Pd-extended (0.41.4), but with PD vanilla 0.42-5 it does work. this is a known bug in pd-0.41 fixed in 0.42 the problem is the way Pd is

Re: [PD] compiling externals on snow leopard

2009-11-13 Thread Rich E
On Nov 11, 2009, at 8:21 PM, Rich E wrote: Got it compiled and it looks nice. The portaudio failed, same as Pd-Vanilla, but I guess you aren't worried about that because you are working on getting coreaudio support (which would be nice). Jack works, everything is sounds nice and stable. The only

Re: [PD] building flext: missing bits/atomicity.h

2009-11-11 Thread Rich E
:03 +0100 Rich E reakina...@gmail.com wrote: Hi list, I tried compiling flext today in OS X Snow Leopard and ran into the following problem (after turning off all cross-compilation support so it only compiled i386 - doesn't seem to like x86_64): In file included from source/lockfree

Re: [PD] compiling externals on snow leopard

2009-11-11 Thread Rich E
, but the build script still tries to build portaudio and fails. This is all with pd vanilla from Miller's website. I'm also trying to build the Pd extended sources, but I suppose I should start a new thread for the problem I hit there.. On Tue, Nov 10, 2009 at 3:29 AM, Rich E reakina...@gmail.com

Re: [PD] [GEM] OS X How to compile against SDK 10.5 in os x 10.6

2009-11-11 Thread Rich E
I ran into the same problem today, trying to build the Gem included with Pd-extended. I tried the above advice, but gcc doesn't seem to be getting the -isysroot command: ++ -c -g -O2 -fPIC -freg-struct-return -Os -falign-loops=32 -falign-functions=32 -falign-jumps=32 -funroll-loops -ffast-math

Re: [PD] compiling externals on snow leopard

2009-11-11 Thread Rich E
--disable-portaudio make .hc On Nov 11, 2009, at 6:08 PM, Rich E wrote: Oops, I accidentally just sent my last post to Hans. Please read this and the post below... I have been slowly figuring out the last problem, where gcc can't find my headers in /usr/include. It is because the configure

Re: [PD] compiling externals on snow leopard

2009-11-11 Thread Rich E
Oops, my fault. I had some residual CFLAGS from trying to get Gem to compile... onward :) On Thu, Nov 12, 2009 at 1:23 AM, Rich E reakina...@gmail.com wrote: On running a regular ./configure in the gui rewrite branch, I get the error: checking for C compiler default output file name

Re: [PD] compiling externals on snow leopard

2009-11-11 Thread Rich E
be found. I have only tried a few of the example patches so far. cheers, Rich On Thu, Nov 12, 2009 at 1:57 AM, Rich E reakina...@gmail.com wrote: Oops, my fault. I had some residual CFLAGS from trying to get Gem to compile... onward :) On Thu, Nov 12, 2009 at 1:23 AM, Rich E reakina...@gmail.com

[PD] building flext: missing bits/atomicity.h

2009-11-10 Thread Rich E
Hi list, I tried compiling flext today in OS X Snow Leopard and ran into the following problem (after turning off all cross-compilation support so it only compiled i386 - doesn't seem to like x86_64): In file included from source/lockfree/cas.hpp:28, from

[PD] compiling externals on snow leopard

2009-11-08 Thread Rich E
I've been trying to get my externals to compile in to use with Pd-extended... in OS X Snow Leopard. So far it hasn't been easy because Pd-extended is i386 and my externals are compiling as x86_64. All I can find on this is to force the build to i386 with the gcc flag '-arch i386', but the linker

  1   2   3   >