summaryrefslogtreecommitdiff
path: root/java/darkknight/jewelrycraft/client/AbstractTab.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/darkknight/jewelrycraft/client/AbstractTab.java')
-rw-r--r--java/darkknight/jewelrycraft/client/AbstractTab.java74
1 files changed, 0 insertions, 74 deletions
diff --git a/java/darkknight/jewelrycraft/client/AbstractTab.java b/java/darkknight/jewelrycraft/client/AbstractTab.java
deleted file mode 100644
index 6728181..0000000
--- a/java/darkknight/jewelrycraft/client/AbstractTab.java
+++ /dev/null
@@ -1,74 +0,0 @@
-package darkknight.jewelrycraft.client;
-
-import net.minecraft.client.Minecraft;
-import net.minecraft.client.gui.GuiButton;
-import net.minecraft.client.renderer.RenderHelper;
-import net.minecraft.client.renderer.entity.RenderItem;
-import net.minecraft.item.ItemStack;
-import net.minecraft.util.ResourceLocation;
-import org.lwjgl.opengl.*;
-import cpw.mods.fml.relauncher.Side;
-import cpw.mods.fml.relauncher.SideOnly;
-
-/**
- * @author TinkersCOnstruct
- */
-@SideOnly(Side.CLIENT)
-public abstract class AbstractTab extends GuiButton
-{
- ResourceLocation texture = new ResourceLocation("textures/gui/container/creative_inventory/tabs.png");
- ItemStack renderStack;
- RenderItem itemRenderer = new RenderItem();
-
- public AbstractTab(int id, int posX, int posY, ItemStack renderStack)
- {
- super(id, posX, posY, 28, 32, "");
- this.renderStack = renderStack;
- }
-
- @Override
- public void drawButton (Minecraft mc, int mouseX, int mouseY)
- {
- if (this.visible)
- {
- GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
-
- int yTexPos = this.enabled ? 3 : 32;
- int ySize = this.enabled ? 25 : 32;
- int xOffset = this.id == 2 ? 0 : 1;
- int yPos = this.yPosition + (this.enabled ? 3 : 0);
-
- mc.renderEngine.bindTexture(this.texture);
- this.drawTexturedModalRect(this.xPosition, yPos, xOffset * 28, yTexPos, 28, ySize);
-
- RenderHelper.enableGUIStandardItemLighting();
- this.zLevel = 100.0F;
- this.itemRenderer.zLevel = 100.0F;
- GL11.glEnable(GL11.GL_LIGHTING);
- GL11.glEnable(GL12.GL_RESCALE_NORMAL);
- this.itemRenderer.renderItemAndEffectIntoGUI(mc.fontRenderer, mc.renderEngine, renderStack, xPosition + 6, yPosition + 8);
- this.itemRenderer.renderItemOverlayIntoGUI(mc.fontRenderer, mc.renderEngine, renderStack, xPosition + 6, yPosition + 8);
- GL11.glDisable(GL11.GL_LIGHTING);
- this.itemRenderer.zLevel = 0.0F;
- this.zLevel = 0.0F;
- RenderHelper.disableStandardItemLighting();
- }
- }
-
- @Override
- public boolean mousePressed (Minecraft mc, int mouseX, int mouseY)
- {
- boolean inWindow = this.enabled && this.visible && mouseX >= this.xPosition && mouseY >= this.yPosition && mouseX < this.xPosition + this.width && mouseY < this.yPosition + this.height;
-
- if (inWindow)
- {
- this.onTabClicked();
- }
-
- return inWindow;
- }
-
- public abstract void onTabClicked ();
-
- public abstract boolean shouldAddToList ();
-} \ No newline at end of file