Java tutorial
/** * Copyright (c) LambdaCraft Modding Team, 2013 * ??LambdaCraft ? 2013. * http://lambdacraft.half-life.cn/ * * LambdaCraft is open-source. It is distributed under the terms of the * LambdaCraft Open Source License. It grants rights to read, modify, compile * or run the code. It does *NOT* grant the right to redistribute this software * or its modifications in any form, binary or source, except if expressively * granted by the copyright holder. * * LambdaCraft???LambdaCraft?????? * ?? ?????????? */ package cn.lambdacraft.crafting.client.gui; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.StatCollector; import org.lwjgl.opengl.GL11; import cn.lambdacraft.core.prop.ClientProps; import cn.lambdacraft.crafting.block.container.ContainerGeneratorLava; import cn.lambdacraft.crafting.block.tile.TileGeneratorLava; import cn.lambdacraft.crafting.register.CBCBlocks; import cn.liutils.api.client.gui.LIGuiButton; import cn.liutils.api.client.gui.GuiContainerSP; import cn.liutils.api.client.gui.LIGuiPart; import cn.liutils.api.client.gui.IGuiTip; /** * @author WeAthFolD * */ public class GuiGenLava extends GuiContainerSP { TileGeneratorLava te; private class TipEnergy implements IGuiTip { @Override public String getHeadText() { return EnumChatFormatting.RED + StatCollector.translateToLocal("gui.curenergy.name"); } @Override public String getTip() { return te.bucketCnt * TileGeneratorLava.ENERGY_PER_BUCKET + te.currentEnergy + "/420000 EU"; } } public GuiGenLava(TileGeneratorLava gen, InventoryPlayer inv) { super(new ContainerGeneratorLava(gen, inv)); te = gen; this.xSize = 173; this.ySize = 178; } @Override public void initGui() { super.initGui(); LIGuiPart energy = new LIGuiPart("energy", 91, 18, 6, 47); this.addElement(energy); this.setElementTip("energy", new TipEnergy()); } @Override protected void drawGuiContainerForegroundLayer(int par1, int par2) { GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); String guiName = CBCBlocks.genLava.getLocalizedName(); this.fontRenderer.drawString(guiName, 7, 7, 0xff9944); super.drawGuiContainerForegroundLayer(par1, par2); } @Override protected void drawGuiContainerBackgroundLayer(float f, int i, int j) { GL11.glPushMatrix(); GL11.glEnable(GL11.GL_BLEND); GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA); GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); bindTexture(ClientProps.GUI_GENLAVA_PATH); int x = (width - xSize) / 2; int y = (height - ySize) / 2; this.drawTexturedModalRect(x, y, 0, 0, xSize, ySize); int len = 0; len = te.bucketCnt * 47 / te.maxStorage; len += Math.round(2.35F * te.currentEnergy / TileGeneratorLava.ENERGY_PER_BUCKET); this.drawTexturedModalRect(x + 91, y + 65 - len, 173, 59 - len, 6, len); this.drawElements(); GL11.glDisable(GL11.GL_BLEND); GL11.glPopMatrix(); } @Override public void onButtonClicked(LIGuiButton button) { } }