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
111
112
113
114
115
116
117
118
119
120
121
122
123
|
package at.hannibal2.skyhanni.config.features.dev;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import at.hannibal2.skyhanni.config.features.dev.minecraftconsole.MinecraftConsoleConfig;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.Category;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
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 org.lwjgl.input.Keyboard;
public class DevConfig {
@Expose
@ConfigOption(name = "Repository", desc = "")
@Accordion
public RepositoryConfig repo = new RepositoryConfig();
@Expose
@ConfigOption(name = "Debug", desc = "")
@Accordion
public DebugConfig debug = new DebugConfig();
@Expose
@ConfigOption(name = "Repo Pattern", desc = "")
@Accordion
public RepoPatternConfig repoPattern = new RepoPatternConfig();
@Expose
@ConfigOption(name = "Log Expiry Time", desc = "Deletes your SkyHanni logs after this time period in days.")
@ConfigEditorSlider(minValue = 1, maxValue = 30, minStep = 1)
public int logExpiryTime = 14;
@Expose
@ConfigOption(name = "Slot Number", desc = "Show slot number in inventory while pressing this key.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int showSlotNumberKey = Keyboard.KEY_NONE;
@Expose
@ConfigOption(name = "World Edit", desc = "Use wood axe or command /shworldedit to render a box, similar like the WorldEdit plugin.")
@ConfigEditorBoolean
public boolean worldEdit = false;
@ConfigOption(name = "Parkour Waypoints", desc = "")
@Accordion
@Expose
public WaypointsConfig waypoint = new WaypointsConfig();
// Does not have a config element!
@Expose
public Position debugPos = new Position(10, 10, false, true);
// Does not have a config element!
@Expose
public Position debugLocationPos = new Position(1, 160, false, true);
// Does not have a config element!
@Expose
public Position debugItemPos = new Position(90, 70);
@Expose
@ConfigLink(owner = DebugConfig.class, field = "raytracedOreblock")
public Position debugOrePos = new Position(1, 200, false, true);
@Expose
@ConfigOption(
name = "Fancy Contributors",
desc = "Marks §cSkyHanni's contributors §7fancy in the tab list. " +
"§eThose are the folks that coded the mod for you for free :)"
)
@ConfigEditorBoolean
@FeatureToggle
public boolean fancyContributors = true;
@Expose
@ConfigOption(
name = "Contributor Nametags",
desc = "Makes SkyHanni contributors' nametags fancy too. "
)
@ConfigEditorBoolean
@FeatureToggle
public boolean contributorNametags = true;
@Expose
@ConfigOption(
name = "Flip Contributors",
desc = "Make SkyHanni contributors appear upside down in the world.")
@ConfigEditorBoolean
@FeatureToggle
public boolean flipContributors = true;
@Expose
@ConfigOption(
name = "Spin Contributors",
desc = "Make SkyHanni contributors spin around when you are looking at them. " +
"§eRequires 'Flip Contributors' to be enabled.")
@ConfigEditorBoolean
public boolean rotateContributors = false;
@Expose
@ConfigOption(
name = "SBA Contributors",
desc = "Mark SBA Contributors the same way as SkyHanni contributors.")
@ConfigEditorBoolean
public boolean fancySbaContributors = false;
@Expose
@Category(name = "Minecraft Console", desc = "Minecraft Console Settings")
public MinecraftConsoleConfig minecraftConsoles = new MinecraftConsoleConfig();
@Expose
@Category(name = "Dev Tools", desc = "Tooling for devs")
public DevToolConfig devTool = new DevToolConfig();
@Expose
@Category(name = "Debug Mob", desc = "Every Debug related to the Mob System")
public DebugMobConfig mobDebug = new DebugMobConfig();
}
|