blob: f5dea9b74e6540a9b05c72a67666daa908f97fd2 (
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
|
package me.Danker.commands;
import me.Danker.DankersSkyblockMod;
import me.Danker.features.CrystalHollowWaypoints;
import net.minecraft.client.Minecraft;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
public class CrystalHollowWaypointCommand extends CommandBase {
@Override
public String getCommandName() {
return "dsmaddcrystalhollowwaypoints";
}
@Override
public String getCommandUsage(ICommandSender arg0) {
return "/" + getCommandName() + " <formatted waypoint>";
}
@Override
public int getRequiredPermissionLevel() {
return 0;
}
@Override
public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
if (arg1.length == 0) return;
addWaypoints(String.join(" ", arg1), false);
}
public static void addWaypoints(String list, boolean auto) {
EntityPlayer player = Minecraft.getMinecraft().thePlayer;
String[] waypoints = list.split("\\\\n");
for (String waypoint : waypoints) {
String[] parts = waypoint.split("@-");
String[] coords = parts[1].split(",");
String location = parts[0];
BlockPos pos = new BlockPos(Integer.parseInt(coords[0]), Integer.parseInt(coords[1]), Integer.parseInt(coords[2]));
CrystalHollowWaypoints.Waypoint newWaypoint = new CrystalHollowWaypoints.Waypoint(location, pos);
if (auto) {
boolean contains = false;
for (CrystalHollowWaypoints.Waypoint existing : CrystalHollowWaypoints.waypoints) {
if (existing.location.equals(location)) {
contains = true;
break;
}
}
if (contains) continue;
}
CrystalHollowWaypoints.waypoints.add(newWaypoint);
player.addChatMessage(new ChatComponentText(DankersSkyblockMod.MAIN_COLOUR + "Added " + newWaypoint.location + " @ " + newWaypoint.getPos()));
}
}
}
|