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
|
package at.hannibal2.skyhanni.config.features.crimsonisle;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.HasLegacyId;
import at.hannibal2.skyhanni.config.core.config.Position;
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.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import io.github.notenoughupdates.moulconfig.observer.Property;
import org.lwjgl.input.Keyboard;
public class ReputationHelperConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Enable features around Reputation features in the Crimson Isle.")
@ConfigEditorBoolean
@FeatureToggle
public Property<Boolean> enabled = Property.of(false);
@Expose
@ConfigOption(name = "Hide Completed", desc = "Hide tasks after they've been completed.")
@ConfigEditorBoolean
public Property<Boolean> hideComplete = Property.of(true);
@Expose
@ConfigOption(name = "Use Hotkey", desc = "Only show the Reputation Helper while pressing the hotkey.")
@ConfigEditorBoolean
public boolean useHotkey = false;
@Expose
@ConfigOption(name = "Hotkey", desc = "Press this hotkey to show the Reputation Helper.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int hotkey = Keyboard.KEY_NONE;
@Expose
@ConfigLink(owner = ReputationHelperConfig.class, field = "enabled")
public Position position = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Show Locations", desc = "Crimson Isles waypoints for locations to get reputation.")
@ConfigEditorDropdown
public ShowLocationEntry showLocation = ShowLocationEntry.ONLY_HOTKEY;
public enum ShowLocationEntry implements HasLegacyId {
ALWAYS("Always", 0),
ONLY_HOTKEY("Only With Hotkey", 1),
NEVER("Never", 2);
private final String str;
private final int legacyId;
ShowLocationEntry(String str, int legacyId) {
this.str = str;
this.legacyId = legacyId;
}
// Constructor if new enum elements are added post-migration
ShowLocationEntry(String str) {
this(str, -1);
}
@Override
public int getLegacyId() {
return legacyId;
}
@Override
public String toString() {
return str;
}
}
}
|