Search in sources :

Example 6 with ArtifactVersion

use of net.minecraftforge.fml.common.versioning.ArtifactVersion in project MinecraftForge by MinecraftForge.

the class GuiModsMissingForServer method drawScreen.

@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
    this.drawDefaultBackground();
    int offset = Math.max(85 - modsMissing.missingMods.size() * 10, 10);
    this.drawCenteredString(this.fontRendererObj, "Forge Mod Loader could not connect to this server", this.width / 2, offset, 0xFFFFFF);
    offset += 10;
    this.drawCenteredString(this.fontRendererObj, "The mods and versions listed below could not be found", this.width / 2, offset, 0xFFFFFF);
    offset += 10;
    this.drawCenteredString(this.fontRendererObj, "They are required to play on this server", this.width / 2, offset, 0xFFFFFF);
    offset += 5;
    for (ArtifactVersion v : modsMissing.missingMods) {
        offset += 10;
        this.drawCenteredString(this.fontRendererObj, String.format("%s : %s", v.getLabel(), v.getRangeString()), this.width / 2, offset, 0xEEEEEE);
    }
    super.drawScreen(mouseX, mouseY, partialTicks);
}
Also used : ArtifactVersion(net.minecraftforge.fml.common.versioning.ArtifactVersion)

Example 7 with ArtifactVersion

use of net.minecraftforge.fml.common.versioning.ArtifactVersion in project MinecraftForge by MinecraftForge.

the class FMLModContainer method bindMetadata.

@Override
public void bindMetadata(MetadataCollection mc) {
    modMetadata = mc.getMetadataForId(getModId(), descriptor);
    if (descriptor.containsKey("useMetadata")) {
        overridesMetadata = !((Boolean) descriptor.get("useMetadata"));
    }
    if (overridesMetadata || !modMetadata.useDependencyInformation) {
        Set<ArtifactVersion> requirements = Sets.newHashSet();
        List<ArtifactVersion> dependencies = Lists.newArrayList();
        List<ArtifactVersion> dependants = Lists.newArrayList();
        annotationDependencies = (String) descriptor.get("dependencies");
        Loader.instance().computeDependencies(annotationDependencies, requirements, dependencies, dependants);
        dependants.addAll(Loader.instance().getInjectedBefore(getModId()));
        dependencies.addAll(Loader.instance().getInjectedAfter(getModId()));
        modMetadata.requiredMods = requirements;
        modMetadata.dependencies = dependencies;
        modMetadata.dependants = dependants;
        FMLLog.log(getModId(), Level.TRACE, "Parsed dependency info : %s %s %s", requirements, dependencies, dependants);
    } else {
        FMLLog.log(getModId(), Level.TRACE, "Using mcmod dependency info : %s %s %s", modMetadata.requiredMods, modMetadata.dependencies, modMetadata.dependants);
    }
    if (Strings.isNullOrEmpty(modMetadata.name)) {
        FMLLog.log(getModId(), Level.INFO, "Mod %s is missing the required element 'name'. Substituting %s", getModId(), getModId());
        modMetadata.name = getModId();
    }
    internalVersion = (String) descriptor.get("version");
    if (Strings.isNullOrEmpty(internalVersion)) {
        Properties versionProps = searchForVersionProperties();
        if (versionProps != null) {
            internalVersion = versionProps.getProperty(getModId() + ".version");
            FMLLog.log(getModId(), Level.DEBUG, "Found version %s for mod %s in version.properties, using", internalVersion, getModId());
        }
    }
    if (Strings.isNullOrEmpty(internalVersion) && !Strings.isNullOrEmpty(modMetadata.version)) {
        FMLLog.log(getModId(), Level.WARN, "Mod %s is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version %s", getModId(), modMetadata.version);
        internalVersion = modMetadata.version;
    }
    if (Strings.isNullOrEmpty(internalVersion)) {
        FMLLog.log(getModId(), Level.WARN, "Mod %s is missing the required element 'version' and no fallback can be found. Substituting '1.0'.", getModId());
        modMetadata.version = internalVersion = "1.0";
    }
    String mcVersionString = (String) descriptor.get("acceptedMinecraftVersions");
    // MC 1.8.8 and 1.8.9 is forward SRG compatible so accept these versions by default.
    if ("[1.8.8]".equals(mcVersionString))
        mcVersionString = "[1.8.8,1.8.9]";
    if ("[1.9.4]".equals(mcVersionString) || "[1.9,1.9.4]".equals(mcVersionString) || "[1.9.4,1.10)".equals(mcVersionString) || "[1.10]".equals(mcVersionString))
        mcVersionString = "[1.9.4,1.10.2]";
    if ("[1.11]".equals(mcVersionString))
        mcVersionString = "[1.11,1.11.2]";
    if (!Strings.isNullOrEmpty(mcVersionString)) {
        minecraftAccepted = VersionParser.parseRange(mcVersionString);
    } else {
        minecraftAccepted = Loader.instance().getMinecraftModContainer().getStaticVersionRange();
    }
    String jsonURL = (String) descriptor.get("updateJSON");
    if (!Strings.isNullOrEmpty(jsonURL)) {
        try {
            this.updateJSONUrl = new URL(jsonURL);
        } catch (MalformedURLException e) {
            FMLLog.log(getModId(), Level.DEBUG, "Specified json URL invalid: %s", jsonURL);
        }
    }
}
Also used : MalformedURLException(java.net.MalformedURLException) ArtifactVersion(net.minecraftforge.fml.common.versioning.ArtifactVersion) DefaultArtifactVersion(net.minecraftforge.fml.common.versioning.DefaultArtifactVersion) Properties(java.util.Properties) URL(java.net.URL)

