/* * The FML Forge Mod Loader suite. * Copyright (C) 2012 cpw * * 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; either version 2.1 of the License, or any later version. * * 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 cpw.mods.fml.common; import java.io.File; import java.security.cert.Certificate; import java.util.List; import java.util.Set; import com.google.common.eventbus.EventBus; import cpw.mods.fml.common.versioning.ArtifactVersion; import cpw.mods.fml.common.versioning.VersionRange; /** * The container that wraps around mods in the system. * <p> * The philosophy is that individual mod implementation technologies should not * impact the actual loading and management of mod code. This interface provides * a mechanism by which we can wrap actual mod code so that the loader and other * facilities can treat mods at arms length. * </p> * * @author cpw * */ public interface ModContainer { /** * The globally unique modid for this mod */ String getModId(); /** * A human readable name */ String getName(); /** * A human readable version identifier */ String getVersion(); /** * The location on the file system which this mod came from */ File getSource(); /** * The metadata for this mod */ ModMetadata getMetadata(); /** * Attach this mod to it's metadata from the supplied metadata collection */ void bindMetadata(MetadataCollection mc); /** * Set the enabled/disabled state of this mod */ void setEnabledState(boolean enabled); /** * A list of the modids that this mod requires loaded prior to loading */ Set<ArtifactVersion> getRequirements(); /** * A list of modids that should be loaded prior to this one. The special * value <strong>*</strong> indicates to load <em>before</em> any other mod. */ List<ArtifactVersion> getDependencies(); /** * A list of modids that should be loaded <em>after</em> this one. The * special value <strong>*</strong> indicates to load <em>after</em> any * other mod. */ List<ArtifactVersion> getDependants(); /** * A representative string encapsulating the sorting preferences for this * mod */ String getSortingRules(); /** * Register the event bus for the mod and the controller for error handling * Returns if this bus was successfully registered - disabled mods and other * mods that don't need real events should return false and avoid further * processing * * @param bus * @param controller */ boolean registerBus(EventBus bus, LoadController controller); /** * Does this mod match the supplied mod * * @param mod */ boolean matches(Object mod); /** * Get the actual mod object */ Object getMod(); ArtifactVersion getProcessedVersion(); boolean isImmutable(); boolean isNetworkMod(); String getDisplayVersion(); VersionRange acceptableMinecraftVersionRange(); Certificate getSigningCertificate(); }