chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] 3D games in Chicken


From: John
Subject: Re: [Chicken-users] 3D games in Chicken
Date: Thu, 16 Feb 2006 14:58:46 -0500
User-agent: Thunderbird 1.5 (X11/20060113)

I had about twenty megs of data on the heap, which was around 100 ms for a major gc. Now that I've read the docs a bit more, it seems that I've spoken too soon: allocating all of my srfi-4 stuff as NONGC would cut down on the heap size considerably. Hmmm, one less reason to not use Chicken.

By the way, has anyone thought of doing something like PyGame for Scheme? It seems to have popularized Python quite a bit.

-- John

felix winkelmann wrote:
On 2/11/06, John <address@hidden> wrote:
I think a 3D framework in Scheme is a pretty rockin' idea.  I had a
simple one running in Chicken that worked pretty well, but I ended up
moving it to Bigloo.  I was more afraid of the copying collector than
anything else:  It'd be easy enough to allocate all big stuff outside of
scheme with the FFI, but I feel like I'd still get bitten by the copying
gc in the end.  Which is kind of a shame, because Chicken's gc seems to
handle cases that Bigloo doesn't like too much (lots of garbage in a
short amount of time, which is handled by a minor gc).


The copying GC is indeed a problem in tight loops, but if you keep
your heap small, the GC times should be minor. Can you say something
about the size and type of the datasets you had?

I definitely agree that it's a waste of time to try to make Chicken
bindings for an existing engine.  Almost everything is written in C++
for starters -- it feels like interfacing any scheme with any C++
application of size will be a long, painful road.  Besides, Scheme will
never achieve world domination if it's always just an extension language :)

Well, it can start infiltrating before it dominates. I think connecting to
an existing engine is the path of least resistance (so to speak).
I have the beginnings of a SWIG-based binding to the Irrlicht 3D
engine, but it's far from being complete.


cheers,
felix






reply via email to

[Prev in Thread] Current Thread [Next in Thread]