hi all
i'm currently working on a native asio support for pd ... since the
asiosdk from steinberg provides only c++ api functions and i had several
problems porting them to c, i'm curious if someone would object having
a c++ file in the pd sources ...
all compilers i know support both c and c++, so i wouldn't have a
problem with that ...
but i'm curious, what other developers think ...
cheers ... tim
--
mailto:TimBlechmann@gmx.de ICQ: 96771783
http://www.mokabar.tk
After one look at this planet any visitor from outer space
would say "I want to see the manager."
William S. Burroughs
hi all ...
i created a branch based on pd-0.38-test7 that hopefully has all
features of devel_0_37 locally on my machine ...
i'd like to check it in the cvs, as devel_0_38, although i want to make
sure that i'm not breaking anything on the cvs server ...
is something like
cvs import pd -b devel devel_0_38
correct?
cheers ... tim
--
mailto:TimBlechmann@gmx.de ICQ: 96771783
http://www.mokabar.tk
After one look at this planet any visitor from outer space
would say "I want to see the manager."
William S. Burroughs
hi all ...
i'm curious, if i shall add the code to set the font type to devel_0_38.
since the change from courier to tahoma was done by accident and courier
is back in devel_0_37 and 38, i'm curious, if someone would actually use
the feature to set the default font from the command line ...
if no one asks for that feature until tomorrow evening, i won't add it
...
cheers ... tim
--
mailto:TimBlechmann@gmx.de ICQ: 96771783
http://www.mokabar.tk
After one look at this planet any visitor from outer space
would say "I want to see the manager."
William S. Burroughs
Hi,
I've been trying to build (over the last few weeks) the various externals
pacakges from CVS and from the debian source to make .debs to give back to
Geunter, but this has been largely unsuccessful. Is it normal that there are
no packages in unstable like 'pd-flext-ext' and 'pd-osc' any more? I guess
this is because they weren't working properly? Sorry for the confusion.
I'm just trying to organise my thoughts here with regards to the
debian/pd situation so I can help rectify it.
Best,
Chris.
-------------------
chris(a)mccormick.cx
http://mccormick.cx
Can anyone explain what exactly this routine does?
When trying to write an object to display a bitmap or
jpeg on the PD canvas I came across this very useful
routine. I guess it’s a routine that interpreters
tcl/tk scripts? Can anyone explain what exactly is
does and what the parameters are? Cheers,
Rory.
___________________________________________________________ALL-NEW Yahoo! Messenger - all new features - even more fun! http://uk.messenger.yahoo.com
Ok, well putting the .app in applications did not change anything, its
still not finding any of my externals (even though I copied them into the
extra folder inside the pd.app. I don't get it.
Where do I put the PDRC when using the .app?
Thanks,
Ben
>
> hi,
>
> i think it is still necessary to put the pd.app directly in
> /applications. if you don't do so strange things happen.
>
> it is easiest to put your own externals into
> /applications/pd.app/contents/resources/extra as this folder is in the
> search path and all the externals that come with the package are in
> there. gem is also already there.
>
> why don't you want to use a .pdrc? it works, you know ...
>
> lg
> martin
>
>
> On Oct 23, 2004, at 20:10, B. Bogart wrote:
>
>> Hey all,
>>
>> I can't figure out how to get the PD.app to load my externals/libs.
>> I can add the paths easily enough but when I try and put anything into
>> the
>> "startup" setup pd can't find it. I've tried absolute paths, relative
>> paths, paths relative to pd paths... still can't get it to load my
>> stuff.
>> It can't seem to find my abstractions either so I guess -path options
>> are
>> not working either.
>>
>> for example my Gem is installed in:
>>
>> /Users/admin/work/libs/cgc/Gem.pd_darwin
>>
>> And console reports:
>>
>> tried /Users/admin/work/libs/cgc/Gem
>> .pd_darwin and failed
>> tried /Users/admin/work/libs/cgc/Gem
>> //Users/admin/work/libs/cgc/Gem
>> .pd_darwin and failed
>> /Users/admin/work/libs/cgc/Gem
>> : can't load library
>>
>> Where are these options stored? I could try editing the file manually
>> to
>> get things moving (maybe) Any other way to supply PD with commandline
>> args
>> with the pd.app (other than .pdrc)?.
>>
>> I start my old pd-0.37-1 with:
>>
>> ~/work/pd/bin/pd -rt -helppath ~/work/abstractions-tot-help -path
>> ~/work/extra -path ~/work/libs -path ~/work/abstractions-v -path
>> ~/work/abstractions-tot -nosound -lib cgc/Gem:pmpd:OSC:zexy:pool
>>
>> (Oh and in the console I get error: .printout.text: no such object)
>> which
>> is caused by Apple-C to copy the console buffer.
>>
>> Thanks
>> B.
>>
>>
>>
>>
>> _______________________________________________
>> PD-dev mailing list
>> PD-dev(a)iem.at
>> http://iem.at/cgi-bin/mailman/listinfo/pd-dev
>>
>>
> attacksyour.net/pi
>
>
hi miller ...
i'm curious about the new filer objects ... there is no denormal
protection ... are you sure, they are denormal safe?
also here is a patch to force the os not to overcommit memory (see man
mlockall):
--- s_inter.c 28 Oct 2004 09:09:39 -0000 1.1.1.2
+++ s_inter.c 29 Oct 2004 15:41:00 -0000
@@ -267,6 +267,13 @@
#endif
#ifdef _POSIX_MEMLOCK
+ /* tb: force memlock to physical memory { */
+ struct rlimit mlock_limit;
+ mlock_limit.rlim_cur=0;
+ mlock_limit.rlim_max=0;
+ setrlimit(RLIMIT_MEMLOCK,&mlock_limit);
+ /* } tb */
+
if (mlockall(MCL_FUTURE) != -1)
fprintf(stderr, "memory locking enabled.\n");
#endif
cheers ... tim
--
mailto:TimBlechmann@gmx.de ICQ: 96771783
http://www.mokabar.tk
After one look at this planet any visitor from outer space
would say "I want to see the manager."
William S. Burroughs
hi all..
i'm currently trying to compile pd for windows using the command line
compiler ... since the mingw makefile of devel_0_37 is broken (linking
fails: filename or extension to long) i'm fighting with the ms cl
compiler ...
pd builds fine, but requires a asiolib.dll / .lib ... how can i build
that?
cheers ... tim
--
mailto:TimBlechmann@gmx.de ICQ: 96771783
http://www.mokabar.tk
After one look at this planet any visitor from outer space
would say "I want to see the manager."
William S. Burroughs
well... i have been playing with the code today and managed to add
native alsa sequencer support to pure data.
output, input and configuration window are working nicely, as well as
most of the midi objects (theres still some midi messages i don't know
-touch and polytouch, and pitchbend passes strange values).
if there is any interest in adding this code to pd i can provide the
code, it's just an s_midi_alsa.c and some changes to the interface file.
(must still touch the make system and input command line options, but
would like to see what people think).
pablo
Buenas Frank Barknecht, el 27 de oct de 2004, a las 02:35 escribiste:
> Hallo,
> pablo hat gesagt: // pablo wrote:
>
> > i was wondering whether pd has support for the alsa sequencer or it just
> > admits connecting through the oss devices. i have been looking around but
> > found nothing, just a method to connect it through an alsa virtual device
> > to the sequencer.
>
> It's the only method: You need a snd-virmidi card. Actually Pd was the
> reason for me to write the Softsynth-Sequencer-Howto.
>
> Ciao
> --
> Frank Barknecht _ ______footils.org__
>
> _______________________________________________
> PD-list(a)iem.at mailing list
> UNSUBSCRIBE and account-management -> http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hallo!
> Yes, I think, this is probably bad. I'd vote for making this a message
> to the object, like [init 10(. The last one will win then. ;)
I don't know how you really mean this. Now there is the message [resize 10(,
where you can resize the array. Do you mean with [init 10( the same ?
> Maybe I'm spoiled by Python, but I think, Exceptions are quite useful.
Of course ...
LG
Georg
--
Geschenkt: 3 Monate GMX ProMail + 3 Ausgaben der TV Movie mit DVD
++++ Jetzt anmelden und testen http://www.gmx.net/de/go/mail ++++