Page 1 of 2

Game engines and frameworks.

Posted: Sun Feb 04, 2024 1:30 pm
by ddabrahim
Hi all!

I was just wondering if is there any complete game engines or frameworks for Love2D ever shared that include all the basic building blocks like sprites, collision, camera...etc?
I am thinking something similar to Phaser, Cocos2D, Solar2D but made with Love2D?

Since the whole purpose of Love2D is to make our own and everyone is making their own systems, wondering if anyone ever cared to share what they have done? In showcase section there are some interesting engines and tools showcased but nothing seems to be shared that we can actually use.

Thanks.

Re: Game engines and frameworks.

Posted: Sun Feb 04, 2024 9:06 pm
by dusoft

Re: Game engines and frameworks.

Posted: Mon Feb 05, 2024 7:54 am
by ddabrahim
Thank you.

I am familiar with these individual libraries. Maybe HUMP is more similar to what I was looking for.

I was wondering if is there any complete system that designed to work together effortlessly.

The one most similar to what I’m looking for is LIKO-12:
https://liko-12.github.io/

Re: Game engines and frameworks.

Posted: Mon Feb 05, 2024 3:02 pm
by Ross
Sadly, I doubt it. I think if there was something polished, it would be well(-enough) known.

It's a lot of work. I've been working on mine for...six years :death:, and it's not done yet, heh.

Are you looking for something with all the graphical editors and tools, or just extra code framework?

Re: Game engines and frameworks.

Posted: Mon Feb 05, 2024 5:57 pm
by ddabrahim
I was just curious what is out there in general if anything at all. Code frameworks, code editors, level editors, complete game engines.

Re: Game engines and frameworks.

Posted: Mon Feb 05, 2024 8:36 pm
by dusoft
AFAIK there is not a complete engine that would include editor like Godot or such. I think that's the beauty of Love - it can be whatever you want it to be.

PS: If you want it to be a complete engine and you will reach that at some point, please release the source code for others.

Re: Game engines and frameworks.

Posted: Tue Feb 06, 2024 10:47 am
by ddabrahim
Of course I have no desire to use something like Godot. I am only looking for some inspirations here.

Re: Game engines and frameworks.

Posted: Tue Feb 06, 2024 11:41 am
by darkfrei
There are a lot of Lua engines/ frameworks, but you can choose most popular of them: https://www.dragonflydb.io/game-dev/engines/lua

Re: Game engines and frameworks.

Posted: Tue Feb 06, 2024 8:12 pm
by ddabrahim
Thank you for the link. One of the items in the list is actually a multiplayer game engine for Love2d but I guess it is obsolete, was not updated for years. Maybe worth a look though.

https://github.com/Planimeter/game-engine-2d

Re: Game engines and frameworks.

Posted: Wed Feb 07, 2024 3:30 pm
by _JM_
I've been working for some time in a bunch of code to help me in game jams.
It includes Camera, Tilemaps, a rustic Tilemap Editor with auto tile, Physics for platforms, Animation, GameStates, etc...

You can check it here (unfortunately, not documented yet):
https://github.com/joaoMarcello/jm-love2d-package

Just clone the repo and add this piece of code on top of main.lua to have acess to all modules:

Code: Select all

local JM = require "jm-love2d-package.init"