Hi List,
This was posted to the Maxlist.
The Lobjects are good for list handling,fuzzy logic...
Falk
Anfang der weitergeleiteten E-Mail:
Von: Peter Elsea elsea@ucsc.edu Datum: 12. August 2006 01:18:41 MESZ An: maxmsp@cycling74.com Betreff: [maxmsp] Lobjects Source Antwort an: maxmsp@cycling74.com
I have jsut posted the source code for most of the Lobjects to ftp://arts.ucsc.edu/pub/ems/lobjects
This is pretty rough code, but it may be of use to those who are learning Java. You can look at an Lobject that has functions similar to what you want to do and see how I did it. Since everything in the land of C externals is pointer directed (x->stuff) you can't just cut and paste, but you can figure out what is going on.
Also, due to a hard disk crash and a bad zip disk, I have lost all of the windows project files. I don't have time to rebuild them, but if any of you windows experts want to port some of the new objects, you have my blessing. ditto for PD. Just let me know what you have done.
I'll be on vacation for a month, so email me in September.
PS. I got a notification that my announcement of the universal binaries is waiting for a moderator's approval (their server doesn't remember that I am on the list, even though I can log on here.) You can find the new versions at the same URL as above. pqe -- Peter Elsea Director, Electronic Music Studios University of California, Santa Cruz http://arts.ucsc.edu/EMS/Music/index.html elsea@ucsc.edu get the Lobjects and Maxtutors at ftp://arts.ucsc.edu/pub/ems/ _______________________________________________ maxmsp mailing list maxmsp@cycling74.com http://www.cycling74.com/mailman/listinfo/maxmsp
Hallo, Falk Grieffenhagen.de hat gesagt: // Falk Grieffenhagen.de wrote:
This was posted to the Maxlist.
The Lobjects are good for list handling,fuzzy logic...
Interesting. I downloaded the stuff from ftp://arts.ucsc.edu/pub/ems/lobjects/source/ but it is in some funky format: Looking inside it with "cat" it seems to contain C source code, but it's wrapped in some binary junk, probably some poisonous Apple juice. Does anybody know, how this can be made into proper textfiles on Linux?
Frank Barknecht _ ______footils.org_ __goto10.org__
On Sat, 12 Aug 2006, Frank Barknecht wrote:
Interesting. I downloaded the stuff from ftp://arts.ucsc.edu/pub/ems/lobjects/source/ but it is in some funky format: Looking inside it with "cat" it seems to contain C source code, but it's wrapped in some binary junk, probably some poisonous Apple juice. Does anybody know, how this can be made into proper textfiles on Linux?
Download all using: wget -r ftp://arts.ucsc.edu/pub/ems/lobjects/source/
Then run the following Ruby program that I just wrote:
Dir["*.bin"].each {|fn| data = File.read(fn) n=data.index("\0",128) File.open(fn.gsub(/.bin$/,""),"w") {|f| f.write data[128...n] } }
Or download the result from http://artengine.ca/matju/Lobjects-src.tar.gz
BTW: I could not find a decoder for it, nor a name for the format, and people on the #macosx channel didn't know what it is.
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju | Freelance Digital Arts Engineer, Montréal QC Canada
Mathieu Bouchard wrote:
BTW: I could not find a decoder for it, nor a name for the format, and people on the #macosx channel didn't know what it is.
~> file Lxor.c.bin
tells me that is a TTcompressed file (unfortunately only 1 of n linux machines has been able to give me this information)
mfga.sdr IOhannes
On Mon, 14 Aug 2006, IOhannes m zmoelnig wrote:
Mathieu Bouchard wrote:
BTW: I could not find a decoder for it, nor a name for the format, and people on the #macosx channel didn't know what it is.
~> file Lxor.c.bin tells me that is a TTcompressed file (unfortunately only 1 of n linux machines has been able to give me this information)
That might be unfortunate, but I was able to decode the files correctly, so all's well in the end, right?
http://artengine.ca/matju/Lobjects-src.tar.gz
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju | Freelance Digital Arts Engineer, Montréal QC Canada