package cpw.mods.fml.client; import net.minecraft.client.gui.GuiErrorScreen; import cpw.mods.fml.common.Loader; import cpw.mods.fml.common.WrongMinecraftVersionException; import cpw.mods.fml.common.versioning.ArtifactVersion; public class GuiWrongMinecraft extends GuiErrorScreen { private WrongMinecraftVersionException wrongMC; public GuiWrongMinecraft(WrongMinecraftVersionException wrongMC) { this.wrongMC = wrongMC; } @Override /** * Adds the buttons (and other controls) to the screen in question. */ public void initGui() { super.initGui(); } @Override /** * Draws the screen and all the components in it. */ public void drawScreen(int par1, int par2, float par3) { this.drawDefaultBackground(); int offset = 75; this.drawCenteredString(this.fontRenderer, "Forge Mod Loader has found a problem with your minecraft installation", this.width / 2, offset, 0xFFFFFF); offset+=10; this.drawCenteredString(this.fontRenderer, String.format("The mod listed below does not want to run in Minecraft version %s", Loader.instance().getMinecraftModContainer().getVersion()), this.width / 2, offset, 0xFFFFFF); offset+=5; offset+=10; this.drawCenteredString(this.fontRenderer, String.format("%s (%s) wants Minecraft %s", wrongMC.mod.getName(), wrongMC.mod.getModId(), wrongMC.mod.acceptableMinecraftVersionRange()), this.width / 2, offset, 0xEEEEEE); offset+=20; this.drawCenteredString(this.fontRenderer, "The file 'ForgeModLoader-client-0.log' contains more information", this.width / 2, offset, 0xFFFFFF); } }