forked from MinecraftForge/FML
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try and handle removal of mods a bit better. Currently no way to allo…
…w a world which has missing blocks to load - but i have the code in place to allow it i think.
- Loading branch information
Showing
14 changed files
with
204 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* 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.util.List; | ||
import net.minecraft.client.gui.GuiButton; | ||
import net.minecraft.client.gui.GuiScreen; | ||
import net.minecraft.client.resources.I18n; | ||
|
||
public class GuiModItemsMissing extends GuiScreen | ||
{ | ||
private List<String> missingItems; | ||
private String message; | ||
|
||
public GuiModItemsMissing(List<String> items, String message) | ||
{ | ||
this.missingItems = items; | ||
this.message = message; | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
@Override | ||
public void func_73866_w_() | ||
{ | ||
this.field_146292_n.add(new GuiButton(1, this.field_146294_l / 2 - 75, this.field_146295_m - 38, I18n.func_135052_a("gui.done"))); | ||
} | ||
|
||
@Override | ||
protected void func_146284_a(GuiButton p_73875_1_) | ||
{ | ||
if (p_73875_1_.field_146124_l && p_73875_1_.field_146127_k == 1) | ||
{ | ||
FMLClientHandler.instance().showGuiScreen(null); | ||
} | ||
} | ||
@Override | ||
public void func_73863_a(int p_73863_1_, int p_73863_2_, float p_73863_3_) | ||
{ | ||
this.func_146276_q_(); | ||
int offset = 85; | ||
this.func_73732_a(this.field_146289_q, "Forge Mod Loader could load this save", this.field_146294_l / 2, offset, 0xFFFFFF); | ||
offset += 10; | ||
this.func_73732_a(this.field_146289_q, String.format("There are %d unassigned blocks and items in this save", missingItems.size()), this.field_146294_l / 2, offset, 0xFFFFFF); | ||
offset += 10; | ||
this.func_73732_a(this.field_146289_q, "You will not be able to load until they are present again", this.field_146294_l / 2, offset, 0xFFFFFF); | ||
super.func_73863_a(p_73863_1_, p_73863_2_, p_73863_3_); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.