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
|
package at.hannibal2.skyhanni.config.features.mining;
import at.hannibal2.skyhanni.config.FeatureToggle;
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.ConfigEditorColour;
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 TunnelMapsConfig {
@Expose
@ConfigOption(name = "Enable", desc = "Enable the tunnel maps, which give you a path to any location you want. Open your inventory to select a destination.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enable = true;
@Expose
@ConfigLink(owner = TunnelMapsConfig.class, field = "enable")
public Position position = new Position(20, 20);
@Expose
@ConfigOption(name = "Auto Commission", desc = "Take the first collector commission as target when opening the commissions inventory, also works when completing commissions.")
@ConfigEditorBoolean
public boolean autoCommission = false;
@Expose
@ConfigOption(name = "Campfire Hotkey", desc = "Hotkey to warp to the campfire. If the travel scroll is not unlocked, show a path to the campfire instead.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int campfireKey = Keyboard.KEY_NONE;
@Expose
@ConfigOption(name = "Travel Scroll", desc = "Let SkyHanni know that you have unlocked the §eTravel Scroll to Dwarven Base Camp§7.")
@ConfigEditorBoolean
public boolean travelScroll = false;
@Expose
@ConfigOption(name = "Next Spot Hotkey", desc = "Hotkey to select the next spot.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int nextSpotHotkey = Keyboard.KEY_NONE;
@Expose
@ConfigOption(name = "Left Click Pigeon", desc = "Left click the Royal Pigeon to go to the next spot.")
@ConfigEditorBoolean
public boolean leftClickPigeon = true;
@Expose
@ConfigOption(name = "Dynamic Path Color", desc = "Instead of the selected color use the color of the target as line color.")
@ConfigEditorBoolean
// TODO rename to dynamicPathColor
public boolean dynamicPathColour = true;
@Expose
@ConfigOption(name = "Path Color", desc = "The color for the paths, if the dynamic color option is turned off.")
@ConfigEditorColour
// TODO rename to pathColor
public String pathColour = "0:255:0:255:0";
@Expose
@ConfigOption(name = "Text Size", desc = "Size of the waypoint texts.")
@ConfigEditorSlider(minValue = 0.5f, maxValue = 2.5f, minStep = 0.1f)
public float textSize = 1.0f;
@Expose
@ConfigOption(name = "Path width", desc = "Size of the path lines.")
@ConfigEditorSlider(minValue = 1f, maxValue = 15f, minStep = 1f)
public float pathWidth = 4.0f;
@Expose
@ConfigOption(name = "Distance at First", desc = "Show the distance at the first edge instead of the end.")
@ConfigEditorBoolean
public boolean distanceFirst = false;
@Expose
@ConfigOption(name = "Compact Gemstone", desc = "Only show the icon for gemstones in the selection list.")
@ConfigEditorBoolean
public Property<Boolean> compactGemstone = Property.of(false);
@Expose
@ConfigOption(name = "Exclude Fairy", desc = "Exclude the fairy soul spots from the selection list.")
@ConfigEditorBoolean
public Property<Boolean> excludeFairy = Property.of(false);
}
|