this post was submitted on 07 Mar 2024
19 points (95.2% liked)

Ask Lemmy

25124 readers
2776 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
 

Hello!

I love making games, have even had the privilege to do it "for real". I'm looking for some game engine that I can use to make a 2D turnbased rpg game, that would compile for pc and android.

I have tried out lots of engines since a long time, and whats bothering me the most is that windows changes breaking stuff, the engine going paid or cease to exist, or it uses like javascript. So I'm wondering if there would be, today, something you could recommend that is FOSS, 2D, has sound&music maybe a menu interface, effects..., isn't an obscure, old or too new language (like Lua or Rust, sorry!) and works out of the box for PC and Android.

I'm willing to ponder web instead of PC but I'm not willing to go the javascript route :-).

Thank you for your time!

Cheers

Valmond

top 13 comments
sorted by: hot top controversial new old
[–] ilmagico 7 points 3 months ago (1 children)

Have you considered Godot? I don't have any real experience with it, but from what I gather, it's FOSS, seems pretty popular and well supported, definitely supports 2D (also 3D but you don't care), can export to Android or web, as well as PC, and doesn't use any of your "blacklisted" languages. It uses its own python-like script, or you can use C#, and there's extensions for others.

[–] [email protected] 1 points 3 months ago

Yeah, I followed persons recommendation, ig does Android and C# too :-)

[–] [email protected] 5 points 3 months ago* (last edited 3 months ago) (2 children)

Godot is great for 2D, is FOSS, and it is getting stronger by the minute. Where it doesn't meet your requirements is perhaps that its main language is their own GDScript. it's a really easy language to get started with, but still "obscure". You can, however, use C# to do (I think) anything you could with gdscript.

You can also use C++ to do everything. This is called GDNative. With this you're basically just rewriting / adding to the game engine that is written in C++. Probably harder to get into, especially if you're not too familiar with the language.

I had experience with python so GDScript came naturally, and the documentation is really thorough.

With Godot you can export to Windows/Linux/Web in one click. Exporting to Android just needs like 15 minutes of setting up using the tutorial in the docs, and that becomes single click too.

You can even download the game engine onto your phone and it works the exact same there! Though I wouldn't want to develop on a tiny touch screen lol

[–] [email protected] 1 points 3 months ago

Interesting, I have heard a lot of good things about it, didn't know it could compile android versions!

[–] [email protected] 1 points 3 months ago (1 children)

BTW I just installed Godot and to my delight it has a C# version (I'm a C/C++ guy so that should be easy peasy)!

Now I'm only wondering if visual code is the way to go on my Linux Mint. IIRC one of their IDEs is somewhat open source.

[–] [email protected] 2 points 3 months ago (1 children)

VSCode is open source with an asterisk. All the official releases are pumped up with not so open source microsoft parts. I recommend using VSCodium. They take the code and compile & release it so you don't have to do it yourself. You'll have to update it manually, but honestly I had a 1.5 year old release running before I thought to.

The GDScript VSCode(ium) extension is excellent. I've never tried Godot with C#, so I can't say about that extension.

[–] [email protected] 1 points 3 months ago

Thanks again, will do. I guess if the EEE goes too far then I can probably stay in a time bubble and keep going :-)

[–] AnAustralianPhotographer 4 points 3 months ago (1 children)

I'm not sure it fully meets the specs, but have a look at the TIC80 it's an open source fantasy console you can write code for.

Imagine something like a 1st generation console game system fully sypported by emulators. I've touched on it on a recalbox.

[–] [email protected] 2 points 3 months ago

Ha ha well that would be almost the complete opposite that I'm looking for :-)

I have already worked on some of the old gen consoles and it's fun and all but typically not portable at all.

[–] themusicman 2 points 3 months ago (1 children)

Rust is newish but it's not going anywhere anytime soon. If you've got the chops to work directly in code without a built-in editor, try Bevy. Seriously. It's the future of game dev.

[–] [email protected] 1 points 3 months ago* (last edited 3 months ago) (1 children)

My man, I love your optimism :-)

Thanks for the IDE tip though, was thinking about compiling Lemmy one day and if I understand it correctly it's written in Rust?

Edit: seems like its not a standalone IDE.

[–] themusicman 2 points 3 months ago (1 children)

I meant level/scene editor, not IDE. Bevy has neither

[–] [email protected] 1 points 3 months ago

Ah yeah sorry my bad, thanks! Rust isn't for me, at least today though :-).