49 lines
1.7 KiB
Java
49 lines
1.7 KiB
Java
package ee3.client.gui;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import cpw.mods.fml.common.Side;
|
|
import cpw.mods.fml.common.asm.SideOnly;
|
|
import ee3.common.container.ContainerPortableCrafting;
|
|
import net.minecraft.src.Container;
|
|
import net.minecraft.src.EntityPlayer;
|
|
import net.minecraft.src.GuiContainer;
|
|
import net.minecraft.src.StatCollector;
|
|
import net.minecraft.src.World;
|
|
|
|
/**
|
|
* GuiPortableCrafting
|
|
*
|
|
* Portable Crafting Gui class
|
|
*
|
|
* @author pahimar
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
*
|
|
*/
|
|
public class GuiPortableCrafting extends GuiContainer {
|
|
|
|
public GuiPortableCrafting(EntityPlayer player, World world, int x, int y, int z) {
|
|
super(new ContainerPortableCrafting(player.inventory, world, x, y, z));
|
|
}
|
|
|
|
/**
|
|
* Draw the foreground layer for the GuiContainer (everything in front of the items)
|
|
*/
|
|
protected void drawGuiContainerForegroundLayer(int par1, int par2) {
|
|
this.fontRenderer.drawString(StatCollector.translateToLocal("container.crafting"), 28, 6, 4210752);
|
|
this.fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, this.ySize - 96 + 2, 4210752);
|
|
}
|
|
|
|
/**
|
|
* Draw the background layer for the GuiContainer (everything behind the items)
|
|
*/
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3) {
|
|
int var4 = this.mc.renderEngine.getTexture("/gui/crafting.png");
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
this.mc.renderEngine.bindTexture(var4);
|
|
int var5 = (this.width - this.xSize) / 2;
|
|
int var6 = (this.height - this.ySize) / 2;
|
|
this.drawTexturedModalRect(var5, var6, 0, 0, this.xSize, this.ySize);
|
|
}
|
|
|
|
}
|