ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/booklet/page/PageFurnace.java

109 lines
4.1 KiB
Java
Raw Normal View History

2015-08-29 23:01:13 +02:00
/*
* This file ("PageFurnace.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 23:01:13 +02:00
*/
2015-12-30 22:02:15 +01:00
package de.ellpeck.actuallyadditions.booklet.page;
2015-08-29 23:01:13 +02:00
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
2015-12-30 22:02:15 +01:00
import de.ellpeck.actuallyadditions.booklet.GuiBooklet;
import de.ellpeck.actuallyadditions.proxy.ClientProxy;
import de.ellpeck.actuallyadditions.util.AssetUtil;
import de.ellpeck.actuallyadditions.util.ModUtil;
import de.ellpeck.actuallyadditions.util.StringUtil;
import de.ellpeck.actuallyadditions.util.Util;
2015-08-29 23:01:13 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.FurnaceRecipes;
import net.minecraft.util.EnumChatFormatting;
2015-08-29 23:01:13 +02:00
import java.util.Map;
public class PageFurnace extends BookletPage{
private final ItemStack result;
private final ItemStack input;
2015-08-29 23:01:13 +02:00
2015-10-03 10:19:40 +02:00
public PageFurnace(int id, ItemStack result){
this(id, null, result);
}
public PageFurnace(int id, ItemStack input, ItemStack result){
2015-08-29 23:01:13 +02:00
super(id);
this.result = result;
this.input = input;
2015-10-30 21:42:14 +01:00
this.addToPagesWithItemStackData();
2015-08-29 23:01:13 +02:00
}
2015-10-02 16:48:01 +02:00
2015-12-01 19:48:09 +01:00
@Override
public ItemStack[] getItemStacksForPage(){
return this.result == null ? new ItemStack[0] : new ItemStack[]{this.result};
}
2015-08-29 23:01:13 +02:00
@Override
@SideOnly(Side.CLIENT)
2015-10-04 13:21:07 +02:00
public void renderPre(GuiBooklet gui, int mouseX, int mouseY, int ticksElapsed, boolean mousePressed){
if(this.input != null || this.getInputForOutput(this.result) != null){
gui.mc.getTextureManager().bindTexture(ClientProxy.bulletForMyValentine ? GuiBooklet.resLocValentine : GuiBooklet.resLoc);
2015-08-29 23:01:13 +02:00
gui.drawTexturedModalRect(gui.guiLeft+37, gui.guiTop+20, 0, 180, 60, 60);
}
}
@SuppressWarnings("unchecked")
@Override
@SideOnly(Side.CLIENT)
2015-10-04 13:21:07 +02:00
public void render(GuiBooklet gui, int mouseX, int mouseY, int ticksElapsed, boolean mousePressed){
ItemStack input = this.input != null ? this.input : this.getInputForOutput(this.result);
2015-08-29 23:01:13 +02:00
if(input == null){
StringUtil.drawSplitString(gui.mc.fontRenderer, EnumChatFormatting.DARK_RED+StringUtil.localize("booklet."+ModUtil.MOD_ID_LOWER+".recipeDisabled"), gui.guiLeft+14, gui.guiTop+15, 115, 0, false);
2015-08-29 23:01:13 +02:00
}
2015-08-31 11:48:15 +02:00
else{
String strg = "Furnace Recipe";
gui.mc.fontRenderer.drawString(strg, gui.guiLeft+gui.xSize/2-gui.mc.fontRenderer.getStringWidth(strg)/2, gui.guiTop+10, 0);
2015-08-31 11:48:15 +02:00
}
2015-08-29 23:01:13 +02:00
String text = gui.currentEntrySet.page.getText();
if(text != null && !text.isEmpty()){
StringUtil.drawSplitString(gui.mc.fontRenderer, text, gui.guiLeft+14, gui.guiTop+100, 115, 0, false);
2015-08-30 04:02:28 +02:00
}
2015-08-29 23:01:13 +02:00
if(input != null){
for(int i = 0; i < 2; i++){
for(int x = 0; x < 2; x++){
ItemStack stack = x == 0 ? input : this.result;
2015-10-03 10:16:18 +02:00
if(stack.getItemDamage() == Util.WILDCARD){
stack.setItemDamage(0);
}
2015-08-29 23:01:13 +02:00
boolean tooltip = i == 1;
int xShow = gui.guiLeft+37+1+x*42;
int yShow = gui.guiTop+20+21;
2015-08-29 23:01:13 +02:00
if(!tooltip){
2015-12-22 14:55:10 +01:00
AssetUtil.renderStackToGui(stack, xShow, yShow, 1.0F);
2015-08-29 23:01:13 +02:00
}
else{
if(mouseX >= xShow && mouseX <= xShow+16 && mouseY >= yShow && mouseY <= yShow+16){
2015-10-04 13:21:07 +02:00
this.renderTooltipAndTransfer(gui, stack, mouseX, mouseY, x == 0, mousePressed);
2015-08-29 23:01:13 +02:00
}
}
}
}
}
}
private ItemStack getInputForOutput(ItemStack output){
for(Object o : FurnaceRecipes.smelting().getSmeltingList().entrySet()){
ItemStack stack = (ItemStack)((Map.Entry)o).getValue();
2015-10-03 10:16:18 +02:00
if(stack.isItemEqual(output)){
return (ItemStack)((Map.Entry)o).getKey();
}
2015-08-29 23:01:13 +02:00
}
return null;
}
}