aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/gui
diff options
context:
space:
mode:
authornextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com>2022-04-24 13:32:23 +0100
committernextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com>2022-04-24 13:32:23 +0100
commit5417c7bd2d43c306863707bb91e7c88a651a696b (patch)
tree102088a05cf8dd9d772ceb619fa521ee952e68c0 /src/main/java/io/polyfrost/oneconfig/gui
parenta11a04cc1161a4ed55b85fa9bec877094f1e8e9d (diff)
downloadOneConfig-5417c7bd2d43c306863707bb91e7c88a651a696b.tar.gz
OneConfig-5417c7bd2d43c306863707bb91e7c88a651a696b.tar.bz2
OneConfig-5417c7bd2d43c306863707bb91e7c88a651a696b.zip
mod cards, loading of mods, fixes, and some more stuff
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/gui')
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/elements/BasicButton.java16
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java13
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/elements/ModCard.java87
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/pages/ModsPage.java24
4 files changed, 107 insertions, 33 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicButton.java b/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicButton.java
index 1de952e..8fc2a63 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicButton.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicButton.java
@@ -83,7 +83,7 @@ public class BasicButton extends BasicElement {
if(thisAlignment == ALIGNMENT_CENTER) {
int middle = x + this.width / 2;
- RenderManager.drawString(vg, text, middle - contentWidth / 2 + (fileNameLeftIco != null ? 28 : 0), y + ((float) height / 2), textColor, fontSize, Fonts.INTER_MEDIUM);
+ RenderManager.drawString(vg, text, middle - contentWidth / 2 + (fileNameLeftIco != null ? 28 : 0), y + ((float) height / 2) + 1, textColor, fontSize, Fonts.INTER_MEDIUM);
if (fileNameLeftIco != null) {
RenderManager.drawImage(vg, fileNameLeftIco, middle - contentWidth / 2, y + 8, 20, 20);
}
@@ -94,9 +94,9 @@ public class BasicButton extends BasicElement {
if(thisAlignment == ALIGNMENT_LEFT) {
if(fileNameLeftIco != null) {
RenderManager.drawImage(vg, fileNameLeftIco, x + 12, y + 8, 20, 20);
- RenderManager.drawString(vg, text, x + 40, y + ((float) height / 2), textColor, fontSize, Fonts.INTER_MEDIUM);
+ RenderManager.drawString(vg, text, x + 40, y + ((float) height / 2) + 1, textColor, fontSize, Fonts.INTER_MEDIUM);
} else {
- RenderManager.drawString(vg, text, x + 12, y + ((float) height / 2), textColor, fontSize, Fonts.INTER_MEDIUM);
+ RenderManager.drawString(vg, text, x + 12, y + ((float) height / 2) + 1, textColor, fontSize, Fonts.INTER_MEDIUM);
}
if(fileNameRightIco != null) {
RenderManager.drawImage(vg, fileNameRightIco, x + width - 28, y + 8, 20, 20);
@@ -108,11 +108,13 @@ public class BasicButton extends BasicElement {
currentColor = OneConfigConfig.TRANSPARENT;
return;
}
- currentColor = ColorUtils.getColor(currentColor, colorPalette, hovered, clicked);
- if(toggleable && toggled) {
- currentColor = OneConfigConfig.BLUE_600;
+ if(!toggleable) {
+ currentColor = ColorUtils.getColor(currentColor, colorPalette, hovered, clicked);
+ } else {
+ if (toggled) {
+ currentColor = ColorUtils.smoothColor(currentColor, OneConfigConfig.GRAY_500, OneConfigConfig.BLUE_600, true, 30f);
+ } else currentColor = ColorUtils.getColor(currentColor, colorPalette, hovered, clicked);
}
-
}
}
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java b/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java
index 68e25f6..dd72217 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/elements/BasicElement.java
@@ -2,14 +2,9 @@ package io.polyfrost.oneconfig.gui.elements;
import io.polyfrost.oneconfig.lwjgl.RenderManager;
import io.polyfrost.oneconfig.utils.ColorUtils;
-import net.minecraft.client.Minecraft;
-import net.minecraft.client.gui.Gui;
-import net.minecraft.util.ChatComponentText;
+import io.polyfrost.oneconfig.utils.InputUtils;
import org.lwjgl.input.Mouse;
-import java.lang.reflect.Method;
-import java.util.function.Consumer;
-
public class BasicElement {
protected int width, height;
protected int colorPalette;
@@ -45,12 +40,8 @@ public class BasicElement {
}
public void update(int x, int y) {
- int mouseX = Mouse.getX();
- int mouseY = Minecraft.getMinecraft().displayHeight - Math.abs(Mouse.getY());
- int buttonRight = x + width;
- int buttonBottom = y + height;
+ hovered = InputUtils.isAreaHovered(x - hitBoxX, y - hitBoxY, width + hitBoxX, height + hitBoxY);
- hovered = mouseX > x - hitBoxX && mouseY > y - hitBoxY && mouseX < buttonRight + hitBoxX && mouseY < buttonBottom + hitBoxY;
if (hovered) {
if (Mouse.isButtonDown(0) && !clicked) {
toggled = !toggled;
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/elements/ModCard.java b/src/main/java/io/polyfrost/oneconfig/gui/elements/ModCard.java
index dd4fe87..38304e4 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/elements/ModCard.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/elements/ModCard.java
@@ -1,37 +1,104 @@
package io.polyfrost.oneconfig.gui.elements;
import io.polyfrost.oneconfig.config.OneConfigConfig;
+import io.polyfrost.oneconfig.config.data.ModData;
import io.polyfrost.oneconfig.lwjgl.RenderManager;
import io.polyfrost.oneconfig.lwjgl.font.Fonts;
+import io.polyfrost.oneconfig.utils.ColorUtils;
+import io.polyfrost.oneconfig.utils.InputUtils;
+import net.minecraft.client.Minecraft;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
+import org.lwjgl.nanovg.NanoVG;
public class ModCard extends BasicElement {
- private final String modName, iconPath;
+ private final String iconPath;
+ private final ModData modData;
+ private final BasicElement favoriteHitbox = new BasicElement(32, 32, -2, true);
private boolean active, disabled, favorite;
+ private int colorGray = OneConfigConfig.GRAY_600;
+ private int colorPrimary = OneConfigConfig.BLUE_600;
+ private boolean isHoveredMain = false;
- public ModCard(@NotNull String modName, @Nullable String iconPath, boolean active, boolean disabled, boolean favorite) {
- super(224, 119, true);
- this.modName = modName;
+ public ModCard(@NotNull ModData mod, @Nullable String iconPath, boolean active, boolean disabled, boolean favorite) {
+ super(244, 119, false);
+ this.modData = mod;
this.iconPath = iconPath;
this.active = active;
+ toggled = active;
this.disabled = disabled;
this.favorite = favorite;
}
@Override
public void draw(long vg, int x, int y) {
- RenderManager.drawRoundedRect(vg, x, y, width, 100, OneConfigConfig.GRAY_600, 12f);
- RenderManager.drawRoundedRect(vg, x, y + 75, width, 32, OneConfigConfig.BLUE_600, 12f);
- RenderManager.drawRect(vg, x, y + 75, width, 12, OneConfigConfig.BLUE_600);
+ if(disabled) NanoVG.nvgGlobalAlpha(vg, 0.5f);
+ RenderManager.drawRoundedRectVaried(vg, x, y, width, 87, colorGray, 12f, 12f, 0f, 0f);
+ RenderManager.drawRoundedRectVaried(vg, x, y + 87, width, 32, colorPrimary, 0f, 0f, 12f, 12f);
+ RenderManager.drawLine(vg, x, y + 86, x + width, y + 86, 2,OneConfigConfig.GRAY_300);
+ //RenderManager.drawRect(vg, x, y + 87, width, 12, colorPrimary);
if(iconPath != null) {
RenderManager.drawImage(vg, iconPath, x, y, width, 87);
} else {
- RenderManager.drawImage(vg, "assets/oneconfig/textures/box.png", x + 98, y + 19, 40, 40);
+ RenderManager.drawImage(vg, "/assets/oneconfig/textures/box.png", x + 98, y + 19, 48, 48);
}
- RenderManager.drawString(vg, modName, x + 12, y + 92, OneConfigConfig.WHITE, 14f, Fonts.INTER_MEDIUM);
+ //favoriteHitbox.draw(vg, x + 212, y + 87);
+ favoriteHitbox.update(x + 212, y + 87);
+ favoriteHitbox.currentColor = ColorUtils.getColor(favoriteHitbox.currentColor, favoriteHitbox.colorPalette, favoriteHitbox.hovered, favoriteHitbox.clicked);
+ RenderManager.drawRoundedRectVaried(vg, x + 212, y + 87, 32, 32, favoriteHitbox.currentColor, 0f, 0f, 12f, 0f);
+ favorite = favoriteHitbox.isToggled();
+ RenderManager.drawString(vg, modData.name, x + 12, y + 102, OneConfigConfig.WHITE, 14f, Fonts.INTER_MEDIUM);
if(favorite) {
- // TODO
+ RenderManager.drawImage(vg, "/assets/oneconfig/textures/love.png", x + 220, y + 95, 16, 16);
+ } else {
+ RenderManager.drawImage(vg, "/assets/oneconfig/textures/love_empty.png", x + 220, y + 95, 16, 16);
+ }
+ super.update(x, y);
+ isHoveredMain = InputUtils.isAreaHovered(x, y, width, 87);
+ boolean isHoveredSecondary = InputUtils.isAreaHovered(x, y + 87, width - 32, 32) && !disabled;
+ colorGray = ColorUtils.getColor(colorGray, 0, isHoveredMain, clicked && isHoveredMain);
+ if(active && !disabled) {
+ colorPrimary = ColorUtils.getColor(colorPrimary, 1, isHoveredSecondary, clicked && isHoveredSecondary);
+ } else colorPrimary = ColorUtils.smoothColor(colorPrimary, OneConfigConfig.GRAY_500, OneConfigConfig.GRAY_400, isHoveredSecondary, 20f);
+
+ if(clicked && isHoveredMain) {
+ if(!active) toggled = false;
+ }
+ if(clicked && favoriteHitbox.hovered) toggled = false;
+ if(clicked && !isHoveredSecondary && active) toggled = true;
+ if(!active & disabled) toggled = false;
+ //RenderManager.drawString(vg, "active=" + active, x + 300, y + 12, OneConfigConfig.WHITE, 12f, Fonts.INTER_MEDIUM); // TODO remove debug stuff
+ //RenderManager.drawString(vg, "disabled=" + disabled, x + 300, y + 24, OneConfigConfig.WHITE, 12f, Fonts.INTER_MEDIUM);
+ //RenderManager.drawString(vg, "favorite=" + favorite, x + 300, y + 36, OneConfigConfig.WHITE, 12f, Fonts.INTER_MEDIUM);
+
+
+ active = toggled;
+ NanoVG.nvgGlobalAlpha(vg, 1f);
+ }
+
+ public void onClick() {
+ if(isHoveredMain) {
+ Minecraft.getMinecraft().thePlayer.sendChatMessage("you thought you opened the config for " + modData.name + " but actually it doesnt exist");
}
}
+
+ public ModData getModData() {
+ return modData;
+ }
+
+ public boolean isDisabled() {
+ return disabled;
+ }
+
+ public boolean isActive() {
+ return active;
+ }
+
+ public void setDisabled(boolean disabled) {
+ this.disabled = disabled;
+ }
+
+ public boolean isFavorite() {
+ return favorite;
+ }
}
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/pages/ModsPage.java b/src/main/java/io/polyfrost/oneconfig/gui/pages/ModsPage.java
index 97751d6..856b2f3 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/pages/ModsPage.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/pages/ModsPage.java
@@ -1,10 +1,12 @@
package io.polyfrost.oneconfig.gui.pages;
-import io.polyfrost.oneconfig.config.OneConfigConfig;
+import io.polyfrost.oneconfig.OneConfig;
+import io.polyfrost.oneconfig.config.data.ModData;
import io.polyfrost.oneconfig.gui.elements.BasicButton;
import io.polyfrost.oneconfig.gui.elements.ModCard;
-import io.polyfrost.oneconfig.lwjgl.RenderManager;
-import io.polyfrost.oneconfig.lwjgl.font.Fonts;
+
+import java.util.ArrayList;
+import java.util.List;
public class ModsPage extends Page {
private final BasicButton allBtn = new BasicButton(49, 40, "All", null, null, 0, BasicButton.ALIGNMENT_CENTER, true);
@@ -16,10 +18,13 @@ public class ModsPage extends Page {
private final BasicButton utilBtn = new BasicButton(104, 40, "Utility", null, null, 0, BasicButton.ALIGNMENT_CENTER, true);
private final BasicButton customBtn = new BasicButton(104, 40, "Custom", null, null, 0, BasicButton.ALIGNMENT_CENTER, true);
- private final ModCard exCard = new ModCard("Placeholder Mod Name", null, true, false, false);
+ private final List<ModCard> modCards = new ArrayList<>();
public ModsPage() {
super("Mods");
+ for(ModData modData : OneConfig.loadedMods) {
+ modCards.add(new ModCard(modData, null, true, false, false));
+ }
}
public void draw(long vg, int x, int y) {
@@ -32,7 +37,16 @@ public class ModsPage extends Page {
utilBtn.draw(vg, x + 632, y + 16);
customBtn.draw(vg, x + 748, y + 16);
- exCard.draw(vg, x + 16, y + 72);
+ int iX = x + 16;
+ int iY = y + 72;
+ for(ModCard modCard : modCards) {
+ modCard.draw(vg, iX, iY);
+ iX += 260;
+ if(iX > x + 796) {
+ iX = x + 16;
+ iY += 135;
+ }
+ }
}
}