aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/commands/Commands.java
blob: 517390a5d9519cefa7275221f6d6df617ba1c63b (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
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
package com.thatgravyboat.skyblockhud.commands;

import com.thatgravyboat.skyblockhud.SkyblockHud;
import com.thatgravyboat.skyblockhud.config.SBHConfigEditor;
import com.thatgravyboat.skyblockhud.core.GuiScreenElementWrapper;
import com.thatgravyboat.skyblockhud.handlers.CrystalWaypoints;
import net.minecraft.command.ICommandSender;
import net.minecraftforge.client.ClientCommandHandler;
import org.apache.commons.lang3.StringUtils;

public class Commands {

    private static final boolean devMode = false;

    private static final SimpleCommand.ProcessCommandRunnable settingsRunnable = new SimpleCommand.ProcessCommandRunnable() {
        public void processCommand(ICommandSender sender, String[] args) {
            if (args.length > 0) {
                SkyblockHud.screenToOpen = new GuiScreenElementWrapper(new SBHConfigEditor(SkyblockHud.config, StringUtils.join(args, " ")));
            } else {
                SkyblockHud.screenToOpen = new GuiScreenElementWrapper(new SBHConfigEditor(SkyblockHud.config));
            }
        }
    };

//    private static final SimpleSubCommand devCommand = new SimpleSubCommand("sbhdev", ImmutableSet.of("copyNpcSkin", "copyBossBar", "copyScoreboard", "copyActionBar", "mobDeathLogging")) {
//        @Override
//        void processSubCommand(ICommandSender sender, String subCommand, String[] args) {
//            StringSelection clipboard = null;
//            switch (subCommand) {
//                case "copyBossBar":
//                    clipboard = new StringSelection(BossStatus.bossName);
//                    break;
//                case "copyScoreboard":
//                    StringBuilder builder = new StringBuilder();
//                    LeaderboardGetter.getCachedScores().forEach(s -> builder.append(s).append("\n"));
//                    clipboard = new StringSelection(builder.toString());
//                    break;
//                case "copyActionBar":
//                    clipboard = new StringSelection(ActionBarParsing.lastLowActionBar);
//                    break;
//                case "copySkin":
//                    Entity entity = Minecraft.getMinecraft().objectMouseOver.entityHit;
//                    if (entity instanceof AbstractClientPlayer) {
//                        clipboard = new StringSelection("http://textures.minecraft.net/texture/" + ((AbstractClientPlayer) entity).getLocationSkin().getResourcePath().replace("skins/", ""));
//                    } else {
//                        sendSBHMessage(sender, "Not a player!");
//                    }
//                    break;
//                case "mobDeathLogging":
//                    DevModeConstants.mobDeathLogging = !DevModeConstants.mobDeathLogging;
//                    sendSBHMessage(sender, "Mob Death Logging " + (DevModeConstants.mobDeathLogging ? "Enabled!" : "Disabled!"));
//            }
//            if (clipboard != null) {
//                Toolkit.getDefaultToolkit().getSystemClipboard().setContents(clipboard, clipboard);
//                sendSBHMessage(sender, "Info copied to clipboard!");
//            }
//        }
//
//        @Override
//        void processNoSubCommand(ICommandSender sender) {
//            devMode = !devMode;
//            sender.addChatMessage(new ChatComponentText("Dev Mode " + (devMode ? "Enabled!" : "Disabled!")));
//        }
//    };

    private static final SimpleCommand settingsCommand = new SimpleCommand("lm", settingsRunnable);
    private static final SimpleCommand settingsCommand2 = new SimpleCommand("lorenzmod", settingsRunnable);

//    private static final SimpleCommand mapCommand = new SimpleCommand(
//        "sbhmap",
//        new SimpleCommand.ProcessCommandRunnable() {
//            public void processCommand(ICommandSender sender, String[] args) {
//                if (LocationHandler.getCurrentLocation().getCategory().getMap() != null && SkyblockHud.hasSkyblockScoreboard()) SkyblockHud.screenToOpen = new MapHandler.MapScreen();
//            }
//        }
//    );

    public static void init() {
        ClientCommandHandler.instance.registerCommand(settingsCommand);
        ClientCommandHandler.instance.registerCommand(settingsCommand2);
//        ClientCommandHandler.instance.registerCommand(mapCommand);
//        ClientCommandHandler.instance.registerCommand(devCommand);
        ClientCommandHandler.instance.registerCommand(new CrystalWaypoints.WaypointCommand());
    }

//    private static void sendSBHMessage(ICommandSender sender, String message) {
//        sender.addChatMessage(new ChatComponentText("[" + EnumChatFormatting.RED + EnumChatFormatting.BOLD + "SkyBlockHud" + EnumChatFormatting.RESET + "] : " + EnumChatFormatting.GRAY + message));
//    }
}