Example 8 with ArtifactVersion

use of net.minecraftforge.fml.common.versioning.ArtifactVersion in project MinecraftForge by MinecraftForge.

the class Loader method sortModList.

/**
     * Sort the mods into a sorted list, using dependency information from the
     * containers. The sorting is performed using a {@link TopologicalSort}
     * based on the pre- and post- dependency information provided by the mods.
     */
private void sortModList() {
    FMLLog.finer("Verifying mod requirements are satisfied");
    List<WrongMinecraftVersionException> wrongMinecraftExceptions = new ArrayList<WrongMinecraftVersionException>();
    List<MissingModsException> missingModsExceptions = new ArrayList<MissingModsException>();
    try {
        BiMap<String, ArtifactVersion> modVersions = HashBiMap.create();
        for (ModContainer mod : Iterables.concat(getActiveModList(), ModAPIManager.INSTANCE.getAPIList())) {
            modVersions.put(mod.getModId(), mod.getProcessedVersion());
        }
        ArrayListMultimap<String, String> reqList = ArrayListMultimap.create();
        for (ModContainer mod : getActiveModList()) {
            if (!mod.acceptableMinecraftVersionRange().containsVersion(minecraft.getProcessedVersion())) {
                FMLLog.severe("The mod %s does not wish to run in Minecraft version %s. You will have to remove it to play.", mod.getModId(), getMCVersionString());
                WrongMinecraftVersionException ret = new WrongMinecraftVersionException(mod, getMCVersionString());
                FMLLog.severe(ret.getMessage());
                wrongMinecraftExceptions.add(ret);
                continue;
            }
            Map<String, ArtifactVersion> names = Maps.uniqueIndex(mod.getRequirements(), new ArtifactVersionNameFunction());
            Set<ArtifactVersion> versionMissingMods = Sets.newHashSet();
            Set<String> missingMods = Sets.difference(names.keySet(), modVersions.keySet());
            if (!missingMods.isEmpty()) {
                FMLLog.severe("The mod %s (%s) requires mods %s to be available", mod.getModId(), mod.getName(), missingMods);
                for (String modid : missingMods) {
                    versionMissingMods.add(names.get(modid));
                }
                MissingModsException ret = new MissingModsException(versionMissingMods, mod.getModId(), mod.getName());
                FMLLog.severe(ret.getMessage());
                missingModsExceptions.add(ret);
                continue;
            }
            reqList.putAll(mod.getModId(), names.keySet());
            ImmutableList<ArtifactVersion> allDeps = ImmutableList.<ArtifactVersion>builder().addAll(mod.getDependants()).addAll(mod.getDependencies()).build();
            for (ArtifactVersion v : allDeps) {
                if (modVersions.containsKey(v.getLabel())) {
                    if (!v.containsVersion(modVersions.get(v.getLabel()))) {
                        versionMissingMods.add(v);
                    }
                }
            }
            if (!versionMissingMods.isEmpty()) {
                FMLLog.severe("The mod %s (%s) requires mod versions %s to be available", mod.getModId(), mod.getName(), versionMissingMods);
                MissingModsException ret = new MissingModsException(versionMissingMods, mod.getModId(), mod.getName());
                FMLLog.severe(ret.toString());
                missingModsExceptions.add(ret);
            }
        }
        if (wrongMinecraftExceptions.isEmpty() && missingModsExceptions.isEmpty()) {
            FMLLog.finer("All mod requirements are satisfied");
        } else if (missingModsExceptions.size() == 1 && wrongMinecraftExceptions.isEmpty()) {
            throw missingModsExceptions.get(0);
        } else if (wrongMinecraftExceptions.size() == 1 && missingModsExceptions.isEmpty()) {
            throw wrongMinecraftExceptions.get(0);
        } else {
            throw new MultipleModsErrored(wrongMinecraftExceptions, missingModsExceptions);
        }
        reverseDependencies = Multimaps.invertFrom(reqList, ArrayListMultimap.<String, String>create());
        ModSorter sorter = new ModSorter(getActiveModList(), namedMods);
        try {
            FMLLog.finer("Sorting mods into an ordered list");
            List<ModContainer> sortedMods = sorter.sort();
            // Reset active list to the sorted list
            modController.getActiveModList().clear();
            modController.getActiveModList().addAll(sortedMods);
            // And inject the sorted list into the overall list
            mods.removeAll(sortedMods);
            sortedMods.addAll(mods);
            mods = sortedMods;
            FMLLog.finer("Mod sorting completed successfully");
        } catch (ModSortingException sortException) {
            FMLLog.severe("A dependency cycle was detected in the input mod set so an ordering cannot be determined");
            SortingExceptionData<ModContainer> exceptionData = sortException.getExceptionData();
            FMLLog.severe("The first mod in the cycle is %s", exceptionData.getFirstBadNode());
            FMLLog.severe("The mod cycle involves");
            for (ModContainer mc : exceptionData.getVisitedNodes()) {
                FMLLog.severe("%s : before: %s, after: %s", mc.toString(), mc.getDependants(), mc.getDependencies());
            }
            FMLLog.log(Level.ERROR, sortException, "The full error");
            throw sortException;
        }
    } finally {
        FMLLog.fine("Mod sorting data");
        int unprintedMods = mods.size();
        for (ModContainer mod : getActiveModList()) {
            if (!mod.isImmutable()) {
                FMLLog.fine("\t%s(%s:%s): %s (%s)", mod.getModId(), mod.getName(), mod.getVersion(), mod.getSource().getName(), mod.getSortingRules());
                unprintedMods--;
            }
        }
        if (unprintedMods == mods.size()) {
            FMLLog.fine("No user mods found to sort");
        }
    }
}
Also used : ArrayList(java.util.ArrayList) ArtifactVersion(net.minecraftforge.fml.common.versioning.ArtifactVersion) SortingExceptionData(net.minecraftforge.fml.common.toposort.ModSortingException.SortingExceptionData) ModSortingException(net.minecraftforge.fml.common.toposort.ModSortingException) ModSorter(net.minecraftforge.fml.common.toposort.ModSorter) ArtifactVersionNameFunction(net.minecraftforge.fml.common.functions.ArtifactVersionNameFunction)

