blob: 0743b54a7348cd8127487c4191a3693c3d3465d9 (
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 cc.polyfrost.oneconfig.command;
import cc.polyfrost.oneconfig.gui.HudGui;
import cc.polyfrost.oneconfig.gui.OneConfigGui;
import cc.polyfrost.oneconfig.test.TestNanoVGGui;
import cc.polyfrost.oneconfig.utils.GuiUtils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.ICommandSender;
import java.util.ArrayList;
import java.util.List;
public class OneConfigCommand extends CommandBase {
@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) GuiUtils.displayScreen(OneConfigGui.create());
else {
switch (args[0]) {
case "hud":
GuiUtils.displayScreen(new HudGui());
break;
case "lwjgl":
GuiUtils.displayScreen(new TestNanoVGGui());
break;
case "destroy":
OneConfigGui.instanceToRestore = null;
break;
}
}
}
@Override
public int getRequiredPermissionLevel() {
return -1;
}
}
|