forked from xjboss/KCauldronX
109 lines
5.4 KiB
Diff
109 lines
5.4 KiB
Diff
--- ../src-base/minecraft/cpw/mods/fml/relauncher/CoreModManager.java
|
|
+++ ../src-work/minecraft/cpw/mods/fml/relauncher/CoreModManager.java
|
|
@@ -27,10 +27,14 @@
|
|
import java.util.Map;
|
|
import java.util.jar.Attributes;
|
|
import java.util.jar.JarFile;
|
|
+
|
|
+import kcauldron.KCauldronClassTransformer;
|
|
import net.minecraft.launchwrapper.ITweaker;
|
|
import net.minecraft.launchwrapper.Launch;
|
|
import net.minecraft.launchwrapper.LaunchClassLoader;
|
|
+
|
|
import org.apache.logging.log4j.Level;
|
|
+
|
|
import com.google.common.base.Strings;
|
|
import com.google.common.base.Throwables;
|
|
import com.google.common.collect.ImmutableList;
|
|
@@ -38,6 +42,7 @@
|
|
import com.google.common.collect.Maps;
|
|
import com.google.common.collect.ObjectArrays;
|
|
import com.google.common.primitives.Ints;
|
|
+
|
|
import cpw.mods.fml.common.FMLLog;
|
|
import cpw.mods.fml.common.asm.transformers.ModAccessTransformer;
|
|
import cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker;
|
|
@@ -53,7 +58,7 @@
|
|
private static final Attributes.Name COREMODCONTAINSFMLMOD = new Attributes.Name("FMLCorePluginContainsFMLMod");
|
|
private static final Attributes.Name MODTYPE = new Attributes.Name("ModType");
|
|
private static final Attributes.Name MODSIDE = new Attributes.Name("ModSide");
|
|
- private static String[] rootPlugins = { "cpw.mods.fml.relauncher.FMLCorePlugin", "net.minecraftforge.classloading.FMLForgePlugin" };
|
|
+ private static String[] rootPlugins = { "cpw.mods.fml.relauncher.FMLCorePlugin", "net.minecraftforge.classloading.FMLForgePlugin", "pw.prok.imagine.ImagineLoadingPlugin" };
|
|
private static List<String> loadedCoremods = Lists.newArrayList();
|
|
private static List<FMLPluginWrapper> loadPlugins;
|
|
private static boolean deobfuscatedEnvironment;
|
|
@@ -94,6 +99,7 @@
|
|
@Override
|
|
public void injectIntoClassLoader(LaunchClassLoader classLoader)
|
|
{
|
|
+ // Cauldron end
|
|
FMLRelaunchLog.fine("Injecting coremod %s {%s} class transformers", name, coreModInstance.getClass().getName());
|
|
if (coreModInstance.getASMTransformerClass() != null) for (String transformer : coreModInstance.getASMTransformerClass())
|
|
{
|
|
@@ -153,6 +159,9 @@
|
|
|
|
}
|
|
|
|
+ // Cauldron - group output of @MCVersion warnings
|
|
+ private static List<String> noVersionAnnotationCoreMods = new ArrayList<String>();
|
|
+
|
|
public static void handleLaunch(File mcDir, LaunchClassLoader classLoader, FMLTweaker tweaker)
|
|
{
|
|
CoreModManager.mcDir = mcDir;
|
|
@@ -212,6 +221,19 @@
|
|
loadCoreMod(classLoader, coreModClassName, null);
|
|
}
|
|
discoverCoreMods(mcDir, classLoader);
|
|
+ // Cauldron start - group output of @MCVersion warnings
|
|
+ if (!noVersionAnnotationCoreMods.isEmpty())
|
|
+ {
|
|
+ FMLRelaunchLog
|
|
+ .warning("The following coremods do not have a @MCVersion annotation. They may cause problems if this is not the correct version of Minecraft for them.");
|
|
+ StringBuilder sb = new StringBuilder("Missing @MCVersion: ");
|
|
+ for (String className : noVersionAnnotationCoreMods)
|
|
+ {
|
|
+ sb.append(className).append(" ");
|
|
+ }
|
|
+ FMLRelaunchLog.warning(sb.toString());
|
|
+ }
|
|
+ // Cauldron end
|
|
|
|
}
|
|
|
|
@@ -293,6 +315,10 @@
|
|
String cascadedTweaker = mfAttributes.getValue("TweakClass");
|
|
if (cascadedTweaker != null)
|
|
{
|
|
+ if ("fastcraft.Tweaker".equals(cascadedTweaker) && !"false".equals(System.getProperty("kcauldron.fastcraft.disable", "true"))) {
|
|
+ FMLRelaunchLog.info("Found FastCraft tweaker, skipping...");
|
|
+ continue;
|
|
+ }
|
|
FMLRelaunchLog.info("Loading tweaker %s from %s", cascadedTweaker, coreMod.getName());
|
|
Integer sortOrder = Ints.tryParse(Strings.nullToEmpty(mfAttributes.getValue("TweakOrder")));
|
|
sortOrder = (sortOrder == null ? Integer.valueOf(0) : sortOrder);
|
|
@@ -322,6 +348,10 @@
|
|
FMLRelaunchLog.fine("Not found coremod data in %s", coreMod.getName());
|
|
continue;
|
|
}
|
|
+ if ("fastcraft.LoadingPlugin".equals(fmlCorePlugin) && !"false".equals(System.getProperty("kcauldron.fastcraft.disable", "true"))) {
|
|
+ FMLRelaunchLog.warning("Found FastCraft coremod, skipping...");
|
|
+ continue;
|
|
+ }
|
|
// Support things that are mod jars, but not FML mod jars
|
|
try
|
|
{
|
|
@@ -424,8 +454,11 @@
|
|
MCVersion requiredMCVersion = coreModClazz.getAnnotation(IFMLLoadingPlugin.MCVersion.class);
|
|
if (!Arrays.asList(rootPlugins).contains(coreModClass) && (requiredMCVersion == null || Strings.isNullOrEmpty(requiredMCVersion.value())))
|
|
{
|
|
- FMLRelaunchLog.log(Level.WARN, "The coremod %s does not have a MCVersion annotation, it may cause issues with this version of Minecraft",
|
|
- coreModClass);
|
|
+ // Cauldron start - group output of @MCVersion warnings
|
|
+ // FMLRelaunchLog.log(Level.WARN, "The coremod %s does not have a MCVersion annotation, it may cause issues with this version of Minecraft",
|
|
+ // coreModClass);
|
|
+ noVersionAnnotationCoreMods.add(coreModClass);
|
|
+ // Cauldron end
|
|
}
|
|
else if (requiredMCVersion != null && !FMLInjectionData.mccversion.equals(requiredMCVersion.value()))
|
|
{
|