aboutsummaryrefslogtreecommitdiff
path: root/mod/src
diff options
context:
space:
mode:
authorsyeyoung <cyoung06@naver.com>2023-02-11 23:09:37 +0900
committersyeyoung <cyoung06@naver.com>2023-02-11 23:09:37 +0900
commit830e15d6c8bec72555c3f3ae0b91811e8ce6505a (patch)
tree9b3f9a1f6cba0218a8bc8fd79dba7becd485cf15 /mod/src
parent2b99b3c5de42c91e99465999aaf447ab1209a244 (diff)
downloadSkyblock-Dungeons-Guide-830e15d6c8bec72555c3f3ae0b91811e8ce6505a.tar.gz
Skyblock-Dungeons-Guide-830e15d6c8bec72555c3f3ae0b91811e8ce6505a.tar.bz2
Skyblock-Dungeons-Guide-830e15d6c8bec72555c3f3ae0b91811e8ce6505a.zip
- rename stuffs
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src')
-rw-r--r--mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/richtext/config/WidgetStyleGroup.java65
1 files changed, 33 insertions, 32 deletions
diff --git a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/richtext/config/WidgetStyleGroup.java b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/richtext/config/WidgetStyleGroup.java
index ce79f688..8a6a9973 100644
--- a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/richtext/config/WidgetStyleGroup.java
+++ b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/richtext/config/WidgetStyleGroup.java
@@ -45,6 +45,7 @@ public class WidgetStyleGroup extends AnnotatedImportOnlyWidget {
public boolean anythingUseful() {
return !widgetList.isEmpty();
}
+
public WidgetStyleGroup(WidgetStyleEdit edit, DefaultingDelegatingTextStyle style, DefaultingDelegatingTextStyle effective, boolean editable) {
super(new ResourceLocation("dungeonsguide:gui/config/text/stylegroup.gui"));
stuff.setValue(style.name);
@@ -52,43 +53,43 @@ public class WidgetStyleGroup extends AnnotatedImportOnlyWidget {
if (!editable) {
if (style.size != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("size", () -> style.size != effective.getSize(), style.size, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Size", () -> style.size != effective.getSize(), style.size, "Overridden in child"));
if (style.topAscent != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("topAscent", () -> style.topAscent != effective.getTopAscent(), style.topAscent, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Top Padding", () -> style.topAscent != effective.getTopAscent(), style.topAscent, "Overridden in child"));
if (style.bottomAscent != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("bottomAscent", () -> style.bottomAscent != effective.getBottomAscent(), style.bottomAscent, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Bottom Padding", () -> style.bottomAscent != effective.getBottomAscent(), style.bottomAscent, "Overridden in child"));
if (style.bold != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("bold", () -> style.bold != effective.isBold(), style.bold, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Bold", () -> style.bold != effective.isBold(), style.bold, "Overridden in child"));
if (style.italics != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("italics", () -> style.italics != effective.isItalics(), style.italics, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Italic", () -> style.italics != effective.isItalics(), style.italics, "Overridden in child"));
if (style.strikeThrough != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("strikeThrough",() -> style.strikeThrough != effective.isStrikeThrough(), style.strikeThrough, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Strike Through",() -> style.strikeThrough != effective.isStrikeThrough(), style.strikeThrough, "Overridden in child"));
if (style.underline != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("underline", () -> style.underline != effective.isUnderline(), style.underline, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Underline", () -> style.underline != effective.isUnderline(), style.underline, "Overridden in child"));
if (style.outline != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("outline", () -> style.outline != effective.isOutline(), style.outline, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Outline", () -> style.outline != effective.isOutline(), style.outline, "Overridden in child"));
if (style.shadow != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("shadow", () -> style.shadow != effective.isShadow(), style.shadow, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Shadow", () -> style.shadow != effective.isShadow(), style.shadow, "Overridden in child"));
if (style.background != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("background", () -> style.background != effective.hasBackground(), style.background, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Background", () -> style.background != effective.hasBackground(), style.background, "Overridden in child"));
if (style.backgroundShader != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("backgroundColor", () -> style.backgroundShader != effective.getBackgroundShaderColor(), style.backgroundShader, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Background Color", () -> style.backgroundShader != effective.getBackgroundShaderColor(), style.backgroundShader, "Overridden in child"));
if (style.textShader != null)
- widgetList.add(new WidgetConstStyleGroupStyleLine("textColor", () -> style.textShader != effective.getTextShaderColor(), style.textShader, "Overridden in child"));
+ widgetList.add(new WidgetConstStyleGroupStyleLine("Text Color", () -> style.textShader != effective.getTextShaderColor(), style.textShader, "Overridden in child"));
if (style.strikeThroughShader != null)
- widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("strikeThroughColor", () -> style.strikeThroughShader != effective.getStrikeThroughShaderColor() || !effective.isStrikeThrough(),
+ widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("Strike Through Color", () -> style.strikeThroughShader != effective.getStrikeThroughShaderColor() || !effective.isStrikeThrough(),
style.strikeThroughShader.isPresent(), style.strikeThroughShader.orElse(style.getTextShaderColor()),
style.strikeThroughShader != effective.getStrikeThroughShaderColor() ? "Overridden in child" : "Strikethrough effectively disabled"));
if (style.underlineShader != null)
- widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("underlineColor", () -> style.underlineShader != effective.getUnderlineShaderColor() || !effective.isUnderline(),
+ widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("Underline Color", () -> style.underlineShader != effective.getUnderlineShaderColor() || !effective.isUnderline(),
style.underlineShader.isPresent(), style.underlineShader.orElse(style.getTextShaderColor()),
style.underlineShader != effective.getUnderlineShaderColor() ? "Overridden in child" : "Underline effectively disabled"));
if (style.outlineShader != null)
- widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("outlineColor", () -> style.outlineShader != effective.getOutlineShaderColor() || !effective.isOutline(),
+ widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("Outline Color", () -> style.outlineShader != effective.getOutlineShaderColor() || !effective.isOutline(),
style.outlineShader.isPresent(), style.outlineShader.orElse(style.getTextShaderColor()),
style.outlineShader != effective.getOutlineShaderColor() ? "Overridden in child" : "Outline effectively disabled"));
if (style.shadowShader != null)
- widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("shadowColor", () -> style.shadowShader != effective.getShadowShaderColor() || !effective.isShadow(),
+ widgetList.add(new WidgetConstStyleGroupStyleLineDerivedColor("Shadow Color", () -> style.shadowShader != effective.getShadowShaderColor() || !effective.isShadow(),
style.shadowShader.isPresent(), style.shadowShader.orElseGet(() -> {
AColor textShader = style.getTextShaderColor();
AColor aColor = new AColor(textShader.getRed()/4, textShader.getGreen()/4, textShader.getBlue()/4, textShader.getAlpha());
@@ -99,27 +100,27 @@ public class WidgetStyleGroup extends AnnotatedImportOnlyWidget {
style.shadowShader != effective.getShadowShaderColor() ? "Overridden in child" : "Shadow effectively disabled"));
} else {
boolean disableable = style.parent != null;
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"size", style.size != null, () -> effective.getSize().doubleValue(), (val) -> {style.size= (Double) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"topAscent", style.topAscent != null, () -> effective.getTopAscent().doubleValue(), (val) -> {style.topAscent= (Double) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"bottomAscent", style.bottomAscent != null,() -> style.getBottomAscent().doubleValue(), (val) -> {style.bottomAscent= (Double) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"bold", style.bold != null, () -> style.isBold().booleanValue(), (val) -> {style.bold = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"italics", style.italics != null, () -> style.isItalics().booleanValue(), (val) -> {style.italics = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"strikeThrough", style.strikeThrough != null, () -> style.isStrikeThrough().booleanValue(), (val) -> {style.strikeThrough = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"underline", style.underline != null,() -> style.isUnderline().booleanValue(), (val) -> {style.underline = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"outline", style.outline != null, () -> style.isOutline().booleanValue(), (val) -> {style.outline = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"shadow", style.shadow != null, () -> style.isShadow().booleanValue(), (val) -> {style.shadow = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"background", style.background != null, () -> style.hasBackground().booleanValue(), (val) -> {style.background = (Boolean)val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(true, "backgroundColor", style.backgroundShader != null,
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Size", style.size != null, () -> effective.getSize().doubleValue(), (val) -> {style.size= (Double) val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Top Padding", style.topAscent != null, () -> effective.getTopAscent().doubleValue(), (val) -> {style.topAscent= (Double) val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Bottom Padding", style.bottomAscent != null,() -> style.getBottomAscent().doubleValue(), (val) -> {style.bottomAscent= (Double) val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Bold", style.bold != null, () -> style.isBold().booleanValue(), (val) -> {style.bold = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Italic", style.italics != null, () -> style.isItalics().booleanValue(), (val) -> {style.italics = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Strike Through", style.strikeThrough != null, () -> style.isStrikeThrough().booleanValue(), (val) -> {style.strikeThrough = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Underline", style.underline != null,() -> style.isUnderline().booleanValue(), (val) -> {style.underline = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Outline", style.outline != null, () -> style.isOutline().booleanValue(), (val) -> {style.outline = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Shadow", style.shadow != null, () -> style.isShadow().booleanValue(), (val) -> {style.shadow = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Background", style.background != null, () -> style.hasBackground().booleanValue(), (val) -> {style.background = (Boolean)val; edit.update();}));
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(true, "Background Color", style.backgroundShader != null,
() -> new AColor(style.getBackgroundShaderColor()), (val) -> {style.backgroundShader = (AColor) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"textColor", style.textShader != null,
+ widgetList.add(new WidgetEditableStyleGroupStyleLine(disableable,"Text Color", style.textShader != null,
() -> new AColor(style.getTextShaderColor()), (val) -> {style.textShader = (AColor) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "strikeThroughColor", style.strikeThroughShader != null,
+ widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "Strike Through Color", style.strikeThroughShader != null,
() -> style.getStrikeThroughShaderColor(), () -> new AColor(style.getTextShaderColor()), (val) -> {style.strikeThroughShader = (Optional<AColor>) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "underlineColor", style.underlineShader != null,
+ widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "Underline Color", style.underlineShader != null,
() -> style.getUnderlineShaderColor(), () -> new AColor(style.getTextShaderColor()), (val) -> {style.underlineShader = (Optional<AColor>) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "outlineColor", style.outlineShader != null,
+ widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "Outline Color", style.outlineShader != null,
() -> style.getOutlineShaderColor(), () -> new AColor(style.getTextShaderColor()), (val) -> {style.outlineShader = (Optional<AColor>) val; edit.update();}));
- widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "shadowColor", style.shadowShader != null,
+ widgetList.add(new WidgetEditableStyleGroupStyleLineDerivedColor(true, "Shadow Color", style.shadowShader != null,
() -> style.getShadowShaderColor(), () -> {
AColor textShader = style.getTextShaderColor();
AColor aColor = new AColor(textShader.getRed()/4, textShader.getGreen()/4, textShader.getBlue()/4, textShader.getAlpha());