Allows Mindustry Mods to add and read custom JSON tags to act as libraries for other Mindustry Mods.
Note
If your mod uses CustomJsonLib
, CustomJsonLib
will need to be installed in Mindustry as a mod, either through the Mod Browser or manually. Otherwise, all the functionality implemented herein will not be available.
I want to implement new JSON tags
If your mod is written in Java (and is, hence, a Jar mod), use this method.
- Add the library as a dependency in your
mod.[h]json
file:
You can SKIP this step if your mod supports this library but does not require it to function.
JSON:
"dependencies": [
"pyguy.jsonlib"
]
HJSON:
dependencies: [
pyguy.jsonlib
]
- Add the library Jar file into your project as a Java dependency:
CustomJsonLib is available as a Maven package on GitHub. To include it as a dependency you're going to need to add the repository to your build.gradle.kts
(or build.gradle
if you're using Groovy) file:
allprojects{
// ...
repositories{
// ...
maven("https://raw.githubusercontent.com/ThePythonGuy3/CustomJSONLibMaven/main")
//...
}
// ...
}
// ...
project(":"){
// ...
dependencies{
// ...
compileOnly("com.github.ThePythonGuy3.CustomJSONLib:pyguy.jsonlib:latest")
}
// ...
}
If you are using other build systems, ensure that you are adding the library as a Compile Only dependency. This is VERY important and your mod will not work properly otherwise.
Do note that most IDEs will not immediately detect the library after this step. Please restart your IDE or reload the Gradle script (ask your favorite Search Engine how to do this) for it to take effect.
- Use the library
Now the library is part of your project. This does NOT mean it will be shipped with your Jar files, and it makes the files no larger, it just allows for compilation and usage of the library methods.
The content table for JSON tags is created and ready to be used from your mod's init()
method onward. If you plan on checking all content for custom JSON tags, it is recommended to do so after the client loads, like so:
@Override
public void init()
{
Events.on(EventType.ClientLoadEvent.class, event -> {
// Your code here
});
}
To know what methods this library supports, see Using the Library below.
If your mod is written in JavaScript and [H]JSON (and is, hence, a standard Mindustry mod), use this method.
- Add the library as a dependency in your
mod.[h]json
file:
You can SKIP this step if your mod supports this library but does not require it to function.
JSON:
"dependencies": [
"pyguy.jsonlib"
]
HJSON:
dependencies: [
pyguy.jsonlib
]
- Create a reference to JsonLibWrapper for your mod:
Modded classpaths are not included into Rhino JS by default (this means that you cannot directly access the library from JS, you need some work for it).
For this very reason, you need to create a reference that you can use within your mod. To do this, append this to the end of your main.js
script:
var JsonLibWrapper = null;
Events.on(ClientLoadEvent, event => {
let jsonLibMod = Vars.mods.getMod("pyguy.jsonlib");
if (jsonLibMod)
{
if (jsonLibMod.enabled()) JsonLibWrapper = jsonLibMod.loader.loadClass("pyguy.jsonlib.JsonLibWrapper").newInstance();
}
if (JsonLibWrapper)
{
// Your code here
}
});
After this is executed, JsonLibWrapper will have one of two values: null
if the CustomJsonLib is not currently installed in Mindustry, or the API object that you can use to work with the library otherwise.
Do note that only AFTER the client has loaded will JsonLibWrapper have a value, and if CustomJsonLib is not installed in Mindustry, it will not throw an error but rather it will not execute your code at all.
- Use the library
Now the library is part of your project.
To know what methods this library supports, see Using the Library below
I want to use JSON tags implemented by other Mods
To add custom tags implemented by other Mods, follow this structure:
Let's say you want to add to a block named weigthedBomb
a tag called weight
from a mod whose internal name is physics-mod
, and a tag called explosionSize
from a mod whose internal name is super-explosions
.
In your content's [h]json file you'd add the following:
JSON (weightedBomb.json):
{
"type": "Block",
...
"customJson": [
"physics-mod-weight": 45,
"super-explosions-explosionSize": "huge"
]
}
HJSON (weightedBomb.hjson):
type: Block
...
customJson: [
physics-mod-weight: 45,
super-explosions-explosionSize: huge
]
IMPORTANT:
type
here is added for illustration purposes only. The only part that matters is thecustomJson
array.
Even though there are no technical restrictions on the naming of tags, for the sake of everyone using this library (both users and developers) tags should be named in the following scheme:
modname-tagname
This makes it harder for there to be naming clashes between Mods that implement custom tags, or those that use it.
If you are developing a mod that adds custom tags, PLEASE disclose them and their functionality somewhere within the README of your own mod. People that want to use your tags do not want (and should not have) to scour your codebase to find the tags and see what they do. Use something like the following:
## Custom JSON Tags
This mod supports Custom JSON Tags, implemented via the [CustomJsonLib](https://github.com/ThePythonGuy3/CustomJsonLib) by ThePythonGuy3.
If you want to support these in your own Mods, these are the tags implemented:
- `physics-mod-weight`: Indicates the weight in kg of your Block. (number)
- `physics-mod-volume`: Indicates the volume in L of your Block. (number)
- `physics-mod-objectType`: Indicates the type of physicsObject your Block is. Options: [`sphere`, `staticMesh`, `breakableObject`] (string)
If your mod is using Java, you're gonna have to import the CustomJsonLib package:
import pyguy.jsonlib.JsonLibWrapper;
Read a String custom tag named fieldName
from a piece of content with the name internalContentName
.
String JsonLibWrapper.GetStringField(String internalContentName, String fieldName);
Read a Long (natural number) custom tag named fieldName
from a piece of content with the name internalContentName
.
Long JsonLibWrapper.GetLongField(String internalContentName, String fieldName);
Read a Double (real number) custom tag named fieldName
from a piece of content with the name internalContentName
.
Double JsonLibWrapper.GetDoubleField(String internalContentName, String fieldName);
Read a Boolean custom tag named fieldName
from a piece of content with the name internalContentName
.
Boolean JsonLibWrapper.GetBooleanField(String internalContentName, String fieldName);
Read a raw custom tag named fieldName
from a piece of content with the name internalContentName
. This should be used to read objects and arrays.
This method returns a JsonValue.
JsonValue JsonLibWrapper.GetRawField(String internalContentName, String fieldName);
Example code snippet for Java
@Override
public void init()
{
Events.on(EventType.ClientLoadEvent.class, event -> {
Mods.LoadedMod jsonLib = Vars.mods.getMod("pyguy.jsonlib");
if (jsonLib != null && jsonLib.enabled())
{
Vars.content.getBy(ContentType.block).each(blockContent -> {
if (blockContent instanceof Block block)
{
Boolean replaceLocalized = JsonLibWrapper.GetBooleanField(block.name, "example-mod-replaceLocalized");
if (replaceLocalized != null && replaceLocalized)
{
block.localizedName = "Replaced";
}
}
});
}
});
}
Example code snippet for JavaScript
var JsonLibWrapper = null;
Events.on(ClientLoadEvent, event => {
let jsonLibMod = Vars.mods.getMod("pyguy.jsonlib");
if (jsonLibMod)
{
if (jsonLibMod.enabled()) JsonLibWrapper = jsonLibMod.loader.loadClass("pyguy.jsonlib.JsonLibWrapper").newInstance();
}
if (JsonLibWrapper)
{
Vars.content.getBy(ContentType.block).each(block => {
let replaceLocalized = JsonLibWrapper.GetBooleanField(block.name, "example-mod-replaceLocalized");
if (replaceLocalized)
{
block.localizedName = "Replaced";
}
}
}
});
This mod is, in theory, cross-platform, but only Windows has been tested. The only platform not supported is iOS, just because it does not allow for Jar mods to be installed.
Windows | Linux | MacOS | Android | iOS |
---|---|---|---|---|
Fully supported | Untested, should work | Untested, should work | Untested, should work | No support |
Desktop builds are convenient for testing, but they will not work on Android. Desktop JARs have Desktop
suffixed to their name (CustomJsonLibDesktop.jar
). Here's how you can build the mod:
- Open your terminal, and
cd
to your local copy of the mod. - Ensure your internet connection is stable on the first or clean builds, as the project will try to fetch prerequisites from the internet.
- Run
gradlew jar
(replacegradlew
with./gradlew
on Mac/Linux/Powershell). This should create a JAR insidebuild/libs/
that you can copy over to the Mindustry mods folder to install it. - You can also then run
gradlew install
to automatically install the mod JAR, or evengradlew jar install
to do both compiling and installing at once.
Android builds are automated on the CI hosted by GitHub Actions, so you should be able to just push a commit and wait for the CI to provide your build. If you still want to build locally, though, follow these steps.
- Install the Android SDK, specifically the "Command line tools only" section. Download the tools that match your platform.
- Unzip the Android SDK command line tools inside a folder; let's call it
AndroidSDK/
for now. - Inside this folder is a folder named
cmdline-tools/
. Put everything insidecmdline-tools/
to a new folder namedlatest/
, so that the folder structure looks likeAndroidSDK/cmdline-tools/latest/
. - Open your terminal,
cd
to thelatest/
folder. - Run
sdkmanager --install "platforms;android-35" "build-tools;35.0.0"
. These versions correspond to theandroidSdkVersion
andandroidBuildVersion
properties insidegradle.properties
, which default to35
and35.0.0
, respectively. - Set environment variable
ANDROID_SDK_ROOT
as the full path to theAndroidSDK/
folder you created, and restart your terminal to update the environments.
- Open your terminal, and
cd
to your local copy of the mod. - Ensure your internet connection is stable on the first or clean builds, as the project will try to fetch prerequisites from the internet.
- Run
gradlew dex
. This should create a cross-platform JAR insidebuild/libs/
, suffixed byCrossPlatform
(CustomJsonLibCrossPlatform.jar
) that you can copy over to the Mindustry mods folder to install it. - You can then copy the resulting artifact to your phone's Mindustry mods folder in its data directory, or use it in desktop.
The project is licensed under GNU GPL v3.
Thanks to Glenn Folker for the Mindustry Mod Template and part of this README's Building instructions.