addonscript-java/src/main/java/ley/anvil/addonscript/v1/AddonscriptJSON.java
2020-05-16 16:55:59 +02:00

253 lines
5.9 KiB
Java

package ley.anvil.addonscript.v1;
import ley.anvil.addonscript.util.JSON;
import java.util.List;
public class AddonscriptJSON extends JSON {
public static AddonscriptJSON fromJSON(String json) {
return gson.fromJson(json, AddonscriptJSON.class);
}
public static AddonscriptJSON create() {
AddonscriptJSON as = new AddonscriptJSON();
as.asversion = 1;
return as;
}
/**
* The version of the AddonScript file
*/
public int asversion;
/**
* The ID of the addon
*/
public String id;
/**
* The name of the addon
*/
public String name;
/**
* The type of the addon
* For example mod or modpack
*/
public String type;
/**
* A link to an external AddonScript file which should be loaded instead of this
*/
public String extScript;
/**
* The Minecraft versions, which are compatile with this addon
*/
public List<String> mcversion;
/**
* A list of versions of this addon
*/
public List<Version> versions;
/**
* A list of the contributors of this addon
*/
public List<Contributor> contributors;
/**
* A list of repositories this file uses
*/
public List<Repository> repositories;
/**
* A list of external installers this file uses
*/
public List<Installer> installers;
/**
* Meta information for this addon
*/
public Meta meta;
public static class Version implements Comparable<Version> {
/**
* The name of this version
* (for example: 1.0, 1.1, 2.0)
*/
public String versionname;
/**
* The numeric ID of this version
* Used to identify, which version is higher/lower than another
* Can be -1 if this file uses only one version
*/
public int versionid;
/**
* The changelog of this version
*/
public List<String> changelog;
/**
* The UNIX Timestamp when this version was released
*/
public int timestamp;
/**
* A link to another Addonscript JSON file, which handles this version
*/
public String extScript;
/**
* A list of files of this version
*/
public List<File> files;
/**
* A lis of addons, that are related to this addon
*/
public List<Relation> relations;
@Override
public int compareTo(Version o) {
return versionid - o.versionid;
}
}
public static class Contributor {
/**
* The name of the contributor
*/
public String name;
/**
* The role of the contributor
* (for example: author, developer, owner ...)
*/
public String role;
}
public static class Meta {
/**
* A link to the icon of this addon
*/
public String icon;
}
public static class Repository {
/**
* The ID of this repository
* Must be unique to this file
*/
public String id;
/**
* The type of this repository
* Currently supported: curseforge
*/
public String type;
/**
* The base url of this repository
*/
public String url;
}
public static class Installer {
/**
* The ID of this installer
* Must be unique to this file
*/
public String id;
/**
* A link or relative path to a python file, which is an installer
*/
public String link;
}
public static class File {
/**
* The installer for this file
* Format: <installerid>:<param 1>:<param 2>...
* Installer ID can be internal.<some internal installer>
*/
public String installer = "internal.override";
/**
* A link or relative path to this file.
* It can also be a path to a directory, if the installer supports directories
*/
public String file;
/**
* Should this file be on the client?
*/
public boolean client = true;
/**
* Should this file be on the server?
*/
public boolean server = true;
/**
* Is this file required or optional?
*/
public boolean required = true;
}
public static class Relation {
/**
* The installer for this file
* Format: <installerid>:<param 1>:<param 2>...
* Installer ID can be internal.<some internal installer>
*/
public String installer = "internal.dir:mods";
/**
* A link to the file or another Addonscript JSON file
*/
public String file;
/**
* The type of this relation
* Supported type: included, required, recommended, optional or incompatible
*/
public String type = "included";
/**
* A String which represents the file as an artifact.
* Format: <repository id>:<repository specific string>
*/
public String artifact;
/**
* Informations about the version of the addons
* Only useable when using a link to a Addonscript JSON file
*/
public VersionData version;
/**
* Should this file be on the client?
*/
public boolean client = true;
/**
* Should this file be on the server?
*/
public boolean server = true;
/**
* Is this file required or optional?
*/
public boolean required = true;
}
/**
* Currently useless
*/
public static class VersionData {
public String version;
public int versionID;
public int minVersion;
public int maxVersion;
public boolean openUp;
public boolean openDown;
}
}