aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-08-24 21:00:52 +0200
committerLorenz <lo.scherf@gmail.com>2022-08-24 21:00:52 +0200
commitaa9f51fc8153226710180212b02e135c0670c129 (patch)
tree71e1d7e973f3eeba2ae8baeaa10a08a93979e52f /src/main/java
parentea1a2980a6cb6b465c1f6911c959335aca25cb80 (diff)
downloadskyhanni-aa9f51fc8153226710180212b02e135c0670c129.tar.gz
skyhanni-aa9f51fc8153226710180212b02e135c0670c129.tar.bz2
skyhanni-aa9f51fc8153226710180212b02e135c0670c129.zip
option to change the gray-out opacity for 'Not Clickable Items'
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java32
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/items/HideNotClickableItems.kt5
2 files changed, 29 insertions, 8 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java
index ba11c6098..c1a5bfdea 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java
@@ -8,15 +8,33 @@ import java.util.List;
public class Inventory {
+ @ConfigOption(name = "Not Clickable Items", desc = "")
+ @ConfigEditorAccordion(id = 0)
+ public boolean hideNotClickable = false;
+
@Expose
- @ConfigOption(name = "Not Clickable Items", desc = "Hide items that are not clickable in " + "the current inventory: ah, bz, accessory bag, etc.")
+ @ConfigOption(name = "Enabled", desc = "Hide items that are not clickable in the current inventory: ah, bz, accessory bag, etc.")
@ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
public boolean hideNotClickableItems = false;
@Expose
@ConfigOption(
- name = "Item number as stack size",
- desc = ""
+ name = "Opacity",
+ desc = "How strong should the items be grayed out?"
+ )
+ @ConfigEditorSlider(
+ minValue = 0,
+ maxValue = 255,
+ minStep = 5
+ )
+ @ConfigAccordionId(id = 0)
+ public int hideNotClickableOpacity = 180;
+
+ @Expose
+ @ConfigOption(
+ name = "Item number",
+ desc = "Showing the item number as a stack size for these items"
)
@ConfigEditorDraggableList(
exampleText = {
@@ -48,24 +66,24 @@ public class Inventory {
public boolean itemStars = false;
@ConfigOption(name = "RNG Meter", desc = "")
- @ConfigEditorAccordion(id = 0)
+ @ConfigEditorAccordion(id = 1)
public boolean rngMeter = false;
@Expose
@ConfigOption(name = "Floor Names", desc = "Show the floor names in the catacombs rng meter inventory")
@ConfigEditorBoolean
- @ConfigAccordionId(id = 0)
+ @ConfigAccordionId(id = 1)
public boolean rngMeterFloorName = false;
@Expose
@ConfigOption(name = "No Drop", desc = "Highlight floors without a drop selected in the catacombs rng meter inventory")
@ConfigEditorBoolean
- @ConfigAccordionId(id = 0)
+ @ConfigAccordionId(id = 1)
public boolean rngMeterNoDrop = false;
@Expose
@ConfigOption(name = "Selected Drop", desc = "Highlight the selected drop in the catacombs oder slayer rng meter inventory")
@ConfigEditorBoolean
- @ConfigAccordionId(id = 0)
+ @ConfigAccordionId(id = 1)
public boolean rngMeterSelectedDrop = false;
}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/items/HideNotClickableItems.kt b/src/main/java/at/hannibal2/skyhanni/features/items/HideNotClickableItems.kt
index 95d9517d5..549d347eb 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/items/HideNotClickableItems.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/items/HideNotClickableItems.kt
@@ -78,7 +78,10 @@ class HideNotClickableItems {
if (slot.stack == null) continue
if (hide(chestName, slot.stack)) {
- val color = LorenzColor.DARK_GRAY.addOpacity(160)
+// val color = LorenzColor.DARK_GRAY.addOpacity(160)
+// val color = LorenzColor.DARK_GRAY.addOpacity(LorenzTest.a.toInt())
+ val opacity = SkyHanniMod.feature.inventory.hideNotClickableOpacity
+ val color = LorenzColor.DARK_GRAY.addOpacity(opacity)
slot.stack.background = color.rgb
}
}