hello all,
i have a bit of a newbie question concerning the cyclone library. i can't quite seem to get pd to recognize it using a batch file. i'm running windows me and pd 36. i've checked the site to see if i downloaded the wrong stuff, but am incredibly confused. i'm not at all used to compiling code, and wouldn't even know where to begin. the folders all appear to be uncompiled, and some or most have a pd.linux extension. does this mean that the lib is only for linux? i'm confused. does anyone have .dll's already compiled for this somewhere?
thanks in advance. brandon.
somewhat confusingly, the cyclone-0.1-alpha41-all.tar.gz does not contain "all" you need :) the .dll files you need are in :
http://suita.chopin.edu.pl/~czaja/miXed/externs/cyclone-0.1-alpha41.zip
good luck,
-josh
brandon schakola wrote:
hello all,
i have a bit of a newbie question concerning the cyclone library. i can't quite seem to get pd to recognize it using a batch file. i'm running windows me and pd 36. i've checked the site to see if i downloaded the wrong stuff, but am incredibly confused. i'm not at all used to compiling code, and wouldn't even know where to begin. the folders all appear to be uncompiled, and some or most have a pd.linux extension. does this mean that the lib is only for linux? i'm confused. does anyone have .dll's already compiled for this somewhere?
thanks in advance. brandon.
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
Another option is to download a pre-made install like the one I have here:
Cyclone is already part of this one.
.hc
On Monday, May 19, 2003, at 15:01 America/New_York, Josh Steiner wrote:
somewhat confusingly, the cyclone-0.1-alpha41-all.tar.gz does not contain "all" you need :) the .dll files you need are in :
http://suita.chopin.edu.pl/~czaja/miXed/externs/cyclone-0.1-alpha41.zip
good luck,
-josh
brandon schakola wrote:
hello all,
i have a bit of a newbie question concerning the cyclone library. i can't quite seem to get pd to recognize it using a batch file. i'm running windows me and pd 36. i've checked the site to see if i downloaded the wrong stuff, but am incredibly confused. i'm not at all used to compiling code, and wouldn't even know where to begin.
the folders all appear to be uncompiled, and some or most have a pd.linux extension. does this mean that the lib is only for linux?
i'm confused. does anyone have .dll's already compiled for this somewhere? thanks in advance. brandon.
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
-- ____________________________________________________ independent u.s. drum'n'bass -- http://vitriolix.com
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
hello
i am unsuccessfully trying flashserver in macosX. i don't remember the site where i founded the binary file for mac.
when instantiating flashserver i'm always getting the following message :
/Users/josemanu/pd36/extra/flashserver/flashserver.pd_darwin: couldn't load flashserver 31337 256 ... couldn't create
has anybody been able to instantiate flashserver under macosX? is perhaps there a newer version than 0.2? or perhaps falshserver doesn't works under macosX?
however, i've seen that netserver and netreceive can open sockets that may be accessed by the flash frontend provided in the release of flashserver... i'm now able to send information from any flash document to a pd document.
it seems that netsent (also netreceive) is working... it recognizes that localhost has connected its port.right outlet is reporting "127.0.0.1" and left outlet is displaying data sent by the client frontend.
however, when using the send, broadcast and client methods, the onPData function (in the flash frontend, overriding the XML.onData event handler) don't seems to be receiving any data.
when clicking on the corresponding message boxes i'm getting this message :
netserver : sending data to client 1 on socket 12
anyway, any data is displayed in the frontend. i've traced it by trace(msg); and any data is displayed in the output window...
anybody has any ideas to send back data from netsend (or any other object) to any client frontends under macosX?
thank you
jose manuel
jose manuel berenguer schrieb:
when instantiating flashserver i'm always getting the following message :
/Users/josemanu/pd36/extra/flashserver/flashserver.pd_darwin: couldn't load flashserver 31337 256 ... couldn't create
I once compiled this version on Mac OS X 10.1.5. Are you using 10.2? Did you put your flashserver.pd_darwin in the right directory? Anyway, there is a newer version with some bug fixes. I have 10.2.6. here (only need to download the latest dev-tools from Apple) and will try to get it compiled.
onPData function (in the flash frontend, overriding the XML.onData event handler) don't seems to be receiving any data.
This is because Flash expects incoming data to be terminated with '/0' (i.e. null terminated). Pd just terminates with the semi. That's why I made flashserver as addition to netserver.
stay tuned, Olaf
Hello Olaf
thank you very much for your answer!
jose manuel berenguer schrieb:
when instantiating flashserver i'm always getting the following message :
/Users/josemanu/pd36/extra/flashserver/flashserver.pd_darwin: couldn't load flashserver 31337 256 ... couldn't create
I once compiled this version on Mac OS X 10.1.5. Are you using 10.2? Did you put your flashserver.pd_darwin in the right directory?
yes. I'm using 10.2.6 now.
about the directory, the path of flashserver was ...pd/extra/flashserver/flashserver.pd_darwin. after a while, i put it at ...pd/extra/flashserver.pd_darwin. this didn't change the errors...
Anyway, there is a newer version with some bug fixes. I have 10.2.6. here (only need to download the latest dev-tools from Apple) and will try to get it compiled.
this would be a great news!
best wishes
jose manuel
Okay, I just updated http://www.akustische-kunst.org/puredata/flash/ where you can now find flashserver with binary for OS X 10.2.6 and Pd 0.37 test4 (and with a binary for Win32).
While trying to get it compiled on OS X with Pd 0.37 I realised that some header files changed. This breaks a lot of my externals. A fix is to also include m_pd.h and s_stuff.h in case anyone is getting compile errors complaining about missing stuff in m_imp.h.... BTW, is it possible to detect at compile time which version of Pd is used?
Olaf
jose manuel berenguer schrieb:
Hello Olaf
thank you very much for your answer!
jose manuel berenguer schrieb:
when instantiating flashserver i'm always getting the following message :
/Users/josemanu/pd36/extra/flashserver/flashserver.pd_darwin: couldn't load flashserver 31337 256 ... couldn't create
I once compiled this version on Mac OS X 10.1.5. Are you using 10.2? Did you put your flashserver.pd_darwin in the right directory?
yes. I'm using 10.2.6 now.
about the directory, the path of flashserver was ...pd/extra/flashserver/flashserver.pd_darwin. after a while, i put it at ...pd/extra/flashserver.pd_darwin. this didn't change the errors...
Anyway, there is a newer version with some bug fixes. I have 10.2.6. here (only need to download the latest dev-tools from Apple) and will try to get it compiled.
this would be a great news!
best wishes
jose manuel
-- Jose Manuel Berenguer jmbeal@telefonica.net +34932857046 +34696538403 jmberenguer@cccb.org +34933064128 http://212.163.142.140/jmb/index.html http://sonoscop.cccb.org http://ocaos.cccb.org/caos Sonoscop/Orquesta del Caos. CCCB. Montalegre, 5. 08001 Barcelona. Spain
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
While trying to get it compiled on OS X with Pd 0.37 I realised that some
header
files changed. This breaks a lot of my externals. A fix is to also include
m_pd.h
and s_stuff.h in case anyone is getting compile errors complaining about
missing
stuff in m_imp.h....
Yes, this is also a (minor) problem for my externals, as m_imp.h now needs m_pd.h to be included beforehand.
BTW, is it possible to detect at compile time which version of Pd is used?
With version 0.37 there are those PD_VERSION_MAJOR and _MINOR defines.
best greetings, Thomas
thank you, it works very well now!
jose manuel
Okay, I just updated http://www.akustische-kunst.org/puredata/flash/ where you can now find flashserver with binary for OS X 10.2.6 and Pd 0.37 test4 (and with a binary for Win32).
While trying to get it compiled on OS X with Pd 0.37 I realised that some header files changed. This breaks a lot of my externals. A fix is to also include m_pd.h and s_stuff.h in case anyone is getting compile errors complaining about missing stuff in m_imp.h.... BTW, is it possible to detect at compile time which version of Pd is used?
Olaf