1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
package at.hannibal2.skyhanni.config.features.misc;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import at.hannibal2.skyhanni.utils.ItemPriceSource;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorDropdown;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorKeybind;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import io.github.notenoughupdates.moulconfig.observer.Property;
import org.lwjgl.input.Keyboard;
public class EstimatedItemValueConfig {
@Expose
@ConfigOption(name = "Enable Estimated Price", desc = "Display an Estimated Item Value for the item you hover over.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Hotkey", desc = "Press this key to show the Estimated Item Value.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int hotkey = Keyboard.KEY_NONE;
@Expose
@ConfigOption(name = "Show Always", desc = "Ignore the hotkey and always display the item value.")
@ConfigEditorBoolean
public boolean alwaysEnabled = true;
@Expose
@ConfigOption(name = "Enchantments Cap", desc = "Only show the top # most expensive enchantments.")
@ConfigEditorSlider(
minValue = 1,
maxValue = 30,
minStep = 1
)
public Property<Integer> enchantmentsCap = Property.of(7);
@Expose
@ConfigOption(name = "Star Material Cap", desc = "Only show the top # most expensive parts of star prices.")
@ConfigEditorSlider(
minValue = 1,
maxValue = 15,
minStep = 1
)
public Property<Integer> starMaterialCap = Property.of(3);
@Expose
@ConfigOption(name = "Show Exact Price", desc = "Show the exact total price instead of the compact number.")
@ConfigEditorBoolean
public Property<Boolean> exactPrice = Property.of(false);
@Expose
@ConfigOption(name = "Show Armor Value", desc = "Show the value of the full armor set in the Wardrobe inventory.")
@ConfigEditorBoolean
@FeatureToggle
public boolean armor = true;
@Expose
@ConfigOption(name = "Ignore Helmet Skins", desc = "Ignore helmet Skins from the total value.")
@ConfigEditorBoolean
public Property<Boolean> ignoreHelmetSkins = Property.of(false);
@Expose
@ConfigOption(name = "Ignore Armor Dyes", desc = "Ignore Armor Dyes from the total value.")
@ConfigEditorBoolean
public Property<Boolean> ignoreArmorDyes = Property.of(false);
@Expose
@ConfigOption(name = "Ignore Runes", desc = "Ignore Runes from the total value.")
@ConfigEditorBoolean
public Property<Boolean> ignoreRunes = Property.of(false);
@Expose
@ConfigOption(name = "Change Price Source", desc = "Change what price to use: Bazaar (Sell Offer or Buy Order) or NPC.")
@ConfigEditorDropdown
public Property<ItemPriceSource> priceSource = Property.of(ItemPriceSource.BAZAAR_INSTANT_SELL);
public enum BazaarPriceSource {
INSTANT_BUY("Instant Buy"),
BUY_ORDER("Buy Order"),
;
private final String str;
BazaarPriceSource(String str) {
this.str = str;
}
@Override
public String toString() {
return str;
}
}
@Expose
@ConfigOption(
name = "Use Attribute Price",
desc = "Show composite price for attributes instead of lowest bin. " +
"This will drastically decrease the estimated value but might be correct when buying multiple low tier items and combining them."
)
@ConfigEditorBoolean
public Property<Boolean> useAttributeComposite = Property.of(false);
@Expose
@ConfigLink(owner = EstimatedItemValueConfig.class, field = "enabled")
public Position itemPriceDataPos = new Position(140, 90, false, true);
}
|