this post was submitted on 24 Nov 2024
66 points (100.0% liked)

Ask Lemmy

26996 readers
1351 users here now

A Fediverse community for open-ended, thought provoking questions

Please don't post about US Politics. If you need to do this, try [email protected]


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
 

I would say for one modders would have much more information on the base to work with.

top 16 comments
sorted by: hot top controversial new old
[–] [email protected] 6 points 7 hours ago

Luanti (aka Minetest) was constructed with a Lua API that makes the core-engine easily extensible, so that today hundreds of mods and gametypes have been added by a vibrant volunteer community.

These mods have become more easily accessible with a new in-game frontend-GUI mod selector and downloader, added in the last year.

I'm currently playing through the Glitch game-mod by Wuzzy.

[–] [email protected] 4 points 9 hours ago

Modability is moreso a function of architecture than source code license, although being open source certainly doesn't hurt.

[–] [email protected] 8 points 9 hours ago

Sure open source would not be a drawback but First place you're looking for the information is in the documentation, not the source code. And then it depends on how the game is designed.

Sure worst case scenario an open source game you can rewrite the entire thing and document it as you see fit. But is it really modding then?

[–] [email protected] 4 points 9 hours ago* (last edited 9 hours ago)

I find that question difficult.

I'd say the best modding experience is when there's a documented API. You kind of don't want to look at the code behind that documented API, because you don't want to rely on behaviour that can change at any point.
So, if there is a modding API and it has all the features that you need for the mod you're looking to create, then I'd say it doesn't make a difference.

If there is no modding API, then as others already explained, you can fork said open-source project, i.e. you don't even need to glue a mod at the side of it, you just change the game itself to work like you want it. In this scenario, open-source makes it significantly easier to modify a game.

[–] [email protected] 5 points 14 hours ago

One thing you get with open-source games is families of variants, where the code for a game has been forked and developed in different directions by different developers.

OG roguelikes such as Nethack and Angband are an example of this. Rather than mods for a single game, there are variants — code forks that add new features, quests, monsters, skill systems, user interface elements, and so on. There are several dozen Angband variants. Some variants draw upon multiple other ones, combining patches to make a particular developer's preferred form of the game.

[–] [email protected] 22 points 15 hours ago (1 children)

I think in many cases a bigger issue is going to be how the game is designed, whether open or closed source.

If your open source game is a mess of poorly-documented, barely-decipherable spaghetti code, held together by a bunch of tacky bullshit, that's going to be a nightmare to mod.

On the other-hand, a closed source game may have absolutely phenomenal documentation and tools available specifically to enable the modding community.

Similarly, you can have well-written, open-sourced code with built-in mod support with proper documentation, and you can have ridiculous bullshit closed-source code that no one is quite sure how or why it even works.

[–] [email protected] 6 points 9 hours ago (1 children)

Then again, Minecraft used to be (maybe still is? I haven't modded in a while) a big mess of spaghetti code but somehow modders not only made it work, but made it work without any documentation and working from obfuscated code.

[–] [email protected] 7 points 9 hours ago* (last edited 9 hours ago)

As one of those old modders ... It was "blood sweat and tears" mixed with community organization that allowed Minecraft modding to shine. Later aided by Mojang's help and refactoring.

[–] [email protected] 8 points 18 hours ago

Modding relies on stability AFAIK.

There are FOSS games with a single branch for development, which doesn't scale well for stability, but works fine with slow development.

Others, have stable and experimental branches with backporting and so on. Probably works better, but too much delay between stable and experimental makes people play on experimental. Stable releases are expensive (redundant bugfixing, backporting, feature freezing/completing etc.), so not every projects has or wants them. Fast development might enable modding to turn into internal (optional) features though.

[–] [email protected] 11 points 19 hours ago* (last edited 19 hours ago)

Pillars of Eternity was moddable only because it was written in C# (Unity iirc), making it possible (though not straightforward) to more or less modify the code however you want. So a mod was essentially a bunch of overwritten classes.

A game that you could literally just fork on GitHub and change things would certainly be moddable in a sense... Handling multiple mods without conflicts, however, is another thing. For that you need a proper modding interface, like the original Baldur's Gate or Skyrim.

[–] [email protected] 6 points 19 hours ago

Depends, was the game originally designed for mods?

[–] [email protected] 2 points 20 hours ago* (last edited 20 hours ago)

It's much easier to make changes to the game if you have the code for the game.

[–] [email protected] 2 points 20 hours ago (1 children)

Probably significantly harder. Open source tends to have a lot of churn and breaking changes. That's more work to keep mods working. If the interface isn't there for a mod, it could be added, but that's more work for the modder.

[–] [email protected] 6 points 18 hours ago

I say it's orthogonal. Like others have pointed out, the important question is whether the game is structured in an easily extensible way.

If the interfaces are stable (or at least versioned and changing relatively slowly), you can mod the game easily. This holds for OpenXcom just like for Skyrim.

If the game is not designed to be modded, modding will be a lot harder and mods will break frequently. Then even slight changes can end up breaking all mods. This holds for any mod-unfriendly have that gets updates.

[–] [email protected] 5 points 20 hours ago

OpenTTD has a ton of mods

[–] [email protected] 38 points 21 hours ago

I think open source eliminates one potential obstacle to modding, but having good interfaces is the main thing. If some open source code is unreadable spaghetti, then it’s gonna be hard to mod. Likewise if a closed-source game has well-documented interfaces available, it could be easier than a poorly-interfaced open source project.

I haven’t written video game mods but I’ve written a lot of code. Even in my own projects, ie where I have access and authority on all code, I want to be ignoring 99% of the code at any given time.

With good interfaces, you don’t need to look behind them. In that way, if the interfaces are good enough, it ceases to matter whether you can see the code behind them.