Upcoming features for LOVE 0.6.0

General discussion about LÖVE, Lua, game development, puns, and unicorns.
User avatar
rude
Administrator
Posts: 1052
Joined: Mon Feb 04, 2008 3:58 pm
Location: Oslo, Norway

Re: Upcoming features for LOVE 0.6.0

Post by rude »

I've started, though it's by no means complete. I'll keep updating.
User avatar
Tabasco
Citizen
Posts: 72
Joined: Tue Dec 02, 2008 5:04 pm

Re: Upcoming features for LOVE 0.6.0

Post by Tabasco »

This looks (more) awesome.
I haven't done much in love lately, but I'm really looking forward to 0.6.0.
Thanks for your hard work and dedication! :D
User avatar
Xcmd
Party member
Posts: 211
Joined: Fri Feb 13, 2009 10:45 pm

Re: Upcoming features for LOVE 0.6.0

Post by Xcmd »

I like the more intuitive file-handling, for sure. Although I'm still of the personal opinion that "love.filesystem.newFile" indicates the creation of a file, not a file handler. But I'm probably thinking about it wrong.
We don't borrow, we don't read, we don't rent, we don't lease, we take the minds!
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Upcoming features for LOVE 0.6.0

Post by bartbes »

We thought about changing that, but it didn't work out, the internals relied on the old system too much.
User avatar
Xcmd
Party member
Posts: 211
Joined: Fri Feb 13, 2009 10:45 pm

Re: Upcoming features for LOVE 0.6.0

Post by Xcmd »

It's a matter of semantics anyway.
We don't borrow, we don't read, we don't rent, we don't lease, we take the minds!
User avatar
Zorbatron
Citizen
Posts: 78
Joined: Wed May 27, 2009 6:58 pm

Re: Upcoming features for LOVE 0.6.0

Post by Zorbatron »

rude wrote:I've started, though it's by no means complete. I'll keep updating.
Hey, thanks alot for that.

A question though, why was love.native created? What problem is it meant to solve? I'm just slightly confused on its usefulness, why have C code compiled at runtime when you can compile librarys and link them?

And, please, I think alot of people would agree that the spritebatch/vertex buffers would be awesome to have. I know they would help speed things up remarkably in my current framework. I was actually thinking about trying to write a batch sprite deal myself. I just don't know why love.native is so important is all.

Also, won't moving the callbacks (draw,load,update,ect) to lua slow down the game a bit? Wouldn't it be better to just keep them C/C++ side?
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Upcoming features for LOVE 0.6.0

Post by bartbes »

Love.native has an advantage over compiled libs, cross-platformness. Anyway, I already replied in the thread about that.
And maybe moving the main loop (yes, that's all that has changed, just the main loop) will slow it down by a TINY (oops, wrong size :P) amount, this won't be performance-critical and allows the user/developer to change it, providing more flexibility.
User avatar
Igmon
Prole
Posts: 9
Joined: Wed Mar 11, 2009 6:11 pm

Re: Upcoming features for LOVE 0.6.0

Post by Igmon »

In regards to the physics changes, how are you dealing with auto scaling? Are all units of measurement pretty much use pixels? Is there also conversion with the x/y axis? If so, will there be an option to use the native unit of measurement and axis? I'm just curious as I've been using unit space for the objects and then converting it to pixel space just during rendering. I'm trying to anticipate any changes that need to be made once love 0.6.0 arrives. I also assume it's using the latest box2D version? :p

Also for vertex buffer, I'm guessing the interface is pretty much the way it works with 3d api? Where you create a buffer; stuff it with position, color, and texture position; then on render, register it in the gpu along with what texture to use; and finally provide it with a matrix transformation...? Just curious.

Thanks for the update, all of them are quite..."love"ly ;)
ecliptic
Prole
Posts: 10
Joined: Wed Jul 01, 2009 12:34 pm

Re: Upcoming features for LOVE 0.6.0

Post by ecliptic »

Awesomeness, can't wait!
User avatar
Tenoch
Citizen
Posts: 76
Joined: Mon Jul 21, 2008 7:49 am

Re: Upcoming features for LOVE 0.6.0

Post by Tenoch »

Igmon wrote:In regards to the physics changes, how are you dealing with auto scaling? Are all units of measurement pretty much use pixels?
Scaling is done by specifying the factor between Box2D's meters, and whichever unit you're going to use in all love.physics functions. You can for instance, as you suggested, feed in pixels, so it fits directly your drawing routines. The default factor is currently 30 pixels for one meter. You'll be able to change this, but keep in mind (quoting Box2D's doc):
Box2D is tuned for MKS units. Keep the size of moving objects roughly between 0.1 and 10 meters.
So, with default factor, between 3 and 300 pixels.

Not sure what you mean by "Is there also conversion with the x/y axis?"
"When in doubt, use brute force." Ken Thompson
Post Reply

Who is online

Users browsing this forum: No registered users and 91 guests