2021-09-01 01:55:27 +00:00
|
|
|
package net.tylermurphy.hideAndSeek.command;
|
2021-08-13 20:49:36 +00:00
|
|
|
|
2021-08-25 03:43:01 +00:00
|
|
|
import static net.tylermurphy.hideAndSeek.Store.*;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
2021-08-13 20:49:36 +00:00
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.util.Vector;
|
|
|
|
|
2021-08-23 17:57:50 +00:00
|
|
|
import net.tylermurphy.hideAndSeek.util.Functions;
|
|
|
|
import net.tylermurphy.hideAndSeek.util.ICommand;
|
2021-08-13 20:49:36 +00:00
|
|
|
|
|
|
|
public class SetBorder implements ICommand {
|
|
|
|
|
|
|
|
public void execute(CommandSender sender, String[] args) {
|
2021-08-27 21:20:07 +00:00
|
|
|
if(!status.equals("Standby")) {
|
2021-08-14 02:30:17 +00:00
|
|
|
sender.sendMessage(errorPrefix + "Game is currently in session");
|
|
|
|
return;
|
|
|
|
}
|
2021-08-13 20:49:36 +00:00
|
|
|
if(spawnPosition == null) {
|
|
|
|
sender.sendMessage(errorPrefix + "Please set spawn position first");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(args.length < 2) {
|
2021-08-23 17:57:50 +00:00
|
|
|
worldborderEnabled = false;
|
2021-08-25 03:43:01 +00:00
|
|
|
Map<String, Object> temp = new HashMap<String,Object>();
|
|
|
|
temp.put("enabled", false);
|
|
|
|
addToSection("worldBorder",temp);
|
2021-08-23 17:57:50 +00:00
|
|
|
saveConfig();
|
|
|
|
sender.sendMessage(messagePrefix + "Disabled worldborder.");
|
2021-09-01 01:55:27 +00:00
|
|
|
Functions.resetWorldborder(spawnWorld);
|
2021-08-13 20:49:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
int num,delay;
|
|
|
|
try { num = Integer.parseInt(args[0]); } catch (Exception e) {
|
|
|
|
sender.sendMessage(errorPrefix + "Invalid integer: "+args[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try { delay = Integer.parseInt(args[1]); } catch (Exception e) {
|
|
|
|
sender.sendMessage(errorPrefix + "Invalid integer: "+args[1]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(num < 100) {
|
|
|
|
sender.sendMessage(errorPrefix + "Worldborder cannot be smaller than 100 blocks.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Vector newWorldborderPosition = new Vector();
|
|
|
|
Player player = (Player) sender;
|
|
|
|
newWorldborderPosition.setX(player.getLocation().getBlockX());
|
|
|
|
newWorldborderPosition.setY(0);
|
|
|
|
newWorldborderPosition.setZ(player.getLocation().getBlockZ());
|
|
|
|
if(spawnPosition.distance(newWorldborderPosition) > 100) {
|
|
|
|
sender.sendMessage(errorPrefix + "Spawn position must be 100 from worldborder center");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
worldborderPosition = newWorldborderPosition;
|
|
|
|
worldborderSize = num;
|
|
|
|
worldborderDelay = delay;
|
2021-08-23 17:57:50 +00:00
|
|
|
worldborderEnabled = true;
|
2021-08-25 03:43:01 +00:00
|
|
|
Map<String, Object> temp = new HashMap<String,Object>();
|
|
|
|
temp.put("x", worldborderPosition.getBlockX());
|
|
|
|
temp.put("z", worldborderPosition.getBlockZ());
|
|
|
|
temp.put("delay", worldborderDelay);
|
|
|
|
temp.put("size", worldborderSize);
|
|
|
|
temp.put("enabled", true);
|
|
|
|
addToSection("worldBorder",temp);
|
|
|
|
sender.sendMessage(messagePrefix + "Set border center to current location, size to "+num+", and delay to "+delay);
|
2021-08-13 20:49:36 +00:00
|
|
|
saveConfig();
|
2021-09-01 01:55:27 +00:00
|
|
|
Functions.resetWorldborder(spawnWorld);
|
2021-08-13 20:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getLabel() {
|
|
|
|
return "setBorder";
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getUsage() {
|
|
|
|
return "<size> <delay>";
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
2021-08-23 17:57:50 +00:00
|
|
|
return "Sets worldboarder's center location, size in blocks, and delay in minutes per shrink. Add no arguments to disable.";
|
2021-08-13 20:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|