blob: bb3364941ee465323195d58861d4206a5906605a [file] [log] [blame] [raw]
package li.cil.oc.client.gui
import cpw.mods.fml.relauncher.{SideOnly, Side}
import net.minecraft.client.Minecraft
import net.minecraft.client.gui.GuiButton
import net.minecraft.client.renderer.Tessellator
import net.minecraft.util.ResourceLocation
import org.lwjgl.opengl.GL11
@SideOnly(Side.CLIENT)
class ImageButton(id: Int, x: Int, y: Int, w: Int, h: Int, val image: ResourceLocation) extends GuiButton(id, x, y, w, h, null) {
var toggled = false
override def drawButton(mc: Minecraft, mouseX: Int, mouseY: Int) {
if (drawButton) {
mc.renderEngine.bindTexture(image)
GL11.glColor4f(1, 1, 1, 1)
field_82253_i = mouseX >= xPosition && mouseY >= yPosition && mouseX < xPosition + width && mouseY < yPosition + height
val x0 = xPosition
val x1 = xPosition + width
val y0 = yPosition
val y1 = yPosition + height
val u0 = if (toggled) 0.5 else 0
val u1 = u0 + 0.5
val v0 = if (getHoverState(field_82253_i) == 2) 0.5 else 0
val v1 = v0 + 0.5
val t = Tessellator.instance
t.startDrawingQuads()
t.addVertexWithUV(x0, y1, zLevel, u0, v1)
t.addVertexWithUV(x1, y1, zLevel, u1, v1)
t.addVertexWithUV(x1, y0, zLevel, u1, v0)
t.addVertexWithUV(x0, y0, zLevel, u0, v0)
t.draw()
}
}
}