/* * Minecraft Forge * Copyright (c) 2016. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 * of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package net.minecraftforge.fml.relauncher; import javax.annotation.Nullable; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.util.Map; /** * The base plugin that provides class name meta information to FML to * enhance the classloading lifecycle for mods in FML * * @author cpw * */ public interface IFMLLoadingPlugin { /** * Return a list of classes that implements the IClassTransformer interface * @return a list of classes that implements the IClassTransformer interface */ String[] getASMTransformerClass(); /** * Return a class name that implements "ModContainer" for injection into the mod list * The "getName" function should return a name that other mods can, if need be, * depend on. * Trivially, this modcontainer will be loaded before all regular mod containers, * which means it will be forced to be "immutable" - not susceptible to normal * sorting behaviour. * All other mod behaviours are available however- this container can receive and handle * normal loading events */ String getModContainerClass(); /** * Return the class name of an implementor of "IFMLCallHook", that will be run, in the * main thread, to perform any additional setup this coremod may require. It will be * run <strong>prior</strong> to Minecraft starting, so it CANNOT operate on minecraft * itself. The game will deliberately crash if this code is detected to trigger a * minecraft class loading * TODO: implement crash ;) */ @Nullable String getSetupClass(); /** * Inject coremod data into this coremod * This data includes: * "mcLocation" : the location of the minecraft directory, * "coremodList" : the list of coremods * "coremodLocation" : the file this coremod loaded from, */ void injectData(Map<String, Object> data); /** * Return an optional access transformer class for this coremod. It will be injected post-deobf * so ensure your ATs conform to the new srgnames scheme. * @return the name of an access transformer class or null if none is provided */ String getAccessTransformerClass(); /** * Annotate your load plugin with a list of package prefixes that will *not* be * processed by the ASM transformation stack. * * Your plugin, and any transformers should *definitely* be in this list, because * otherwise you can face problems with the classloader trying to transform classes * with your transformer, whilst it is *loading* your transformer. Not pretty. * * @author cpw * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface TransformerExclusions { public String[] value() default ""; } /** * Use this to target a specific minecraft version for your coremod. It will refuse to load with an error if * minecraft is not this exact version. * * @author cpw * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface MCVersion { public String value() default ""; } /** * Name this coremod something other than the "short class name" * @author cpw * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface Name { public String value() default ""; } @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface DependsOn { public String[] value() default {}; } /** * A simple sorting index, interleaved with other tweakers from other sources, as well as FML * @author cpw * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface SortingIndex { public int value() default 0; } }