From ae76821190cc35866402b860f52c0aa37c3a7e7e Mon Sep 17 00:00:00 2001 From: zelophed Date: Mon, 3 May 2021 16:14:58 +0200 Subject: [PATCH] more changes to color and theme --- .../foundation/config/ui/ConfigScreen.java | 7 ++- .../config/ui/ConfigScreenList.java | 2 +- .../foundation/config/ui/ConfigTextField.java | 16 ----- .../config/ui/SubMenuConfigScreen.java | 3 +- .../config/ui/entries/BooleanEntry.java | 11 ++-- .../config/ui/entries/EnumEntry.java | 16 ++--- .../config/ui/entries/NumberEntry.java | 5 +- .../create/foundation/gui/AllGuiTextures.java | 12 +++- .../simibubi/create/foundation/gui/Theme.java | 27 ++++++-- .../create/foundation/gui/UIRenderHelper.java | 31 +++++++++ .../foundation/gui/widgets/BoxWidget.java | 2 +- .../ponder/NavigatableSimiScreen.java | 6 +- .../foundation/ponder/PonderProgressBar.java | 59 ++++-------------- .../create/foundation/ponder/PonderUI.java | 41 +++++++----- .../ponder/content/PonderIndexScreen.java | 9 +-- .../ponder/content/PonderTagScreen.java | 33 +++++----- .../ponder/elements/TextWindowElement.java | 2 +- .../foundation/ponder/ui/ChapterLabel.java | 5 +- .../foundation/utility/ColorHelper.java | 5 ++ .../assets/create/textures/gui/widgets.png | Bin 1972 -> 3307 bytes 20 files changed, 155 insertions(+), 137 deletions(-) diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreen.java b/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreen.java index 4f52cf885..fdcf71eff 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreen.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreen.java @@ -10,7 +10,6 @@ import javax.annotation.Nonnull; import org.apache.commons.lang3.StringUtils; import com.mojang.blaze3d.matrix.MatrixStack; -import com.mojang.blaze3d.systems.RenderSystem; import com.simibubi.create.AllBlocks; import com.simibubi.create.content.contraptions.relays.elementary.CogWheelBlock; import com.simibubi.create.foundation.gui.AbstractSimiScreen; @@ -61,7 +60,7 @@ public abstract class ConfigScreen extends AbstractSimiScreen { @Override protected void renderWindowBackground(MatrixStack ms, int mouseX, int mouseY, float partialTicks) { - RenderSystem.disableDepthTest(); + //RenderSystem.disableDepthTest(); if (this.client != null && this.client.world != null) { fill(ms, 0, 0, this.width, this.height, 0xb0_282c34); } else { @@ -104,7 +103,9 @@ public abstract class ConfigScreen extends AbstractSimiScreen { } public static String toHumanReadable(String key) { - String s = Arrays.stream(StringUtils.splitByCharacterTypeCamelCase(key)).map(StringUtils::capitalize).collect(Collectors.joining(" ")); + String s = key.replaceAll("_", " "); + s = Arrays.stream(StringUtils.splitByCharacterTypeCamelCase(s)).map(StringUtils::capitalize).collect(Collectors.joining(" ")); + s = s.replaceAll("\\s\\s+", " "); return s; } diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreenList.java b/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreenList.java index 01213761e..71b6680ff 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreenList.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/ConfigScreenList.java @@ -133,7 +133,7 @@ public class ConfigScreenList extends ExtendedList { public LabeledEntry(String label) { this.label = new TextStencilElement(Minecraft.getInstance().fontRenderer, label); - this.label.withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height / 2, height, width, Theme.p(Theme.Key.TEXT_ACCENT))); + this.label.withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height / 2, height, width, Theme.p(Theme.Key.TEXT_ACCENT_STRONG))); labelTooltip = new ArrayList<>(); } diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/ConfigTextField.java b/src/main/java/com/simibubi/create/foundation/config/ui/ConfigTextField.java index a0dc991ab..efa5d886d 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/ConfigTextField.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/ConfigTextField.java @@ -1,7 +1,5 @@ package com.simibubi.create.foundation.config.ui; -import com.mojang.blaze3d.matrix.MatrixStack; - import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.widget.TextFieldWidget; import net.minecraft.util.text.StringTextComponent; @@ -17,20 +15,6 @@ public class ConfigTextField extends TextFieldWidget { this.unit = unit; } - @Override - public void renderButton(MatrixStack ms, int mouseX, int mouseY, float partialTicks) { - super.renderButton(ms, mouseX, mouseY, partialTicks); - - if (unit == null || unit.isEmpty()) - return; - - int unitWidth = font.getStringWidth(unit); - if (this.font.getStringWidth(getText()) > (getAdjustedWidth() - unitWidth)) - return; - - font.draw(ms, unit, x + getAdjustedWidth() - unitWidth, this.y + (this.height - 8) / 2, 0xcc_aaaaaa); - } - @Override public void setFocused2(boolean focus) { super.setFocused2(focus); diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/SubMenuConfigScreen.java b/src/main/java/com/simibubi/create/foundation/config/ui/SubMenuConfigScreen.java index 35a92aff8..7bd018c84 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/SubMenuConfigScreen.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/SubMenuConfigScreen.java @@ -117,7 +117,6 @@ public class SubMenuConfigScreen extends ConfigScreen { widgets.clear(); super.init(); - //leave 40px on either side and dont be wider than 500px listWidth = Math.min(width - 80, 300); int yCenter = height / 2; @@ -255,7 +254,7 @@ public class SubMenuConfigScreen extends ConfigScreen { stencil.withElementRenderer((ms, w, h, alpha) -> UIRenderHelper.angledGradient(ms, 90, 8, 0, 16, 16, green)); serverLocked.withBorderColors(green); serverLocked.getToolTip().add(new StringTextComponent("Unlocked").formatted(TextFormatting.BOLD)); - serverLocked.getToolTip().addAll(TooltipHelper.cutStringTextComponent("You have enough permissions to edit the server config. Changes you make here will be synced with the server once you saved them.", TextFormatting.GRAY, TextFormatting.GRAY)); + serverLocked.getToolTip().addAll(TooltipHelper.cutStringTextComponent("You have enough permissions to edit the server config. Changes you make here will be synced with the server when you save them.", TextFormatting.GRAY, TextFormatting.GRAY)); } widgets.add(serverLocked); diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/entries/BooleanEntry.java b/src/main/java/com/simibubi/create/foundation/config/ui/entries/BooleanEntry.java index d7b9d6a98..071fa001f 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/entries/BooleanEntry.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/entries/BooleanEntry.java @@ -3,6 +3,7 @@ package com.simibubi.create.foundation.config.ui.entries; import com.mojang.blaze3d.matrix.MatrixStack; import com.simibubi.create.foundation.gui.AllIcons; import com.simibubi.create.foundation.gui.RenderElement; +import com.simibubi.create.foundation.gui.Theme; import com.simibubi.create.foundation.gui.UIRenderHelper; import com.simibubi.create.foundation.gui.widgets.BoxWidget; @@ -26,14 +27,12 @@ public class BooleanEntry extends ValueEntry { // .withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height/2, height, width, 0xff_f78888, 0xff_cc2020)); enabled = AllIcons.I_CONFIRM.asStencil() - .withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height / 2, - height, width, 0xff_88f788, 0xff_20cc20)) - .at(10, 0); + .withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height / 2, height, width, Theme.p(Theme.Key.BUTTON_SUCCESS))) + .at(10, 0); disabled = AllIcons.I_DISABLE.asStencil() - .withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height / 2, - height, width, 0xff_f78888, 0xff_cc2020)) - .at(10, 0); + .withElementRenderer((ms, width, height, alpha) -> UIRenderHelper.angledGradient(ms, 0, 0, height / 2, height, width, Theme.p(Theme.Key.BUTTON_FAIL))) + .at(10, 0); button = new BoxWidget().showingElement(enabled) .withCallback(() -> setValue(!getValue())); diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/entries/EnumEntry.java b/src/main/java/com/simibubi/create/foundation/config/ui/entries/EnumEntry.java index 46f932d00..7e44eb10f 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/entries/EnumEntry.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/entries/EnumEntry.java @@ -2,6 +2,7 @@ package com.simibubi.create.foundation.config.ui.entries; import com.mojang.blaze3d.matrix.MatrixStack; import com.simibubi.create.foundation.gui.AllIcons; +import com.simibubi.create.foundation.gui.BoxElement; import com.simibubi.create.foundation.gui.DelegatedStencilElement; import com.simibubi.create.foundation.gui.TextStencilElement; import com.simibubi.create.foundation.gui.Theme; @@ -13,7 +14,7 @@ import net.minecraftforge.common.ForgeConfigSpec; public class EnumEntry extends ValueEntry> { - protected static final int cycleWidth = 34;// including 2px offset on either side + protected static final int cycleWidth = 34; protected TextStencilElement valueText; protected BoxWidget cycleLeft; @@ -85,13 +86,12 @@ public class EnumEntry extends ValueEntry> { cycleRight.y = y + 10; cycleRight.render(ms, mouseX, mouseY, partialTicks); - BoxWidget boxWidget = new BoxWidget(0, 0, 10, 10); - boxWidget.x = cycleLeft.x + cycleWidth + 4; - boxWidget.y = cycleLeft.y + 3; - boxWidget.withBorderColors(java.awt.Color.black, java.awt.Color.black); - boxWidget.active = false; - boxWidget.render(ms, mouseX, mouseY, partialTicks); - + new BoxElement() + .withBackground(0) + .flatBorder(0) + .withBounds(10, 10) + .at(cycleLeft.x + cycleWidth + 4, cycleLeft.y + 3) + .render(ms); } @Override diff --git a/src/main/java/com/simibubi/create/foundation/config/ui/entries/NumberEntry.java b/src/main/java/com/simibubi/create/foundation/config/ui/entries/NumberEntry.java index 5b4f392ae..315d147df 100644 --- a/src/main/java/com/simibubi/create/foundation/config/ui/entries/NumberEntry.java +++ b/src/main/java/com/simibubi/create/foundation/config/ui/entries/NumberEntry.java @@ -40,6 +40,7 @@ public abstract class NumberEntry extends ValueEntry { super(label, value, spec); textField = new ConfigTextField(Minecraft.getInstance().fontRenderer, 0, 0, 200, 20, unit); textField.setText(String.valueOf(getValue())); + textField.setTextColor(Theme.i(Theme.Key.TEXT)); Object range = spec.getRange(); try { @@ -73,11 +74,11 @@ public abstract class NumberEntry extends ValueEntry { if (!spec.test(number)) throw new IllegalArgumentException(); - textField.setTextColor(0xff_20cc20); + textField.setTextColor(Theme.i(Theme.Key.TEXT)); setValue(number); } catch (IllegalArgumentException ignored) { - textField.setTextColor(0xff_cc2020); + textField.setTextColor(Theme.i(Theme.Key.BUTTON_FAIL)); } }); diff --git a/src/main/java/com/simibubi/create/foundation/gui/AllGuiTextures.java b/src/main/java/com/simibubi/create/foundation/gui/AllGuiTextures.java index 0048dae4f..4a0abdcab 100644 --- a/src/main/java/com/simibubi/create/foundation/gui/AllGuiTextures.java +++ b/src/main/java/com/simibubi/create/foundation/gui/AllGuiTextures.java @@ -1,7 +1,10 @@ package com.simibubi.create.foundation.gui; +import java.awt.Color; + import com.mojang.blaze3d.matrix.MatrixStack; import com.simibubi.create.Create; + import net.minecraft.client.Minecraft; import net.minecraft.client.gui.AbstractGui; import net.minecraft.util.ResourceLocation; @@ -79,8 +82,8 @@ public enum AllGuiTextures implements IScreenRenderable { INDICATOR_YELLOW("widgets.png", 54, 18, 18, 6), INDICATOR_RED("widgets.png", 72, 18, 18, 6), - SPEECH_TOOLTIP("widgets.png", 0, 24, 8, 8), - SPEECH_TOOLTIP_HIGHLIGHT("widgets.png", 8, 24, 8, 8), + SPEECH_TOOLTIP_BACKGROUND("widgets.png", 0, 24, 8, 8), + SPEECH_TOOLTIP_COLOR("widgets.png", 8, 24, 8, 8), // PlacementIndicator PLACEMENT_INDICATOR_SHEET("placement_indicator.png", 0, 0, 16, 256); @@ -122,4 +125,9 @@ public enum AllGuiTextures implements IScreenRenderable { bind(); screen.drawTexture(ms, x, y, startX, startY, width, height); } + + public void draw(MatrixStack ms, int x, int y, Color c) { + bind(); + UIRenderHelper.drawColoredTexture(ms, c, x, y, startX, startY, width, height); + } } diff --git a/src/main/java/com/simibubi/create/foundation/gui/Theme.java b/src/main/java/com/simibubi/create/foundation/gui/Theme.java index 1ad8b928f..0f6f0155e 100644 --- a/src/main/java/com/simibubi/create/foundation/gui/Theme.java +++ b/src/main/java/com/simibubi/create/foundation/gui/Theme.java @@ -66,14 +66,21 @@ public class Theme { put(Key.BUTTON_FAIL, new Color(0xcc_f78888, true), new Color(0xcc_cc2020, true)); put(Key.TEXT, new Color(0xff_eeeeee), new Color(0xff_a3a3a3)); put(Key.TEXT_DARKER, new Color(0xff_a3a3a3), new Color(0xff_808080)); - put(Key.TEXT_ACCENT, new Color(0xff_7b7ba3), new Color(0xff_616192)); - //values from PonderUI & PonderButton - put(Key.PONDER_BACKGROUND, new Color(0xdd_000000, true)); + put(Key.TEXT_ACCENT_STRONG, new Color(0xff_7b7ba3), new Color(0xff_616192)); + put(Key.TEXT_ACCENT_SLIGHT, new Color(0xff_ddeeff), new Color(0xff_a0b0c0)); + put(Key.STREAK, new Color(0x101010, false)); + + put(Key.PONDER_BACKGROUND_TRANSPARENT, new Color(0xdd_000000, true)); + put(Key.PONDER_BACKGROUND_FLAT, new Color(0xff_000000, false)); put(Key.PONDER_IDLE, new Color(0x40ffeedd, true), new Color(0x20ffeedd, true)); put(Key.PONDER_HOVER, new Color(0x70ffffff, true), new Color(0x30ffffff, true)); put(Key.PONDER_HIGHLIGHT, new Color(0xf0ffeedd, true), new Color(0x60ffeedd, true)); put(Key.TEXT_WINDOW_BORDER, new Color(0x607a6000, true), new Color(0x207a6000, true)); - + put(Key.PONDER_BACK_ARROW, new Color(0x70aa9999, true), new Color(0x30aa9999, true)); + put(Key.PONDER_PROGRESSBAR, new Color(0x80ffeedd, true), new Color(0x50ffeedd, true)); + put(Key.PONDER_MISSING_CREATE, new Color(0x70_984500, true), new Color(0x70_692400, true)); + put(Key.PONDER_MISSING_VANILLA, new Color(0x50_5000ff, true), new Color(0x50_300077, true)); + //put(Key., new Color(0x, true), new Color(0x, true)); } protected void put(String key, Color c) { @@ -107,13 +114,21 @@ public class Theme { public static Key TEXT = new Key(); public static Key TEXT_DARKER = new Key(); - public static Key TEXT_ACCENT = new Key(); + public static Key TEXT_ACCENT_STRONG = new Key(); + public static Key TEXT_ACCENT_SLIGHT = new Key(); - public static Key PONDER_BACKGROUND = new Key(); + public static Key STREAK = new Key(); + + public static Key PONDER_BACKGROUND_TRANSPARENT = new Key(); + public static Key PONDER_BACKGROUND_FLAT = new Key(); public static Key PONDER_IDLE = new Key(); public static Key PONDER_HOVER = new Key(); public static Key PONDER_HIGHLIGHT = new Key(); public static Key TEXT_WINDOW_BORDER = new Key(); + public static Key PONDER_BACK_ARROW = new Key(); + public static Key PONDER_PROGRESSBAR = new Key(); + public static Key PONDER_MISSING_CREATE = new Key(); + public static Key PONDER_MISSING_VANILLA = new Key(); private static int index = 0; diff --git a/src/main/java/com/simibubi/create/foundation/gui/UIRenderHelper.java b/src/main/java/com/simibubi/create/foundation/gui/UIRenderHelper.java index aec7d046a..84c422776 100644 --- a/src/main/java/com/simibubi/create/foundation/gui/UIRenderHelper.java +++ b/src/main/java/com/simibubi/create/foundation/gui/UIRenderHelper.java @@ -17,6 +17,7 @@ import net.minecraft.client.MainWindow; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.BufferBuilder; import net.minecraft.client.renderer.Tessellator; +import net.minecraft.client.renderer.WorldVertexBufferUploader; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.client.shader.Framebuffer; import net.minecraft.util.math.vector.Matrix4f; @@ -76,6 +77,8 @@ public class UIRenderHelper { framebuffer.unbindFramebufferTexture(); } + public static void streak(MatrixStack ms, float angle, int x, int y, int breadth, int length) {streak(ms, angle, x, y, breadth, length, Theme.i(Theme.Key.STREAK));} + //angle in degrees; 0° -> fading to the right //x and y specify the middle point of the starting edge //breadth is the total width of the streak @@ -148,6 +151,8 @@ public class UIRenderHelper { ms.pop(); } + public static void breadcrumbArrow(MatrixStack matrixStack, int x, int y, int z, int width, int height, int indent, Couple colors) {breadcrumbArrow(matrixStack, x, y, z, width, height, indent, colors.getFirst().getRGB(), colors.getSecond().getRGB());} + //draws a wide chevron-style breadcrumb arrow pointing left public static void breadcrumbArrow(MatrixStack matrixStack, int x, int y, int z, int width, int height, int indent, int startColor, int endColor) { matrixStack.push(); @@ -231,4 +236,30 @@ public class UIRenderHelper { RenderSystem.enableAlphaTest(); RenderSystem.enableTexture(); } + + //just like AbstractGui#drawTexture, but with a color at every vertex + public static void drawColoredTexture(MatrixStack ms, Color c, int x, int y, int tex_left, int tex_top, int width, int height) { + drawColoredTexture(ms, c, x, y, 0, (float)tex_left, (float)tex_top, width, height, 256, 256); + } + + public static void drawColoredTexture(MatrixStack ms, Color c, int x, int y, int z, float tex_left, float tex_top, int width, int height, int sheet_width, int sheet_height) { + drawColoredTexture(ms, c, x, x + width, y, y + height, z, width, height, tex_left, tex_top, sheet_width, sheet_height); + } + + private static void drawColoredTexture(MatrixStack ms, Color c, int left, int right, int top, int bot, int z, int tex_width, int tex_height, float tex_left, float tex_top, int sheet_width, int sheet_height) { + drawTexturedQuad(ms.peek().getModel(), c, left, right, top, bot, z, (tex_left + 0.0F) / (float)sheet_width, (tex_left + (float)tex_width) / (float)sheet_width, (tex_top + 0.0F) / (float)sheet_height, (tex_top + (float)tex_height) / (float)sheet_height); + } + + private static void drawTexturedQuad(Matrix4f m, Color c, int left, int right, int top, int bot, int z, float u1, float u2, float v1, float v2) { + RenderSystem.enableBlend(); + BufferBuilder bufferbuilder = Tessellator.getInstance().getBuffer(); + bufferbuilder.begin(7, DefaultVertexFormats.POSITION_COLOR_TEXTURE); + bufferbuilder.vertex(m, (float)left , (float)bot, (float)z).color(c.getRed(), c.getGreen(), c.getBlue(), c.getAlpha()).texture(u1, v2).endVertex(); + bufferbuilder.vertex(m, (float)right, (float)bot, (float)z).color(c.getRed(), c.getGreen(), c.getBlue(), c.getAlpha()).texture(u2, v2).endVertex(); + bufferbuilder.vertex(m, (float)right, (float)top, (float)z).color(c.getRed(), c.getGreen(), c.getBlue(), c.getAlpha()).texture(u2, v1).endVertex(); + bufferbuilder.vertex(m, (float)left , (float)top, (float)z).color(c.getRed(), c.getGreen(), c.getBlue(), c.getAlpha()).texture(u1, v1).endVertex(); + bufferbuilder.finishDrawing(); + RenderSystem.enableAlphaTest(); + WorldVertexBufferUploader.draw(bufferbuilder); + } } diff --git a/src/main/java/com/simibubi/create/foundation/gui/widgets/BoxWidget.java b/src/main/java/com/simibubi/create/foundation/gui/widgets/BoxWidget.java index 1f1f76455..07b35d4f9 100644 --- a/src/main/java/com/simibubi/create/foundation/gui/widgets/BoxWidget.java +++ b/src/main/java/com/simibubi/create/foundation/gui/widgets/BoxWidget.java @@ -119,7 +119,7 @@ public class BoxWidget extends ElementWidget { return; box.withAlpha(fadeValue); - box.withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND)) + box.withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_TRANSPARENT)) .gradientBorder(gradientColor1, gradientColor2) .at(x, y, z) .withBounds(width, height) diff --git a/src/main/java/com/simibubi/create/foundation/ponder/NavigatableSimiScreen.java b/src/main/java/com/simibubi/create/foundation/ponder/NavigatableSimiScreen.java index 9a4fa36ec..98bc89e46 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/NavigatableSimiScreen.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/NavigatableSimiScreen.java @@ -115,10 +115,10 @@ public abstract class NavigatableSimiScreen extends AbstractSimiScreen { int maxX = backTrack.x + backTrack.getWidth(); if (x + 30 < backTrack.x) - UIRenderHelper.breadcrumbArrow(ms, x + 30, height - 51, 0, maxX - (x + 30), 20, 5, 0x70aa9999, 0x30aa9999); + UIRenderHelper.breadcrumbArrow(ms, x + 30, height - 51, 0, maxX - (x + 30), 20, 5, Theme.p(Theme.Key.PONDER_BACK_ARROW)); - UIRenderHelper.breadcrumbArrow(ms, x, height - 51, 0, 30, 20, 5, 0x70aa9999, 0x30aa9999); - UIRenderHelper.breadcrumbArrow(ms, x - 30, height - 51, 0, 30, 20, 5, 0x70aa9999, 0x30aa9999); + UIRenderHelper.breadcrumbArrow(ms, x, height - 51, 0, 30, 20, 5, Theme.p(Theme.Key.PONDER_BACK_ARROW)); + UIRenderHelper.breadcrumbArrow(ms, x - 30, height - 51, 0, 30, 20, 5, Theme.p(Theme.Key.PONDER_BACK_ARROW)); } if (transition.getChaseTarget() == 0 || transition.settled()) { diff --git a/src/main/java/com/simibubi/create/foundation/ponder/PonderProgressBar.java b/src/main/java/com/simibubi/create/foundation/ponder/PonderProgressBar.java index de024143c..3c3c899b3 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/PonderProgressBar.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/PonderProgressBar.java @@ -8,8 +8,6 @@ import com.mojang.blaze3d.matrix.MatrixStack; import com.simibubi.create.foundation.gui.BoxElement; import com.simibubi.create.foundation.gui.Theme; import com.simibubi.create.foundation.gui.widgets.AbstractSimiWidget; -import com.simibubi.create.foundation.utility.AnimationTickHolder; -import com.simibubi.create.foundation.utility.ColorHelper; import com.simibubi.create.foundation.utility.animation.LerpedFloat; import net.minecraft.client.Minecraft; @@ -20,7 +18,6 @@ import net.minecraftforge.fml.client.gui.GuiUtils; public class PonderProgressBar extends AbstractSimiWidget { LerpedFloat progress; - LerpedFloat flash; PonderUI ponder; @@ -30,27 +27,12 @@ public class PonderProgressBar extends AbstractSimiWidget { this.ponder = ponder; progress = LerpedFloat.linear() .startWithValue(0); - flash = LerpedFloat.linear() - .startWithValue(0); } public void tick() { progress.chase(ponder.getActiveScene() .getSceneProgress(), .5f, LerpedFloat.Chaser.EXP); progress.tickChaser(); - - if (hovered) - flash(); - } - - public void flash() { - float value = flash.getValue(); - flash.setValue(value + (1 - value) * .2f); - } - - public void dim() { - float value = flash.getValue(); - flash.setValue(value * .5f); } @Override @@ -111,58 +93,43 @@ public class PonderProgressBar extends AbstractSimiWidget { hovered = clicked(mouseX, mouseY); - ms.push(); - ms.translate(0, 0, 150); - /* ponderButtons are at z+400 - * renderBox is at z+100 - * gradients have to be in front of the box so z>+100 - * */ - new BoxElement() - .withBackground(0xff000000) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) .gradientBorder(Theme.p(Theme.Key.PONDER_IDLE)) - .at(x, y, 100) + .at(x, y, 250) .withBounds(width, height) .render(ms); - //ms.push(); - //PonderUI.renderBox(ms, x, y, width, height, false); - //ms.pop(); ms.push(); - ms.translate(x - 2, y - 2, 0); + ms.translate(x - 2, y - 2, 150); ms.push(); ms.scale((width + 4) * progress.getValue(partialTicks), 1, 1); - GuiUtils.drawGradientRect(ms.peek().getModel(), 110, 0, 3, 1, 4, 0x80ffeedd, 0x80ffeedd); - GuiUtils.drawGradientRect(ms.peek().getModel(), 110, 0, 4, 1, 5, 0x50ffeedd, 0x50ffeedd); + int c1 = Theme.i(Theme.Key.PONDER_PROGRESSBAR, true); + int c2 = Theme.i(Theme.Key.PONDER_PROGRESSBAR, false); + GuiUtils.drawGradientRect(ms.peek().getModel(), 110, 0, 3, 1, 4, c1, c1); + GuiUtils.drawGradientRect(ms.peek().getModel(), 110, 0, 4, 1, 5, c2, c2); ms.pop(); renderKeyframes(ms, mouseX, partialTicks); ms.pop(); - - ms.pop(); } private void renderKeyframes(MatrixStack ms, int mouseX, float partialTicks) { PonderScene activeScene = ponder.getActiveScene(); - int hoverStartColor; - int hoverEndColor; + int hoverStartColor = Theme.i(Theme.Key.PONDER_HOVER, true) | 0xa0_000000; + int hoverEndColor = Theme.i(Theme.Key.PONDER_HOVER, false) | 0xa0_000000; + int idleStartColor = Theme.i(Theme.Key.PONDER_IDLE, true) | 0x40_000000; + int idleEndColor = Theme.i(Theme.Key.PONDER_IDLE, false) | 0x40_000000; int hoverIndex; if (hovered) { hoverIndex = getHoveredKeyframeIndex(activeScene, mouseX); - float flashValue = flash.getValue(partialTicks) * 3 - + (float) Math.sin((AnimationTickHolder.getTicks() + partialTicks) / 6); - - hoverEndColor = ColorHelper.applyAlpha(0x70ffffff, flashValue); - hoverStartColor = ColorHelper.applyAlpha(0x30ffffff, flashValue); } else { hoverIndex = -2; - hoverEndColor = 0; - hoverStartColor = 0; } IntegerList keyframeTimes = activeScene.keyframeTimes; @@ -176,8 +143,8 @@ public class PonderProgressBar extends AbstractSimiWidget { int keyframePos = (int) (((float) keyframeTime) / ((float) activeScene.totalTime) * (width + 4)); boolean selected = i == hoverIndex; - int startColor = selected ? hoverStartColor : 0x30ffeedd; - int endColor = selected ? hoverEndColor : 0x60ffeedd; + int startColor = selected ? hoverStartColor : idleStartColor; + int endColor = selected ? hoverEndColor : idleEndColor; int height = selected ? 8 : 4; drawKeyframe(ms, activeScene, selected, keyframeTime, keyframePos, startColor, endColor, height); diff --git a/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java b/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java index 6b84b79f4..0cc52c2b8 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java @@ -2,6 +2,7 @@ package com.simibubi.create.foundation.ponder; import static com.simibubi.create.foundation.ponder.PonderLocalization.LANG_PREFIX; +import java.awt.Color; import java.util.ArrayList; import java.util.Collections; import java.util.List; @@ -30,6 +31,7 @@ import com.simibubi.create.foundation.ponder.elements.TextWindowElement; import com.simibubi.create.foundation.ponder.ui.PonderButton; import com.simibubi.create.foundation.renderState.SuperRenderTypeBuffer; import com.simibubi.create.foundation.utility.ColorHelper; +import com.simibubi.create.foundation.utility.Couple; import com.simibubi.create.foundation.utility.FontHelper; import com.simibubi.create.foundation.utility.Iterate; import com.simibubi.create.foundation.utility.Lang; @@ -536,13 +538,12 @@ public class PonderUI extends NavigatableSimiScreen { float lazyIndexValue = lazyIndex.getValue(partialTicks); float indexDiff = Math.abs(lazyIndexValue - index); PonderScene activeScene = scenes.get(index); - int textColor = 0xeeeeee; boolean noWidgetsHovered = true; for (Widget widget : widgets) noWidgetsHovered &= !widget.isMouseOver(mouseX, mouseY); - int tooltipColor = 0xffa3a3a3; + int tooltipColor = Theme.i(Theme.Key.TEXT_DARKER); { // Chapter title ms.push(); @@ -554,11 +555,11 @@ public class PonderUI extends NavigatableSimiScreen { int wordWrappedHeight = textRenderer.getWordWrappedHeight(title, left.x - 51); int streakHeight = 35 - 9 + wordWrappedHeight; - UIRenderHelper.streak(ms, 0, x - 4, y - 12 + streakHeight / 2, streakHeight, (int) (150 * fade), 0x101010); - UIRenderHelper.streak(ms, 180, x - 4, y - 12 + streakHeight / 2, streakHeight, (int) (30 * fade), 0x101010); + UIRenderHelper.streak(ms, 0, x - 4, y - 12 + streakHeight / 2, streakHeight, (int) (150 * fade)); + UIRenderHelper.streak(ms, 180, x - 4, y - 12 + streakHeight / 2, streakHeight, (int) (30 * fade)); //renderBox(ms, 21, 21, 30, 30, false); new BoxElement() - .withBackground(0xff000000) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) .gradientBorder(Theme.p(Theme.Key.PONDER_IDLE)) .at(21, 21, 100) .withBounds(30, 30) @@ -566,9 +567,9 @@ public class PonderUI extends NavigatableSimiScreen { GuiGameElement.of(stack) - .at(x - 39, y - 11) - .scale(2) - .render(ms); + .scale(2) + .at(x - 39, y - 11) + .render(ms); textRenderer.draw(ms, Lang.translate(PONDERING), x, y - 6, tooltipColor); y += 8; @@ -578,18 +579,18 @@ public class PonderUI extends NavigatableSimiScreen { ms.multiply(Vector3f.NEGATIVE_X.getDegreesQuaternion(indexDiff * -75)); ms.translate(0, 0, 5); FontHelper.drawSplitString(ms, textRenderer, title, 0, 0, left.x - 51, - ColorHelper.applyAlpha(textColor, 1 - indexDiff)); + ColorHelper.applyAlpha(Theme.i(Theme.Key.TEXT), 1 - indexDiff)); ms.pop(); if (chapter != null) { ms.push(); ms.translate(chap.x - 4 - 4, chap.y, 0); - UIRenderHelper.streak(ms, 180, 4, 10, 26, (int) (150 * fade), 0x101010); + UIRenderHelper.streak(ms, 180, 4, 10, 26, (int) (150 * fade)); drawRightAlignedString(textRenderer, ms, Lang.translate(IN_CHAPTER).getString(), 0, 0, tooltipColor); drawRightAlignedString(textRenderer, ms, - Lang.translate(LANG_PREFIX + "chapter." + chapter.getId()).getString(), 0, 12, 0xffeeeeee); + Lang.translate(LANG_PREFIX + "chapter." + chapter.getId()).getString(), 0, 12, Theme.i(Theme.Key.TEXT)); ms.pop(); } @@ -702,14 +703,14 @@ public class PonderUI extends NavigatableSimiScreen { ms.translate(x, y + 5 * (1 - fade), 800); float fadedWidth = 200 * chase.getValue(partialTicks); - UIRenderHelper.streak(ms, 0, 0, 12, 26, (int) fadedWidth, 0x101010); + UIRenderHelper.streak(ms, 0, 0, 12, 26, (int) fadedWidth); GL11.glScissor((int) (x * s), 0, (int) (fadedWidth * s), (int) (height * s)); GL11.glEnable(GL11.GL_SCISSOR_TEST); String tagName = this.tags.get(i) .getTitle(); - textRenderer.draw(ms, tagName, 3, 8, 0xffeedd); + textRenderer.draw(ms, tagName, 3, 8, Theme.i(Theme.Key.TEXT_ACCENT_SLIGHT)); GL11.glDisable(GL11.GL_SCISSOR_TEST); @@ -876,6 +877,8 @@ public class PonderUI extends NavigatableSimiScreen { int divotSize = 8; int distance = 1; int divotRadius = divotSize / 2; + Couple borderColors = Theme.p(highlighted ? Theme.Key.PONDER_HIGHLIGHT : Theme.Key.PONDER_IDLE); + Color c; switch (pointing) { default: @@ -885,6 +888,7 @@ public class PonderUI extends NavigatableSimiScreen { boxY -= h + divotSize + 1 + distance; divotX -= divotRadius; divotY -= divotSize + distance; + c = borderColors.getSecond(); break; case LEFT: divotRotation = 90; @@ -892,6 +896,7 @@ public class PonderUI extends NavigatableSimiScreen { boxY -= h / 2; divotX += distance; divotY -= divotRadius; + c = ColorHelper.mixColors(borderColors, 0.5f); break; case RIGHT: divotRotation = 270; @@ -899,6 +904,7 @@ public class PonderUI extends NavigatableSimiScreen { boxY -= h / 2; divotX -= divotSize + distance; divotY -= divotRadius; + c = ColorHelper.mixColors(borderColors, 0.5f); break; case UP: divotRotation = 180; @@ -906,23 +912,24 @@ public class PonderUI extends NavigatableSimiScreen { boxY += divotSize + 1 + distance; divotX -= divotRadius; divotY += distance; + c = borderColors.getFirst(); break; } //renderBox(ms, boxX, boxY, w, h, highlighted); new BoxElement() - .withBackground(0xff000000) - .gradientBorder(Theme.p(highlighted ? Theme.Key.PONDER_HIGHLIGHT : Theme.Key.PONDER_IDLE)) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) + .gradientBorder(borderColors) .at(boxX, boxY, 100) .withBounds(w, h) .render(ms); ms.push(); - AllGuiTextures toRender = highlighted ? AllGuiTextures.SPEECH_TOOLTIP_HIGHLIGHT : AllGuiTextures.SPEECH_TOOLTIP; ms.translate(divotX + divotRadius, divotY + divotRadius, 10); ms.multiply(Vector3f.POSITIVE_Z.getDegreesQuaternion(divotRotation)); ms.translate(-divotRadius, -divotRadius, 0); - toRender.draw(ms, 0, 0); + AllGuiTextures.SPEECH_TOOLTIP_BACKGROUND.draw(ms, 0, 0); + AllGuiTextures.SPEECH_TOOLTIP_COLOR.draw(ms, 0, 0, c); ms.pop(); if (returnWithLocalTransform) { diff --git a/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndexScreen.java b/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndexScreen.java index 1f1be9c0a..3e7936354 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndexScreen.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndexScreen.java @@ -8,6 +8,7 @@ import com.mojang.blaze3d.matrix.MatrixStack; import com.simibubi.create.AllBlocks; import com.simibubi.create.content.contraptions.components.crank.ValveHandleBlock; import com.simibubi.create.foundation.gui.ScreenOpener; +import com.simibubi.create.foundation.gui.Theme; import com.simibubi.create.foundation.gui.UIRenderHelper; import com.simibubi.create.foundation.ponder.NavigatableSimiScreen; import com.simibubi.create.foundation.ponder.PonderRegistry; @@ -156,8 +157,8 @@ public class PonderIndexScreen extends NavigatableSimiScreen { ms.push(); ms.translate(x, y, 0); - UIRenderHelper.streak(ms, 0, chapterArea.getX() - 10, chapterArea.getY() - 20, 20, 220, 0x101010); - textRenderer.draw(ms, "Topics to Ponder about", chapterArea.getX() - 5, chapterArea.getY() - 25, 0xffddeeff); + UIRenderHelper.streak(ms, 0, chapterArea.getX() - 10, chapterArea.getY() - 20, 20, 220); + textRenderer.draw(ms, "Topics to Ponder about", chapterArea.getX() - 5, chapterArea.getY() - 25, Theme.i(Theme.Key.TEXT)); ms.pop(); } @@ -168,8 +169,8 @@ public class PonderIndexScreen extends NavigatableSimiScreen { ms.push(); ms.translate(x, y, 0); - UIRenderHelper.streak(ms, 0, itemArea.getX() - 10, itemArea.getY() - 20, 20, 220, 0x101010); - textRenderer.draw(ms, "Items to inspect", itemArea.getX() - 5, itemArea.getY() - 25, 0xffddeeff); + UIRenderHelper.streak(ms, 0, itemArea.getX() - 10, itemArea.getY() - 20, 20, 220); + textRenderer.draw(ms, "Items to inspect", itemArea.getX() - 5, itemArea.getY() - 25, Theme.i(Theme.Key.TEXT)); ms.pop(); } diff --git a/src/main/java/com/simibubi/create/foundation/ponder/content/PonderTagScreen.java b/src/main/java/com/simibubi/create/foundation/ponder/content/PonderTagScreen.java index d572e4b01..26b63035d 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/content/PonderTagScreen.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/content/PonderTagScreen.java @@ -1,6 +1,5 @@ package com.simibubi.create.foundation.ponder.content; -import java.awt.Color; import java.util.ArrayList; import java.util.List; import java.util.Objects; @@ -97,10 +96,10 @@ public class PonderTagScreen extends NavigatableSimiScreen { if (i.getRegistryName() .getNamespace() .equals(Create.ID)) - b.withBorderColors(new Color(0x70984500, true), new Color(0x70692400, true)) + b.withBorderColors(Theme.p(Theme.Key.PONDER_MISSING_CREATE)) .animateColors(false); else - b.withBorderColors(new Color(0x505000FF, true), new Color(0x50300077, true)) + b.withBorderColors(Theme.p(Theme.Key.PONDER_MISSING_VANILLA)) .animateColors(false); } @@ -124,10 +123,10 @@ public class PonderTagScreen extends NavigatableSimiScreen { } else { if (registryName.getNamespace() .equals(Create.ID)) - b.withBorderColors(new Color(0x70984500, true), new Color(0x70692400, true)) + b.withBorderColors(Theme.p(Theme.Key.PONDER_MISSING_CREATE)) .animateColors(false); else - b.withBorderColors(new Color(0x505000FF, true), new Color(0x50300077, true)) + b.withBorderColors(Theme.p(Theme.Key.PONDER_MISSING_VANILLA)) .animateColors(false); } @@ -193,21 +192,21 @@ public class PonderTagScreen extends NavigatableSimiScreen { String title = tag.getTitle(); int streakHeight = 35; - UIRenderHelper.streak(ms, 0, x - 4, y - 12 + streakHeight / 2, streakHeight, 240, 0x101010); + UIRenderHelper.streak(ms, 0, x - 4, y - 12 + streakHeight / 2, streakHeight, 240); //PonderUI.renderBox(ms, 21, 21, 30, 30, false); new BoxElement() - .withBackground(0xff000000) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) .gradientBorder(Theme.p(Theme.Key.PONDER_IDLE)) .at(21, 21, 100) .withBounds(30, 30) .render(ms); - textRenderer.draw(ms, Lang.translate(PonderUI.PONDERING), x, y - 6, 0xffa3a3a3); + textRenderer.draw(ms, Lang.translate(PonderUI.PONDERING), x, y - 6, Theme.i(Theme.Key.TEXT_DARKER)); y += 8; x += 0; ms.translate(x, y, 0); ms.translate(0, 0, 5); - textRenderer.draw(ms, title, 0, 0, 0xeeeeee); + textRenderer.draw(ms, title, 0, 0, Theme.i(Theme.Key.TEXT)); ms.pop(); ms.push(); @@ -228,14 +227,14 @@ public class PonderTagScreen extends NavigatableSimiScreen { //PonderUI.renderBox(ms, x - 3, y - 3, w + 6, h + 6, false); new BoxElement() - .withBackground(0xff000000) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) .gradientBorder(Theme.p(Theme.Key.PONDER_IDLE)) .at(x - 3, y - 3, 90) .withBounds(w + 6, h + 6) .render(ms); ms.translate(0, 0, 100); - FontHelper.drawSplitString(ms, textRenderer, desc, x, y, w, 0xeeeeee); + FontHelper.drawSplitString(ms, textRenderer, desc, x, y, w, Theme.i(Theme.Key.TEXT)); ms.pop(); } @@ -253,7 +252,7 @@ public class PonderTagScreen extends NavigatableSimiScreen { ms.translate(x, y, 0); //PonderUI.renderBox(ms, (sWidth - stringWidth) / 2 - 5, itemArea.getY() - 21, stringWidth + 10, 10, false); new BoxElement() - .withBackground(0xff000000) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) .gradientBorder(Theme.p(Theme.Key.PONDER_IDLE)) .at((sWidth - stringWidth) / 2f - 5, itemArea.getY() - 21, 100) .withBounds(stringWidth + 10, 10) @@ -262,12 +261,12 @@ public class PonderTagScreen extends NavigatableSimiScreen { ms.translate(0, 0, 200); // UIRenderHelper.streak(0, itemArea.getX() - 10, itemArea.getY() - 20, 20, 180, 0x101010); - drawCenteredString(ms, textRenderer, relatedTitle, sWidth / 2, itemArea.getY() - 20, 0xeeeeee); + drawCenteredString(ms, textRenderer, relatedTitle, sWidth / 2, itemArea.getY() - 20, Theme.i(Theme.Key.TEXT)); ms.translate(0,0, -200); - UIRenderHelper.streak(ms, 0, 0, 0, itemArea.getHeight() + 10, itemArea.getWidth() / 2 + 75, 0x101010); - UIRenderHelper.streak(ms, 180, 0, 0, itemArea.getHeight() + 10, itemArea.getWidth() / 2 + 75, 0x101010); + UIRenderHelper.streak(ms, 0, 0, 0, itemArea.getHeight() + 10, itemArea.getWidth() / 2 + 75); + UIRenderHelper.streak(ms, 180, 0, 0, itemArea.getHeight() + 10, itemArea.getWidth() / 2 + 75); ms.pop(); @@ -287,8 +286,8 @@ public class PonderTagScreen extends NavigatableSimiScreen { ms.push(); ms.translate(chapterX, chapterY, 0); - UIRenderHelper.streak(ms, 0, chapterArea.getX() - 10, chapterArea.getY() - 20, 20, 220, 0x101010); - textRenderer.draw(ms, "More Topics to Ponder about", chapterArea.getX() - 5, chapterArea.getY() - 25, 0xffddeeff); + UIRenderHelper.streak(ms, 0, chapterArea.getX() - 10, chapterArea.getY() - 20, 20, 220); + textRenderer.draw(ms, "More Topics to Ponder about", chapterArea.getX() - 5, chapterArea.getY() - 25, Theme.i(Theme.Key.TEXT_ACCENT_SLIGHT)); ms.pop(); } diff --git a/src/main/java/com/simibubi/create/foundation/ponder/elements/TextWindowElement.java b/src/main/java/com/simibubi/create/foundation/ponder/elements/TextWindowElement.java index 169050afd..31da2fb41 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/elements/TextWindowElement.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/elements/TextWindowElement.java @@ -113,7 +113,7 @@ public class TextWindowElement extends AnimatedOverlayElement { ms.translate(0, sceneToScreen.y, 400); new BoxElement() - .withBackground(0xaa000000) + .withBackground(Theme.c(Theme.Key.PONDER_BACKGROUND_FLAT)) .gradientBorder(Theme.p(Theme.Key.TEXT_WINDOW_BORDER)) .at(targetX - 10, 3, 100) .withBounds(boxWidth, boxHeight - 1) diff --git a/src/main/java/com/simibubi/create/foundation/ponder/ui/ChapterLabel.java b/src/main/java/com/simibubi/create/foundation/ponder/ui/ChapterLabel.java index 75772edf3..87c3a6b3a 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/ui/ChapterLabel.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/ui/ChapterLabel.java @@ -5,6 +5,7 @@ import java.util.function.BiConsumer; import javax.annotation.Nonnull; import com.mojang.blaze3d.matrix.MatrixStack; +import com.simibubi.create.foundation.gui.Theme; import com.simibubi.create.foundation.gui.UIRenderHelper; import com.simibubi.create.foundation.gui.widgets.AbstractSimiWidget; import com.simibubi.create.foundation.ponder.content.PonderChapter; @@ -30,9 +31,9 @@ public class ChapterLabel extends AbstractSimiWidget { @Override public void render(@Nonnull MatrixStack ms, int mouseX, int mouseY, float partialTicks) { - UIRenderHelper.streak(ms, 0, x, y + height / 2, height - 2, width, 0x101010); + UIRenderHelper.streak(ms, 0, x, y + height / 2, height - 2, width); Minecraft.getInstance().fontRenderer.draw(ms, Lang.translate("ponder.chapter." + chapter.getId()), x + 50, - y + 20, 0xffddeeff); + y + 20, Theme.i(Theme.Key.TEXT_ACCENT_SLIGHT)); button.renderButton(ms, mouseX, mouseY, partialTicks); super.render(ms, mouseX, mouseY, partialTicks); diff --git a/src/main/java/com/simibubi/create/foundation/utility/ColorHelper.java b/src/main/java/com/simibubi/create/foundation/utility/ColorHelper.java index 25a54716b..d02fb3156 100644 --- a/src/main/java/com/simibubi/create/foundation/utility/ColorHelper.java +++ b/src/main/java/com/simibubi/create/foundation/utility/ColorHelper.java @@ -71,6 +71,11 @@ public class ColorHelper { ); } + @Nonnull + public static Color mixColors(@Nonnull Couple colors, float w) { + return mixColors(colors.getFirst(), colors.getSecond(), w); + } + public static int mixAlphaColors(int color1, int color2, float w) { int a1 = (color1 >> 24); int r1 = (color1 >> 16) & 0xFF; diff --git a/src/main/resources/assets/create/textures/gui/widgets.png b/src/main/resources/assets/create/textures/gui/widgets.png index 22ec3d894e3f29ad1f2b4669af544bdb473171cc..7829a5f71a1eeb72410cbb86c4f2fcaede0175fd 100644 GIT binary patch delta 2731 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 delta 1387 zcmaDYxrKj%vN8i>age(c!@6@aFBupZSkfJR9T^xl_H+M9WMyDrvJLPFaov1?-Il5T zknbxUpo;w^L4Lvi=@06uXeEPdUW+BrFPsG)k;M!Qe7iuHQFOoAC141cdb&75F&&^CfSDaqXb^KyW|0NSG-_M#8lQve|*m_6kn)gHzKi`Qx zS$>AUPCT2DX{nOk@F;U)z=FhOPbZvV>{>1#-2fC!ZZO>Fz+$Z1p2BmX{*sWHyl^H+ zZF0l4Yu7eZdN0WXs_tPt$I)`uxxK1049vU5w9$b_@az_uNrny^_wL=hRyRk^8*Bz| zz?&BwyiSb;d}&d9CuJ5?q`50ttZD`uxDjs8O-VC(X{a^p)~(x6nGUw*O+8~$F13xxbJ$%C{{QDR4^EuV`ev13dDtYKC z9$%FC|A}Vf%IUFnN2i9z)}GyZJ=XqfTjphE%?rSIC*KQx0rs^js-D#{;NZ#>Bes? zy87zs>acYY`_=@lJhLk7`kL77b%&4jN?%(ay?a^I+D|RQa}MozC*pbjz=36Fqqq5S ztgnwgKW(=e@04Hc?C*Ks)o7q-~9Tr z`TYJHd!L_scI|Buh_=lk>b{J%de z9*e*6KIpIKNxILl&5r4MYC%JD?_T~s6PrV&l3XYE7rrl8B`#5a@i*(0NzR@YSzDj% zSCNUiwot&#UgUc}E6ewO#;o@JHC6Ek9C#FZnG+&q7*0Q8h!A5xu*rg9+EK<0I(!YO zg$z2~6iL-n-9*w1tf$QRq*;c=E^8u!(QEBDd&LI{^Yzpge*_jU44$rjF6*2UngHme B$Ls(A