Topic:   LÖVE   (Read 9398 times)


0 Members and 1 Guest are viewing this topic.

GMG Tim


  • Administrator

  • GMG-er

  • *****


  • Posts: 465
LÖVE
« on: December 05, 2010, 10:05:21 PM »
My brother passed this on and thought some of you might be interested in it, from the website:

Quote
LÖVE is an *awesome* framework you can use to make 2D games in Lua. It's free, open-source, and works on Windows, Mac OS X and Linux.
Link: http://love2d.org/

-Tim

Gan


  • Administrator

  • ^ This guy is amazing.

  • *****


  • Posts: 4411
Re: LÖVE
« Reply #1 on: December 05, 2010, 10:21:29 PM »
Oh man, I love this!
It's my kinda language and there's a built in physics engine!!!

Is there no IDE? Do we gotta compile via terminal and write all code in txt files?

P.S. It so closely resembles Obj-C I wonder if I can take the physics engine out of it and convert to Obj-C.... or at least learn how it works.
« Last Edit: December 05, 2010, 10:24:53 PM by Gandolf »

WarHampster


  • GMG Extraordinaire

  • ***


  • Posts: 1501

  • The People's Moderator
    • Arcade of the Absurd
Re: LÖVE
« Reply #2 on: December 05, 2010, 10:29:01 PM »
Lua is nothing like Obj-C...

Gan


  • Administrator

  • ^ This guy is amazing.

  • *****


  • Posts: 4411
Re: LÖVE
« Reply #3 on: December 05, 2010, 10:35:14 PM »
Quote
function love.load()
   image = love.graphics.newImage("cake.jpg")
   local f = love.graphics.newFont(12)
   love.graphics.setFont(f)
   love.graphics.setColor(0,0,0,255)
   love.graphics.setBackgroundColor(255,255,255)
end
It's semi-C lookin. I like the look of it.
« Last Edit: December 05, 2010, 10:35:52 PM by Gandolf »

WarHampster


  • GMG Extraordinaire

  • ***


  • Posts: 1501

  • The People's Moderator
    • Arcade of the Absurd
Re: LÖVE
« Reply #4 on: December 05, 2010, 11:14:18 PM »
I like the look of Lua precisely because it looks nothing like Obj-C, which is why I'm confused. Anyway, I've never used Love and have only used Lua briefly, but I have heard great things about both the engine and the language.

GMG Tim


  • Administrator

  • GMG-er

  • *****


  • Posts: 465
Re: LÖVE
« Reply #5 on: December 06, 2010, 11:37:36 PM »
Yeah it's Lua, which is not a C-type language, but rather a scripting language more similar to BASIC. I don't think there is an IDE, but I may be wrong.

-Tim

GMG Mike


  • Administrator

  • GMG-er

  • *****

  • no avatar

  • Posts: 536
    • mikerichardson.name
Re: LÖVE
« Reply #6 on: December 08, 2010, 11:28:31 PM »
The syntax looks more like REALbasic (which was initially derived from Java, which was initially derived from C++).