Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package u.ra.l.bearbear12345.forge.Mod_Downloader;
- import net.minecraft.client.gui.GuiScreen;
- import cpw.mods.fml.common.MissingModsException;
- import cpw.mods.fml.common.versioning.ArtifactVersion;
- public class GuiDownloadComplete extends GuiScreen
- {
- private MissingModsException modsMissing;
- public GuiDownloadComplete(MissingModsException modsMissing)
- {
- this.modsMissing = modsMissing;
- }
- @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 = Math.max(85 - modsMissing.missingMods.size() * 10, 10);
- 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, "The mods and versions listed below could not be found", this.width / 2, offset, 0xFFFFFF);
- offset+=5;
- for (ArtifactVersion v : modsMissing.missingMods)
- {
- offset+=10;
- this.drawCenteredString(this.fontRenderer, String.format("%s : %s", v.getLabel(), v.getRangeString()), 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);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment