/* * Forge Mod Loader * Copyright (c) 2012-2013 cpw. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v2.1 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * * Contributors: * cpw - implementation */ package cpw.mods.fml.client; import java.io.File; import java.util.Map.Entry; import net.minecraft.client.gui.GuiErrorScreen; import cpw.mods.fml.common.DuplicateModsFoundException; import cpw.mods.fml.common.ModContainer; public class GuiDupesFound extends GuiErrorScreen { private DuplicateModsFoundException dupes; public GuiDupesFound(DuplicateModsFoundException dupes) { super(null,null); this.dupes = dupes; } /** * Adds the buttons (and other controls) to the screen in question. */ @Override public void initGui() { super.initGui(); this.buttonList.clear(); } /** * Draws the screen and all the components in it. Args : mouseX, mouseY, renderPartialTicks */ @Override public void drawScreen(int mouseX, int mouseY, float partialTicks) { this.drawDefaultBackground(); int offset = Math.max(85 - dupes.dupes.size() * 10, 10); this.drawCenteredString(this.fontRendererObj, "Forge Mod Loader has found a problem with your minecraft installation", this.width / 2, offset, 0xFFFFFF); offset+=10; this.drawCenteredString(this.fontRendererObj, "You have mod sources that are duplicate within your system", this.width / 2, offset, 0xFFFFFF); offset+=10; this.drawCenteredString(this.fontRendererObj, "Mod Id : File name", this.width / 2, offset, 0xFFFFFF); offset+=5; for (Entry<ModContainer, File> mc : dupes.dupes.entries()) { offset+=10; this.drawCenteredString(this.fontRendererObj, String.format("%s : %s", mc.getKey().getModId(), mc.getValue().getName()), this.width / 2, offset, 0xEEEEEE); } } }