summaryrefslogtreecommitdiff
path: root/java/darkknight/jewelrycraft/container/GuiRectangle.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-02-21 21:31:16 +0000
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-02-21 21:31:16 +0000
commit420faddca46e70e3a70def168fb4e452ef193b0d (patch)
tree247e334012e4bf9e4fa6d42718bf601ce6bd42d9 /java/darkknight/jewelrycraft/container/GuiRectangle.java
parent3f4c717de5ebc9b942d65ae45ac87c43bdf8a31b (diff)
Added just a butt ton of stuff, also thanks to pau101 for helping me with the Hand Pedestal animation :)
Diffstat (limited to 'java/darkknight/jewelrycraft/container/GuiRectangle.java')
-rw-r--r--java/darkknight/jewelrycraft/container/GuiRectangle.java48
1 files changed, 40 insertions, 8 deletions
diff --git a/java/darkknight/jewelrycraft/container/GuiRectangle.java b/java/darkknight/jewelrycraft/container/GuiRectangle.java
index 3ecf20c..50b7cd5 100644
--- a/java/darkknight/jewelrycraft/container/GuiRectangle.java
+++ b/java/darkknight/jewelrycraft/container/GuiRectangle.java
@@ -1,19 +1,22 @@
package darkknight.jewelrycraft.container;
import java.util.Arrays;
-
import net.minecraft.item.ItemStack;
-
import darkknight.jewelrycraft.client.GuiGuide;
public class GuiRectangle
{
-
private int x;
private int y;
private int w;
private int h;
+ /**
+ * @param x
+ * @param y
+ * @param w
+ * @param h
+ */
public GuiRectangle(int x, int y, int w, int h)
{
this.x = x;
@@ -22,42 +25,71 @@ public class GuiRectangle
this.h = h;
}
+ /**
+ * @param gui
+ * @param mouseX
+ * @param mouseY
+ * @return
+ */
public boolean inRect(GuiGuide gui, int mouseX, int mouseY)
{
mouseX -= gui.getLeft();
mouseY -= gui.getTop();
-
return x <= mouseX && mouseX <= x + w && y <= mouseY && mouseY <= y + h;
}
+ /**
+ * @param x
+ */
public void setX(int x)
{
this.x = x;
}
+ /**
+ * @param y
+ */
public void setY(int y)
{
this.y = y;
}
+ /**
+ * @param gui
+ * @param srcX
+ * @param srcY
+ */
public void draw(GuiGuide gui, int srcX, int srcY)
{
gui.drawTexturedModalRect(gui.getLeft() + x, gui.getTop() + y, srcX, srcY, w, h);
}
+ /**
+ * @param gui
+ * @param srcX
+ * @param srcY
+ * @param width
+ * @param height
+ */
public void draw(GuiGuide gui, int srcX, int srcY, int width, int height)
{
gui.drawTexturedModalRect(gui.getLeft() + x, gui.getTop() + y, srcX, srcY, width, height);
}
+ /**
+ * @param gui
+ * @param mouseX
+ * @param mouseY
+ * @param str
+ */
public void drawString(GuiGuide gui, int mouseX, int mouseY, String str)
{
- if (inRect(gui, mouseX, mouseY))
- {
- gui.drawHoverString(Arrays.asList(str.split("\n")), mouseX - gui.getLeft(), mouseY - gui.getTop());
- }
+ if (inRect(gui, mouseX, mouseY)) gui.drawHoverString(Arrays.asList(str.split("\n")), mouseX - gui.getLeft(), mouseY - gui.getTop());
}
+ /**
+ * @return
+ */
public ItemStack getIcon()
{
return null;