Aggregations

ArtifactVersion (net.minecraftforge.fml.common.versioning.ArtifactVersion)8 DefaultArtifactVersion (net.minecraftforge.fml.common.versioning.DefaultArtifactVersion)3 ArtifactVersionNameFunction (net.minecraftforge.fml.common.functions.ArtifactVersionNameFunction)2 MalformedURLException (java.net.MalformedURLException)1 URL (java.net.URL)1 ArrayList (java.util.ArrayList)1 Properties (java.util.Properties)1 DummyModContainer (net.minecraftforge.fml.common.DummyModContainer)1 ModContainer (net.minecraftforge.fml.common.ModContainer)1 ASMData (net.minecraftforge.fml.common.discovery.ASMDataTable.ASMData)1 ModCandidate (net.minecraftforge.fml.common.discovery.ModCandidate)1 FMLStateEvent (net.minecraftforge.fml.common.event.FMLStateEvent)1 ModIdFunction (net.minecraftforge.fml.common.functions.ModIdFunction)1 ModSorter (net.minecraftforge.fml.common.toposort.ModSorter)1 ModSortingException (net.minecraftforge.fml.common.toposort.ModSortingException)1 SortingExceptionData (net.minecraftforge.fml.common.toposort.ModSortingException.SortingExceptionData)1