/******************************************************************************* * AbyssalCraft * Copyright (c) 2012 - 2017 Shinoow. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-3.0.txt * * Contributors: * Shinoow - implementation ******************************************************************************/ package com.shinoow.abyssalcraft.client.gui.necronomicon.buttons; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiButton; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) public class ButtonNextPage extends GuiButton { private final boolean field_146151_o; public ButtonNextPage(int par1, int par2, int par3, boolean par4) { super(par1, par2, par3, 23, 13, ""); field_146151_o = par4; } /** * Draws this button to the screen. */ @Override public void drawButton(Minecraft p_146112_1_, int p_146112_2_, int p_146112_3_) { if (visible) { boolean flag = p_146112_2_ >= xPosition && p_146112_3_ >= yPosition && p_146112_2_ < xPosition + width && p_146112_3_ < yPosition + height; GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); p_146112_1_.getTextureManager().bindTexture(new ResourceLocation("abyssalcraft:textures/gui/necronomicon.png")); int k = 0; int l = 192; if (flag) k += 23; if (!field_146151_o) l += 13; drawTexturedModalRect(xPosition, yPosition, k, l, 23, 13); } } }