blob: f792ee74ff0dfc88a64328c777ddc1fad101b784 (
plain)
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
|
package io.polyfrost.oneconfig.command;
import io.polyfrost.oneconfig.gui.HudGui;
import io.polyfrost.oneconfig.gui.OneConfigGui;
import io.polyfrost.oneconfig.test.TestNanoVGGui;
import io.polyfrost.oneconfig.utils.TickDelay;
import net.minecraft.client.Minecraft;
import net.minecraft.command.CommandBase;
import net.minecraft.command.ICommandSender;
import java.util.ArrayList;
import java.util.List;
public class OneConfigCommand extends CommandBase {
private static final Minecraft mc = Minecraft.getMinecraft();
@Override
public String getCommandName() {
return "oneconfig";
}
@Override
public String getCommandUsage(ICommandSender sender) {
return "oneconfig <>";
}
@Override
public List<String> getCommandAliases() {
return new ArrayList<String>() {{
add("oneconfig");
add("ocfg");
}};
}
@Override
public void processCommand(ICommandSender sender, String[] args) {
if (args.length == 0) new TickDelay(() -> mc.displayGuiScreen(new OneConfigGui()), 1);
else {
switch (args[0]) {
case "hud":
new TickDelay(() -> mc.displayGuiScreen(new HudGui()), 1);
break;
case "lwjgl":
new TickDelay(() -> mc.displayGuiScreen(new TestNanoVGGui()), 1);
break;
}
}
}
@Override
public int getRequiredPermissionLevel() {
return -1;
}
}
|