sdl4fp-users Mailing List for SDL4Freepascal (Page 4)
Brought to you by:
trixx
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(30) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(6) |
Aug
(26) |
Sep
(3) |
Oct
(1) |
Nov
|
Dec
(3) |
2006 |
Jan
(8) |
Feb
(15) |
Mar
(4) |
Apr
(21) |
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2007 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
From: Daniel F M. <dmo...@ar...> - 2005-08-12 05:21:49
|
On Mon, 2005-08-08 at 16:00, Matthias wrote: > Anyhow I have problems using the unit. Program stops with messege "exited > with exitcode = 309". Any solutions known to avoid this? > Which freepascal version are you using? which sdl/sdl_ttf versions? are you running as a normal user or administrator? With that info, I'll try to reproduce this on an XP box Thanks, Daniel -- Must it be assumed that because we are engineers beauty is not our concern, and that while we make our constructions robust and durable we do not also strive to make them elegant? Is it not true that the genuine conditions of strength always comply with the secret conditions of harmony? -- Gustave Eiffel, 1887 |
From: Daniel F M. <dmo...@gr...> - 2005-08-12 05:18:17
|
On Fri, 2005-08-05 at 12:36, Christian Speckner wrote: > Hmmm..., well, there is the graphics demo from amoeba (in fact, this curr= ently=20 > is the only executable in the project), but it propably wouldn't be a goo= d=20 > demo for SDL_ttf since it heavily relies on a couple of units. Right... besides, the demos included are short, use only a few functions and are heavily commented. The idea is to introduce only one concept in each demo, so they can be read sequentially as a tutorial. > Still, if you=20 > want, you can include this thing (it uses many other aspects of SDL_video= as=20 > well)... to compile, it needs all source files in the amoeba repository. > I still have a couple of exams in August, but I certainly can write some = small=20 > demo opening a .ttf and displaying some text after they are finished :) I'll probably work on that this week. I have some comments about your unit I'd like to make: In several places of SDL4FP, I've substituted pointer arguments by var arguments; usually in the cases where the argument is used to reecive a return value and is not expected to be used with 'nil' ('NULL') value. For example, check the last three arguments of SDL_GetRGB: they are declared as "var r,g,b: Uint8" instead of "r, g, b: ^Uint8". For consistency, it would be nice to modify SDL_ttf in that way (for example, the GlyphMetrics routine would be a good candidate for that). But that will break programs currently using your unit; and besides would need mantaining two separate copies of SDL_ttf.pp . So, my question is... how widely is your unit used? If you are just using it for amoeba, would it be to hard to adapt to this kind of changes? It would be nice to unify this, and change it early (when there are just a few pieces of code using these libraries) Cheers, Daniel --=20 Must it be assumed that because we are engineers beauty is not our concern, and that while we make our constructions robust and durable we do not also strive to make them elegant? Is it not true that the genuine conditions of strength always comply with the secret conditions of harmony? -- Gustave Eiffel, 1887 |
From: Christian S. <csp...@fr...> - 2005-08-11 22:53:54
|
Hmm, dunno, I don't have acces to a windows box, so I can't test this. Just= a=20 guess: try to disable all optimizations in fpc; this fixed some seemingly=20 paradox glitches for me (on a ppc cpu, though). Also (more stupid idea): ar= e=20 the neccessary .dll files available to the program and (if they are) are th= ey=20 up to date? > I am working with Windows XP and have Athlon XP 2600+. If I don't add unit > SDL_TTF to uses clause all is working fine without any errors. > Unfortunately I have not much time the next few weeks. But then I will > test out if I can fix the problem if nobody else knows any solutions to > this. > > Greets, > Matthias > > > Hmmm, strange, I had no problems of this kind on two systems. What OS a= nd > > architecture are you working with? > > > >> Well, it occurs evertime I try to use the unit: > >> > >> (* CODE START *) > >> > >> PROGRAM test; > >> USES SDL, SDL_TTF; > >> > >> BEGIN > >> END: > >> > >> (* CODE END *) > >> > >> > Do you have a code example of this? > >> > > >> >> Anyhow I have problems using the unit. Program stops with messege > >> >> "exited > >> >> with exitcode =3D 309". Any solutions known to avoid this? > >> >> > >> >> Greets, > >> >> Matthias > >> >> > >> >> Am 05.08.2005, 17:36 Uhr, schrieb Christian Speckner > >> >> > >> >> <csp...@fr...>: > >> >> > Hmmm..., well, there is the graphics demo from amoeba (in fact, > >> > >> this > >> > >> >> > currently > >> >> > is the only executable in the project), but it propably wouldn't > >> > >> be a > >> > >> >> > good > >> >> > demo for SDL_ttf since it heavily relies on a couple of units. > >> > >> Still, > >> > >> >> if > >> >> > >> >> > you > >> >> > want, you can include this thing (it uses many other aspects of > >> >> > SDL_video as > >> >> > well)... to compile, it needs all source files in the amoeba > >> >> > >> >> repository. > >> >> > >> >> > I still have a couple of exams in August, but I certainly can wri= te > >> >> > >> >> some > >> >> > >> >> > small > >> >> > demo opening a .ttf and displaying some text after they are > >> > >> finished > >> > >> >> :) > >> >> : > >> >> > Greetings > >> >> > -Christian Speckner > >> >> > > >> >> > Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas G=F3mez: > >> >> >> El Lun 01 Ago 2005 04:06, Christian Speckner escribi=F3: > >> >> >> > Hi there! > >> >> >> > > >> >> >> > I have converted the SDL_ttf header, and although I haven't > >> > >> tested > >> > >> >> it > >> >> > >> >> >> > extensively, it seems to work fine. If anyone is interested: it > >> > >> is > >> > >> >> >> part > >> >> >> > >> >> >> > of the amoeba CVS (sourceforge project amoebagame) and resides > >> > >> in > >> > >> >> the > >> >> > >> >> >> > "headers" subdir. > >> >> >> > Daniel, if you want, feel free to add this to SDL4fp... :) > >> >> >> > >> >> >> Thanks, i have added it to the "extras" module in the sdl4fp > >> >> > >> >> project. By > >> >> > >> >> >> the way, wouldn't you happen to have some little demos that we > >> > >> could > >> > >> >> >> include? > >> >> >> > >> >> >> > Greetings > >> >> >> > -Christian Speckner > >> >> >> > > >> >> >> > > >> >> >> > ------------------------------------------------------- > >> >> >> > SF.Net email is sponsored by: Discover Easy Linux Migration > >> >> > >> >> Strategies > >> >> > >> >> >> > from IBM. Find simple to follow Roadmaps, straightforward > >> > >> articles, > >> > >> >> >> > informative Webcasts and more! Get everything you need to get > >> > >> up to > >> > >> >> >> > speed, fast. > >> >> > >> >> http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op=3Dclick > >> >> > >> >> >> > _______________________________________________ > >> >> >> > Sdl4fp-users mailing list > >> >> >> > Sdl...@li... > >> >> >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> >> >> > >> >> >> ------------------------------------------------------- > >> >> >> SF.Net email is Sponsored by the Better Software Conference & EX= PO > >> >> >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> >> >> Practices > >> >> >> Agile & Plan-Driven Development * Managing Projects & Teams * > >> >> > >> >> Testing & > >> >> > >> >> >> QA > >> >> >> Security * Process Improvement & Measurement * > >> >> >> http://www.sqe.com/bsce5sf > >> >> >> _______________________________________________ > >> >> >> Sdl4fp-users mailing list > >> >> >> Sdl...@li... > >> >> >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> >> > > >> >> > ------------------------------------------------------- > >> >> > SF.Net email is Sponsored by the Better Software Conference & EXPO > >> >> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> >> > Practices > >> >> > Agile & Plan-Driven Development * Managing Projects & Teams * > >> > >> Testing > >> > >> >> & > >> >> > >> >> > QA > >> >> > Security * Process Improvement & Measurement * > >> >> > >> >> http://www.sqe.com/bsce5sf > >> >> > >> >> > _______________________________________________ > >> >> > Sdl4fp-users mailing list > >> >> > Sdl...@li... > >> >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> >> > >> >> ------------------------------------------------------- > >> >> SF.Net email is Sponsored by the Better Software Conference & EXPO > >> >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> >> Practices > >> >> Agile & Plan-Driven Development * Managing Projects & Teams * > >> > >> Testing & > >> > >> >> QA > >> >> Security * Process Improvement & Measurement * > >> >> http://www.sqe.com/bsce5sf > >> >> _______________________________________________ > >> >> Sdl4fp-users mailing list > >> >> Sdl...@li... > >> >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> > > >> > ------------------------------------------------------- > >> > SF.Net email is Sponsored by the Better Software Conference & EXPO > >> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> > Practices > >> > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > >> > >> & > >> > >> > QA > >> > Security * Process Improvement & Measurement * > >> > >> http://www.sqe.com/bsce5sf > >> > >> > _______________________________________________ > >> > Sdl4fp-users mailing list > >> > Sdl...@li... > >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > > > ------------------------------------------------------- > > SF.Net email is Sponsored by the Better Software Conference & EXPO > > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > > Practices > > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > > QA > > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5= sf > > _______________________________________________ > > Sdl4fp-users mailing list > > Sdl...@li... > > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users |
From: Matthias <ma...@gm...> - 2005-08-11 17:42:42
|
I am working with Windows XP and have Athlon XP 2600+. If I don't add unit SDL_TTF to uses clause all is working fine without any errors. Unfortunately I have not much time the next few weeks. But then I will test out if I can fix the problem if nobody else knows any solutions to this. Greets, Matthias > Hmmm, strange, I had no problems of this kind on two systems. What OS and > architecture are you working with? > >> Well, it occurs evertime I try to use the unit: >> >> (* CODE START *) >> >> PROGRAM test; >> USES SDL, SDL_TTF; >> >> BEGIN >> END: >> >> (* CODE END *) >> >> > Do you have a code example of this? >> > >> >> Anyhow I have problems using the unit. Program stops with messege >> >> "exited >> >> with exitcode = 309". Any solutions known to avoid this? >> >> >> >> Greets, >> >> Matthias >> >> >> >> Am 05.08.2005, 17:36 Uhr, schrieb Christian Speckner >> >> >> >> <csp...@fr...>: >> >> > Hmmm..., well, there is the graphics demo from amoeba (in fact, >> this >> >> > currently >> >> > is the only executable in the project), but it propably wouldn't >> be a >> >> > good >> >> > demo for SDL_ttf since it heavily relies on a couple of units. >> Still, >> >> >> >> if >> >> >> >> > you >> >> > want, you can include this thing (it uses many other aspects of >> >> > SDL_video as >> >> > well)... to compile, it needs all source files in the amoeba >> >> >> >> repository. >> >> >> >> > I still have a couple of exams in August, but I certainly can write >> >> >> >> some >> >> >> >> > small >> >> > demo opening a .ttf and displaying some text after they are >> finished >> >> > >> >> :) >> >> : >> >> > Greetings >> >> > -Christian Speckner >> >> > >> >> > Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas Gómez: >> >> >> El Lun 01 Ago 2005 04:06, Christian Speckner escribió: >> >> >> > Hi there! >> >> >> > >> >> >> > I have converted the SDL_ttf header, and although I haven't >> tested >> >> >> >> it >> >> >> >> >> > extensively, it seems to work fine. If anyone is interested: it >> is >> >> >> >> >> >> part >> >> >> >> >> >> > of the amoeba CVS (sourceforge project amoebagame) and resides >> in >> >> >> >> the >> >> >> >> >> > "headers" subdir. >> >> >> > Daniel, if you want, feel free to add this to SDL4fp... :) >> >> >> >> >> >> Thanks, i have added it to the "extras" module in the sdl4fp >> >> >> >> project. By >> >> >> >> >> the way, wouldn't you happen to have some little demos that we >> could >> >> >> include? >> >> >> >> >> >> > Greetings >> >> >> > -Christian Speckner >> >> >> > >> >> >> > >> >> >> > ------------------------------------------------------- >> >> >> > SF.Net email is sponsored by: Discover Easy Linux Migration >> >> >> >> Strategies >> >> >> >> >> > from IBM. Find simple to follow Roadmaps, straightforward >> articles, >> >> >> > informative Webcasts and more! Get everything you need to get >> up to >> >> >> > speed, fast. >> >> >> >> http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click >> >> >> >> >> > _______________________________________________ >> >> >> > Sdl4fp-users mailing list >> >> >> > Sdl...@li... >> >> >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> >> >> >> >> >> ------------------------------------------------------- >> >> >> SF.Net email is Sponsored by the Better Software Conference & EXPO >> >> >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> >> >> Practices >> >> >> Agile & Plan-Driven Development * Managing Projects & Teams * >> >> >> >> Testing & >> >> >> >> >> QA >> >> >> Security * Process Improvement & Measurement * >> >> >> http://www.sqe.com/bsce5sf >> >> >> _______________________________________________ >> >> >> Sdl4fp-users mailing list >> >> >> Sdl...@li... >> >> >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> >> > >> >> > ------------------------------------------------------- >> >> > SF.Net email is Sponsored by the Better Software Conference & EXPO >> >> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> >> > Practices >> >> > Agile & Plan-Driven Development * Managing Projects & Teams * >> Testing >> >> >> >> & >> >> >> >> > QA >> >> > Security * Process Improvement & Measurement * >> >> >> >> http://www.sqe.com/bsce5sf >> >> >> >> > _______________________________________________ >> >> > Sdl4fp-users mailing list >> >> > Sdl...@li... >> >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> >> >> >> ------------------------------------------------------- >> >> SF.Net email is Sponsored by the Better Software Conference & EXPO >> >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> >> Practices >> >> Agile & Plan-Driven Development * Managing Projects & Teams * >> Testing & >> >> QA >> >> Security * Process Improvement & Measurement * >> >> http://www.sqe.com/bsce5sf >> >> _______________________________________________ >> >> Sdl4fp-users mailing list >> >> Sdl...@li... >> >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> > >> > ------------------------------------------------------- >> > SF.Net email is Sponsored by the Better Software Conference & EXPO >> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> > Practices >> > Agile & Plan-Driven Development * Managing Projects & Teams * Testing >> & >> > QA >> > Security * Process Improvement & Measurement * >> http://www.sqe.com/bsce5sf >> > _______________________________________________ >> > Sdl4fp-users mailing list >> > Sdl...@li... >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ |
From: Elio C. <el...@mi...> - 2005-08-11 04:39:34
|
This works in my system too. The error is extrange... El Mi=E9 10 Ago 2005 17:16, Christian Speckner escribi=F3: > Hmmm, strange, I had no problems of this kind on two systems. What OS and > architecture are you working with? > > > Well, it occurs evertime I try to use the unit: > > > > (* CODE START *) > > > > PROGRAM test; > > USES SDL, SDL_TTF; > > > > BEGIN > > END: > > > > (* CODE END *) > > |
From: Christian S. <csp...@fr...> - 2005-08-10 22:19:14
|
Hmmm, strange, I had no problems of this kind on two systems. What OS and=20 architecture are you working with? > Well, it occurs evertime I try to use the unit: > > (* CODE START *) > > PROGRAM test; > USES SDL, SDL_TTF; > > BEGIN > END: > > (* CODE END *) > > > Do you have a code example of this? > > > >> Anyhow I have problems using the unit. Program stops with messege > >> "exited > >> with exitcode =3D 309". Any solutions known to avoid this? > >> > >> Greets, > >> Matthias > >> > >> Am 05.08.2005, 17:36 Uhr, schrieb Christian Speckner > >> > >> <csp...@fr...>: > >> > Hmmm..., well, there is the graphics demo from amoeba (in fact, this > >> > currently > >> > is the only executable in the project), but it propably wouldn't be a > >> > good > >> > demo for SDL_ttf since it heavily relies on a couple of units. Still, > >> > >> if > >> > >> > you > >> > want, you can include this thing (it uses many other aspects of > >> > SDL_video as > >> > well)... to compile, it needs all source files in the amoeba > >> > >> repository. > >> > >> > I still have a couple of exams in August, but I certainly can write > >> > >> some > >> > >> > small > >> > demo opening a .ttf and displaying some text after they are finished > >> > > >> :) > >> : > >> > Greetings > >> > -Christian Speckner > >> > > >> > Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas G=F3mez: > >> >> El Lun 01 Ago 2005 04:06, Christian Speckner escribi=F3: > >> >> > Hi there! > >> >> > > >> >> > I have converted the SDL_ttf header, and although I haven't tested > >> > >> it > >> > >> >> > extensively, it seems to work fine. If anyone is interested: it is > >> >> > >> >> part > >> >> > >> >> > of the amoeba CVS (sourceforge project amoebagame) and resides in > >> > >> the > >> > >> >> > "headers" subdir. > >> >> > Daniel, if you want, feel free to add this to SDL4fp... :) > >> >> > >> >> Thanks, i have added it to the "extras" module in the sdl4fp > >> > >> project. By > >> > >> >> the way, wouldn't you happen to have some little demos that we could > >> >> include? > >> >> > >> >> > Greetings > >> >> > -Christian Speckner > >> >> > > >> >> > > >> >> > ------------------------------------------------------- > >> >> > SF.Net email is sponsored by: Discover Easy Linux Migration > >> > >> Strategies > >> > >> >> > from IBM. Find simple to follow Roadmaps, straightforward article= s, > >> >> > informative Webcasts and more! Get everything you need to get up = to > >> >> > speed, fast. > >> > >> http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op=3Dclick > >> > >> >> > _______________________________________________ > >> >> > Sdl4fp-users mailing list > >> >> > Sdl...@li... > >> >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> >> > >> >> ------------------------------------------------------- > >> >> SF.Net email is Sponsored by the Better Software Conference & EXPO > >> >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> >> Practices > >> >> Agile & Plan-Driven Development * Managing Projects & Teams * > >> > >> Testing & > >> > >> >> QA > >> >> Security * Process Improvement & Measurement * > >> >> http://www.sqe.com/bsce5sf > >> >> _______________________________________________ > >> >> Sdl4fp-users mailing list > >> >> Sdl...@li... > >> >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> > > >> > ------------------------------------------------------- > >> > SF.Net email is Sponsored by the Better Software Conference & EXPO > >> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> > Practices > >> > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > >> > >> & > >> > >> > QA > >> > Security * Process Improvement & Measurement * > >> > >> http://www.sqe.com/bsce5sf > >> > >> > _______________________________________________ > >> > Sdl4fp-users mailing list > >> > Sdl...@li... > >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> > >> ------------------------------------------------------- > >> SF.Net email is Sponsored by the Better Software Conference & EXPO > >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> Practices > >> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > >> QA > >> Security * Process Improvement & Measurement * > >> http://www.sqe.com/bsce5sf > >> _______________________________________________ > >> Sdl4fp-users mailing list > >> Sdl...@li... > >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > > > ------------------------------------------------------- > > SF.Net email is Sponsored by the Better Software Conference & EXPO > > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > > Practices > > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > > QA > > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5= sf > > _______________________________________________ > > Sdl4fp-users mailing list > > Sdl...@li... > > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users |
From: Matthias <ma...@gm...> - 2005-08-10 16:02:54
|
Well, it occurs evertime I try to use the unit: (* CODE START *) PROGRAM test; USES SDL, SDL_TTF; BEGIN END: (* CODE END *) > Do you have a code example of this? > >> Anyhow I have problems using the unit. Program stops with messege >> "exited >> with exitcode = 309". Any solutions known to avoid this? >> >> Greets, >> Matthias >> >> Am 05.08.2005, 17:36 Uhr, schrieb Christian Speckner >> >> <csp...@fr...>: >> > Hmmm..., well, there is the graphics demo from amoeba (in fact, this >> > currently >> > is the only executable in the project), but it propably wouldn't be a >> > good >> > demo for SDL_ttf since it heavily relies on a couple of units. Still, >> if >> > you >> > want, you can include this thing (it uses many other aspects of >> > SDL_video as >> > well)... to compile, it needs all source files in the amoeba >> repository. >> > I still have a couple of exams in August, but I certainly can write >> some >> > small >> > demo opening a .ttf and displaying some text after they are finished >> :) >> > >> > Greetings >> > -Christian Speckner >> > >> > Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas Gómez: >> >> El Lun 01 Ago 2005 04:06, Christian Speckner escribió: >> >> > Hi there! >> >> > >> >> > I have converted the SDL_ttf header, and although I haven't tested >> it >> >> > extensively, it seems to work fine. If anyone is interested: it is >> >> >> >> part >> >> >> >> > of the amoeba CVS (sourceforge project amoebagame) and resides in >> the >> >> > "headers" subdir. >> >> > Daniel, if you want, feel free to add this to SDL4fp... :) >> >> >> >> Thanks, i have added it to the "extras" module in the sdl4fp >> project. By >> >> the way, wouldn't you happen to have some little demos that we could >> >> include? >> >> >> >> > Greetings >> >> > -Christian Speckner >> >> > >> >> > >> >> > ------------------------------------------------------- >> >> > SF.Net email is sponsored by: Discover Easy Linux Migration >> Strategies >> >> > from IBM. Find simple to follow Roadmaps, straightforward articles, >> >> > informative Webcasts and more! Get everything you need to get up to >> >> > speed, fast. >> http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click >> >> > _______________________________________________ >> >> > Sdl4fp-users mailing list >> >> > Sdl...@li... >> >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> >> >> >> ------------------------------------------------------- >> >> SF.Net email is Sponsored by the Better Software Conference & EXPO >> >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> >> Practices >> >> Agile & Plan-Driven Development * Managing Projects & Teams * >> Testing & >> >> QA >> >> Security * Process Improvement & Measurement * >> >> http://www.sqe.com/bsce5sf >> >> _______________________________________________ >> >> Sdl4fp-users mailing list >> >> Sdl...@li... >> >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> > >> > ------------------------------------------------------- >> > SF.Net email is Sponsored by the Better Software Conference & EXPO >> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> > Practices >> > Agile & Plan-Driven Development * Managing Projects & Teams * Testing >> & >> > QA >> > Security * Process Improvement & Measurement * >> http://www.sqe.com/bsce5sf >> > _______________________________________________ >> > Sdl4fp-users mailing list >> > Sdl...@li... >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> >> ------------------------------------------------------- >> SF.Net email is Sponsored by the Better Software Conference & EXPO >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> Practices >> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & >> QA >> Security * Process Improvement & Measurement * >> http://www.sqe.com/bsce5sf >> _______________________________________________ >> Sdl4fp-users mailing list >> Sdl...@li... >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ |
From: Christian S. <csp...@fr...> - 2005-08-10 01:32:04
|
Do you have a code example of this? > Anyhow I have problems using the unit. Program stops with messege "exited > with exitcode =3D 309". Any solutions known to avoid this? > > Greets, > Matthias > > Am 05.08.2005, 17:36 Uhr, schrieb Christian Speckner > > <csp...@fr...>: > > Hmmm..., well, there is the graphics demo from amoeba (in fact, this > > currently > > is the only executable in the project), but it propably wouldn't be a > > good > > demo for SDL_ttf since it heavily relies on a couple of units. Still, if > > you > > want, you can include this thing (it uses many other aspects of > > SDL_video as > > well)... to compile, it needs all source files in the amoeba repository. > > I still have a couple of exams in August, but I certainly can write some > > small > > demo opening a .ttf and displaying some text after they are finished :) > > > > Greetings > > -Christian Speckner > > > > Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas G=F3mez: > >> El Lun 01 Ago 2005 04:06, Christian Speckner escribi=F3: > >> > Hi there! > >> > > >> > I have converted the SDL_ttf header, and although I haven't tested it > >> > extensively, it seems to work fine. If anyone is interested: it is > >> > >> part > >> > >> > of the amoeba CVS (sourceforge project amoebagame) and resides in the > >> > "headers" subdir. > >> > Daniel, if you want, feel free to add this to SDL4fp... :) > >> > >> Thanks, i have added it to the "extras" module in the sdl4fp project. = By > >> the way, wouldn't you happen to have some little demos that we could > >> include? > >> > >> > Greetings > >> > -Christian Speckner > >> > > >> > > >> > ------------------------------------------------------- > >> > SF.Net email is sponsored by: Discover Easy Linux Migration Strategi= es > >> > from IBM. Find simple to follow Roadmaps, straightforward articles, > >> > informative Webcasts and more! Get everything you need to get up to > >> > speed, fast. http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op= =3Dclick > >> > _______________________________________________ > >> > Sdl4fp-users mailing list > >> > Sdl...@li... > >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > >> > >> ------------------------------------------------------- > >> SF.Net email is Sponsored by the Better Software Conference & EXPO > >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle > >> Practices > >> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > >> QA > >> Security * Process Improvement & Measurement * > >> http://www.sqe.com/bsce5sf > >> _______________________________________________ > >> Sdl4fp-users mailing list > >> Sdl...@li... > >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > > > ------------------------------------------------------- > > SF.Net email is Sponsored by the Better Software Conference & EXPO > > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > > Practices > > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > > QA > > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5= sf > > _______________________________________________ > > Sdl4fp-users mailing list > > Sdl...@li... > > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practic= es > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users |
From: Matthias <ma...@gm...> - 2005-08-09 23:27:55
|
Anyhow I have problems using the unit. Program stops with messege "exited with exitcode = 309". Any solutions known to avoid this? Greets, Matthias Am 05.08.2005, 17:36 Uhr, schrieb Christian Speckner <csp...@fr...>: > Hmmm..., well, there is the graphics demo from amoeba (in fact, this > currently > is the only executable in the project), but it propably wouldn't be a > good > demo for SDL_ttf since it heavily relies on a couple of units. Still, if > you > want, you can include this thing (it uses many other aspects of > SDL_video as > well)... to compile, it needs all source files in the amoeba repository. > I still have a couple of exams in August, but I certainly can write some > small > demo opening a .ttf and displaying some text after they are finished :) > > Greetings > -Christian Speckner > > Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas Gómez: >> El Lun 01 Ago 2005 04:06, Christian Speckner escribió: >> > Hi there! >> > >> > I have converted the SDL_ttf header, and although I haven't tested it >> > extensively, it seems to work fine. If anyone is interested: it is >> part >> > of the amoeba CVS (sourceforge project amoebagame) and resides in the >> > "headers" subdir. >> > Daniel, if you want, feel free to add this to SDL4fp... :) >> >> Thanks, i have added it to the "extras" module in the sdl4fp project. By >> the way, wouldn't you happen to have some little demos that we could >> include? >> >> > Greetings >> > -Christian Speckner >> > >> > >> > ------------------------------------------------------- >> > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies >> > from IBM. Find simple to follow Roadmaps, straightforward articles, >> > informative Webcasts and more! Get everything you need to get up to >> > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click >> > _______________________________________________ >> > Sdl4fp-users mailing list >> > Sdl...@li... >> > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users >> >> ------------------------------------------------------- >> SF.Net email is Sponsored by the Better Software Conference & EXPO >> September 19-22, 2005 * San Francisco, CA * Development Lifecycle >> Practices >> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & >> QA >> Security * Process Improvement & Measurement * >> http://www.sqe.com/bsce5sf >> _______________________________________________ >> Sdl4fp-users mailing list >> Sdl...@li... >> https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > |
From: Matthias <ma...@gm...> - 2005-08-07 12:12:50
|
Hi! I will test out SDL_ttf soon, if I have enough time. Furthermore I will then present a tutorial on my site of course. PS.: This is my first time using a mailing list. So I hope this is the way to reply. If this doesn't replies to the topic but creates a new topic entry, please tell me anybody how to reply to a topic. Doesn't found any instructions to this topic :(. Greets all, Matthias Am 05.08.2005, 06:50 Uhr, schrieb Elio Cuevas Gómez <el...@mi...>: > Hello all! > > I'm now a developer of SDL4FP, and my task is to reviveit and keep going > with > the development. As Daniel said, i was working in creating fpc packages > for > the libraries. These are ready and are now in CVS. Also in CVS are > translation to SDL_error and SDL_image and SDL_ttf (in module "extras"). > All these changes will be available in the next release of the libs > (yes, i > promise there will be a release soon) so if you have some sugestions to > improve the libs we would love to hear them. > > -- Elio > > El Mié 03 Ago 2005 16:49, Daniel F Moisset escribió: >> On Mon, 2005-08-01 at 06:06, Christian Speckner wrote: >> > Hi there! >> > >> > I have converted the SDL_ttf header, and although I haven't tested it >> > extensively, it seems to work fine. If anyone is interested: it is >> part >> > of the amoeba CVS (sourceforge project amoebagame) and resides in the >> > "headers" subdir. >> > Daniel, if you want, feel free to add this to SDL4fp... :) >> >> Thanks, >> Elio is adding his port of SDL_image at the time and working on writing >> fpcpackages. Possibly after that we can try out including your library. >> >> Greetings, >> D. > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & > QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ |
From: Christian S. <csp...@fr...> - 2005-08-05 15:42:19
|
Hmmm..., well, there is the graphics demo from amoeba (in fact, this curren= tly=20 is the only executable in the project), but it propably wouldn't be a good= =20 demo for SDL_ttf since it heavily relies on a couple of units. Still, if yo= u=20 want, you can include this thing (it uses many other aspects of SDL_video a= s=20 well)... to compile, it needs all source files in the amoeba repository. I still have a couple of exams in August, but I certainly can write some sm= all=20 demo opening a .ttf and displaying some text after they are finished :) Greetings -Christian Speckner Am Freitag, 5. August 2005 06:40 schrieb Elio Cuevas G=F3mez: > El Lun 01 Ago 2005 04:06, Christian Speckner escribi=F3: > > Hi there! > > > > I have converted the SDL_ttf header, and although I haven't tested it > > extensively, it seems to work fine. If anyone is interested: it is part > > of the amoeba CVS (sourceforge project amoebagame) and resides in the > > "headers" subdir. > > Daniel, if you want, feel free to add this to SDL4fp... :) > > Thanks, i have added it to the "extras" module in the sdl4fp project. By > the way, wouldn't you happen to have some little demos that we could > include? > > > Greetings > > -Christian Speckner > > > > > > ------------------------------------------------------- > > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > > from IBM. Find simple to follow Roadmaps, straightforward articles, > > informative Webcasts and more! Get everything you need to get up to > > speed, fast. http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op=3Dcl= ick > > _______________________________________________ > > Sdl4fp-users mailing list > > Sdl...@li... > > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practic= es > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users |
From: Elio C. <el...@mi...> - 2005-08-05 04:45:16
|
Hello all! I'm now a developer of SDL4FP, and my task is to reviveit and keep going wi= th=20 the development. As Daniel said, i was working in creating fpc packages for= =20 the libraries. These are ready and are now in CVS. Also in CVS are=20 translation to SDL_error and SDL_image and SDL_ttf (in module "extras"). All these changes will be available in the next release of the libs (yes, i= =20 promise there will be a release soon) so if you have some sugestions to=20 improve the libs we would love to hear them. =2D- Elio El Mi=E9 03 Ago 2005 16:49, Daniel F Moisset escribi=F3: > On Mon, 2005-08-01 at 06:06, Christian Speckner wrote: > > Hi there! > > > > I have converted the SDL_ttf header, and although I haven't tested it > > extensively, it seems to work fine. If anyone is interested: it is part > > of the amoeba CVS (sourceforge project amoebagame) and resides in the > > "headers" subdir. > > Daniel, if you want, feel free to add this to SDL4fp... :) > > Thanks, > Elio is adding his port of SDL_image at the time and working on writing > fpcpackages. Possibly after that we can try out including your library. > > Greetings, > D. |
From: Elio C. <el...@mi...> - 2005-08-05 04:35:11
|
El Lun 01 Ago 2005 04:06, Christian Speckner escribi=F3: > Hi there! > > I have converted the SDL_ttf header, and although I haven't tested it > extensively, it seems to work fine. If anyone is interested: it is part of > the amoeba CVS (sourceforge project amoebagame) and resides in the > "headers" subdir. > Daniel, if you want, feel free to add this to SDL4fp... :) Thanks, i have added it to the "extras" module in the sdl4fp project. By th= e=20 way, wouldn't you happen to have some little demos that we could include? > > Greetings > -Christian Speckner > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op=3Dclick > _______________________________________________ > Sdl4fp-users mailing list > Sdl...@li... > https://lists.sourceforge.net/lists/listinfo/sdl4fp-users |
From: Daniel F M. <dmo...@gr...> - 2005-08-03 21:57:32
|
On Mon, 2005-08-01 at 06:06, Christian Speckner wrote: > Hi there! >=20 > I have converted the SDL_ttf header, and although I haven't tested it=20 > extensively, it seems to work fine. If anyone is interested: it is part o= f=20 > the amoeba CVS (sourceforge project amoebagame) and resides in the "heade= rs"=20 > subdir. > Daniel, if you want, feel free to add this to SDL4fp... :) Thanks, Elio is adding his port of SDL_image at the time and working on writing fpcpackages. Possibly after that we can try out including your library. Greetings, D. --=20 Must it be assumed that because we are engineers beauty is not our concern, and that while we make our constructions robust and durable we do not also strive to make them elegant? Is it not true that the genuine conditions of strength always comply with the secret conditions of harmony? -- Gustave Eiffel, 1887 |
From: Christian S. <csp...@fr...> - 2005-08-01 09:12:04
|
Hi there! I have converted the SDL_ttf header, and although I haven't tested it extensively, it seems to work fine. If anyone is interested: it is part of the amoeba CVS (sourceforge project amoebagame) and resides in the "headers" subdir. Daniel, if you want, feel free to add this to SDL4fp... :) Greetings -Christian Speckner |
From: Daniel F M. <dmo...@ar...> - 2005-07-27 04:29:36
|
On Wed, 2005-07-20 at 21:01, Matthias wrote: > Hi all! > > I read about SDL and the possibility to use it with Freepascal few time > ago. I think SDL is exactly what I have ever searched for... So I would be > glas to here that its development would go on (unfortunately I am not > skilled enough to support the project by programming or translating header > files or something). Well I made up a little site I would like to get > linked. It is meant as introduction for people who want to use Freepascal > and SDL (under Windows systems). Maybe that could help spreading > SDL4Freepascal. > > @Daniel Moisset: I would like to get linked if my site fits anyhow? Hi, your page has a nice tutorial and docs. The writing may need some help (It shows a little that you are not a native english speaker, even not being one myself ;-) ), but it sure beats the lack of documentation we have now. I think it would be nice to cross-links the site. btw, I could take some time tomorrow to fix the cron script that updates the website from CVS. It would be nice to setup a wiki to write and improve documentation like this one collaboratively. I'm quite busy, so, any volunteer? Cheers, D. -- Must it be assumed that because we are engineers beauty is not our concern, and that while we make our constructions robust and durable we do not also strive to make them elegant? Is it not true that the genuine conditions of strength always comply with the secret conditions of harmony? -- Gustave Eiffel, 1887 |
From: Christian S. <csp...@fr...> - 2005-07-26 08:16:55
|
Well, you might try to convert the SDLttf (available from www.libsdl.org if I'm not mistaken) headers; shouldn't be too hard (I was going to do this some time ago, but since I have exams and no time to do programming work). Greetings -Christian Speckner > > --__--__-- > > Message: 1 > To: sdl...@li... > Date: Mon, 25 Jul 2005 21:24:29 +0200 > From: Matthias <ma...@gm...> > Subject: [Sdl4fp-users] font or something? > > I wonder if there is known font support for SDL under Freepascal. Saw many > font support modules for C/C++ but none for Freepascal. Is there any known > translation? Tryed to translate SFont from C/C++ but wasn't too successful > at all. > > So what about this topic? > > Greets, > Matthias |
From: Matthias <ma...@gm...> - 2005-07-25 19:24:42
|
I wonder if there is known font support for SDL under Freepascal. Saw many font support modules for C/C++ but none for Freepascal. Is there any known translation? Tryed to translate SFont from C/C++ but wasn't too successful at all. So what about this topic? Greets, Matthias -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ |
From: Matthias <ma...@gm...> - 2005-07-24 12:42:12
|
Hi there! May I mirror the provided unit files? (namely: SDL4Freepascal-1.2.0.0.tar.gz) Will there be a new version soon of SDL4Freepascal? Thx, Matthias (http://www.fp.sdl.de.vu/) |
From: Matthias <ma...@gm...> - 2005-07-21 00:22:18
|
Seems as if I forgot something....... http://www.fp.sdl.de.vu/ Have fun. -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ |
From: Matthias <ma...@gm...> - 2005-07-21 00:02:02
|
Hi all! I read about SDL and the possibility to use it with Freepascal few time ago. I think SDL is exactly what I have ever searched for... So I would be glas to here that its development would go on (unfortunately I am not skilled enough to support the project by programming or translating header files or something). Well I made up a little site I would like to get linked. It is meant as introduction for people who want to use Freepascal and SDL (under Windows systems). Maybe that could help spreading SDL4Freepascal. @Daniel Moisset: I would like to get linked if my site fits anyhow? Greets, Matthias (ma...@gm...) |
From: Daniel F M. <dmo...@gr...> - 2005-06-15 02:01:09
|
Hi all, it's been a long time. A couple of times I've promised I would do more work on sdl4fp, but actually I haven't made myself the time... besides, I have not been programming with FreePascal for some time now (but I keep working with SDL), so some of the motivation for working on this, which was using the library myself, is lost. I've left the project abandoned irresponsibly, instead of asking for help, something that I should have done a long time ago. Recently, Tob=EDas D=EDaz (known as int-0 at sourceforge) has offered me t= o help on the library. He has been already doing some rewriting, and adding some modules. So I've added him to the development list hoping he can be more helpful than me. I've still be around checking the changes into CVS, reading mail, and trying to get included some patches that have been contributed and are waiting in my inbox See you, Dani --=20 Must it be assumed that because we are engineers beauty is not our concern, and that while we make our constructions robust and durable we do not also strive to make them elegant? Is it not true that the genuine conditions of strength always comply with the secret conditions of harmony? -- Gustave Eiffel, 1887 |
From: Jason O. <jo...@ho...> - 2004-10-27 05:55:53
|
On October 22, 2004 12:53 pm, sdl...@li... wrote: > Sdl4fp-users -- confirmation of subscription -- request 939131 > > We have received a request from 24.69.4.184 for subscription of your > email address, <jo...@ho...>, to the > sdl...@li... mailing list. To confirm the > request, please send a message to > sdl...@li..., and either: > > - maintain the subject line as is (the reply's additional "Re:" is > ok), > > - or include the following line - and only the following line - in the > message body: > > confirm 939131 > > (Simply sending a 'reply' to this message should work from most email > interfaces, since that usually leaves the subject line in the right > form.) > > If you do not wish to subscribe to this list, please simply disregard > this message. Send questions to > sdl...@li.... |
From: Christian S. <csp...@fr...> - 2004-07-12 18:57:13
|
Hi! Just wanted to inform you that I have startet on a game project using SDL= 4fp.=20 At the moment, the project is in a VERY early stage (not more than a coup= le=20 of graphics routines and a graphics demo yet), but there hopefully there = will=20 be something for actual playing in a not-to-distant future. If anyone is interested in taking a look: amoebagame.sourceforge.net. Greetings =09-Christian Speckner |
From: <ben...@id...> - 2004-05-25 08:18:57
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |