-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Proposal] Make MC dependency-free #5
Comments
Thank you for your contribution to the discussion. Your proposal is insightful, but I have several concerns that need to be addressed. 1. Mod Conflicts (Stylistic and Actual)Introducing new ore types could potentially override existing game mechanics or styles, causing conflicts with other mods that already implement aluminum and silicon. This could create confusion for users, especially since our mod doesn't primarily deal with ores. 2. ModularityMandating ores within this mod removes the flexibility for users to disable them without altering the code or a setting. A more dynamic approach would be preferable, where the availability of certain craft recipes is contingent upon the presence of specific mods. 3. Scope ExpansionIncorporating ore generation necessitates balanced management alongside our mod's primary objectives, thereby broadening the project scope and increasing the workload. 4. Code BloatThe additional settings and interactions with other mods would enlarge the codebase, making it more cumbersome to manage. Alternate Solutions
Project ScopeOur aim is to ensure compatibility with a myriad of mods and game environments. Addressing the recipe challenge is a common task for mod developers, and I appreciate your initiative in seeking a resolution. ConclusionTransitioning towards a "game dependency-free" rather than "mod dependency-free" model seems plausible. Our existing mod dependency, "item_tracking," serves a crucial purpose of managing orphaned motherboard inventories. Your suggestions have ignited a fruitful discourse, and I am keen on hearing your thoughts on the alternate solutions provided. |
This solution seems like the one we need. May we have further discussion about that? In case of that separate mod becoming a thing we might need to make a separate organisation, name of which we might discuss outside of GitHub. |
The What
What's this needed for? The answer is simple. Easier maintenance. Yes. MCL or MTG are not rapid-developing projects, and they don't have massive API changes that are hard to keep up with. However, even though depending on these projects makes it a little harder to maintain MC, as we need to check for dependency presence and build from that.
We could've just used, e.g,
depends = default
, but this leaves no possible way to play with MC in any other game, e.g MCL, as MCL doesn't have thedefault
package.The Why
Why do I care? Well, I am a C/C++ programmer, so I am, of course, pretty much sick of depending on anything if it takes nothing to make what I need myself. And also the reasons above. Being a dependency-less project MC achieves the goal to be playable in any game.
My solution
So far things that depend on other mods are crafting recipes. We can, and I think should, add new ore types. Exactly: Aluminum and Silicon as the first step. Make aluminum and silicon generate naturally, balance that, and then just use other items (e.g ingots and plates) to build a computer. This could make things more interesting, balanced, and fun. This change in the recipe will actually force the player in deep dive into the caves to find and mine all the required resources for the computer.
Let me know your thoughts on that. Thank you.
The text was updated successfully, but these errors were encountered: