aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java')
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java107
1 files changed, 0 insertions, 107 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java b/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java
deleted file mode 100644
index dd3956c..0000000
--- a/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java
+++ /dev/null
@@ -1,107 +0,0 @@
-package io.polyfrost.oneconfig.gui.elements;
-
-import io.polyfrost.oneconfig.lwjgl.RenderManager;
-import io.polyfrost.oneconfig.utils.ColorUtils;
-import io.polyfrost.oneconfig.utils.InputUtils;
-
-public class BasicElement {
- protected int width, height;
- protected int colorPalette;
- protected int hitBoxX, hitBoxY;
- protected final boolean hoverFx;
- protected boolean hovered = false;
- protected boolean clicked = false;
- protected boolean toggled = false;
- protected boolean disabled = false;
- protected int currentColor;
-
- public BasicElement(int width, int height, int colorPalette, boolean hoverFx) {
- this.height = height;
- this.width = width;
- this.colorPalette = colorPalette;
- this.hoverFx = hoverFx;
- }
-
- public BasicElement(int width, int height, boolean hoverFx) {
- this.height = height;
- this.width = width;
- this.colorPalette = -1;
- this.hoverFx = hoverFx;
- }
-
-
- public void draw(long vg, int x, int y) {
- RenderManager.drawRectangle(vg, x, y, width, height, currentColor);
-
- update(x, y);
- if (hoverFx) {
- currentColor = ColorUtils.getColor(currentColor, colorPalette, hovered, clicked);
- }
- }
-
- public void update(int x, int y) {
- if(disabled) {
- hovered = false;
- clicked = false;
- return;
- }
- hovered = InputUtils.isAreaHovered(x - hitBoxX, y - hitBoxY, width + hitBoxX, height + hitBoxY);
- clicked = InputUtils.isClicked() && hovered;
-
- if (hovered) {
- if (clicked) {
- toggled = !toggled;
- onClick();
- }
- }
- }
-
-
- public void onClick() {
-
- }
-
- public void setCustomHitbox(int x, int y) {
- hitBoxX = x;
- hitBoxY = y;
- }
-
- public void setWidth(int width) {
- this.width = width;
- }
-
- public void setHeight(int height) {
- this.height = height;
- }
-
- public void setColorPalette(int colorPalette) {
- this.colorPalette = colorPalette;
- }
-
- public int getWidth() {
- return width;
- }
-
- public int getHeight() {
- return height;
- }
-
- public boolean isHovered() {
- return hovered;
- }
-
- public boolean isClicked() {
- return clicked;
- }
-
- public boolean isToggled() {
- return toggled;
- }
-
- public boolean isDisabled() {
- return disabled;
- }
- public void disable(boolean state) {
- disabled = state;
- }
-}