blob: 77ac4d7a06d1205b9167d08eb6f5c36bd1488ca5 (
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
|
package de.torui.coflsky;
import java.util.List;
import de.torui.coflsky.core.Command;
import de.torui.coflsky.core.CommandType;
import net.minecraft.client.Minecraft;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.IChatComponent;
import scala.actors.threadpool.Arrays;
public class CoflSkyCommand extends CommandBase {
@Override
public int getRequiredPermissionLevel() {
// TODO Auto-generated method stub
return 0;
}
@Override
public String getCommandName() {
return "coflsky";
}
@Override
public String getCommandUsage(ICommandSender sender) {
return "/coflsky token <token> to register\n/coflsky start to connect\n/coflsky stop to stop";
}
@Override
public void processCommand(ICommandSender sender, String[] args) throws CommandException {
System.out.println(Arrays.toString(args));
if(args.length == 1) {
switch(args[0]) {
case "start":
//todo: start
break;
case "stop":
//todo: stop
break;
case "debug":
WSCommandHandler.HandleCommand(new Command(CommandType.Execute, "/say hewwo"), sender.getCommandSenderEntity());
WSCommandHandler.HandleCommand(new Command(CommandType.WriteToChat, "{ \"text\": \"Clickable Texts are fun\", \"onClick\": \"/give @p minecraft:apple 1\"}"), sender.getCommandSenderEntity());
break;
case "callback":
break;
default:
sender.addChatMessage(new ChatComponentText("" + args[0] +"is not a valid subcommand!"));
return;
}
}
if(args.length == 2 && args[0].equals("token")) {
//todo: send authorisation message
}
}
}
|