2015-07-30 19:24:01 +02:00
|
|
|
package com.plotsquared.bukkit.util;
|
2015-02-19 07:08:15 +01:00
|
|
|
|
2016-02-14 02:01:18 +01:00
|
|
|
import com.intellectualcrafters.plot.object.Location;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotBlock;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotPlayer;
|
|
|
|
import com.intellectualcrafters.plot.object.RegionWrapper;
|
|
|
|
import com.intellectualcrafters.plot.object.schematic.PlotItem;
|
2016-03-14 03:44:59 +01:00
|
|
|
import com.intellectualcrafters.plot.util.MathMan;
|
|
|
|
import com.intellectualcrafters.plot.util.StringComparison;
|
|
|
|
import com.intellectualcrafters.plot.util.StringMan;
|
|
|
|
import com.intellectualcrafters.plot.util.TaskManager;
|
|
|
|
import com.intellectualcrafters.plot.util.UUIDHandler;
|
|
|
|
import com.intellectualcrafters.plot.util.WorldUtil;
|
2016-02-14 02:01:18 +01:00
|
|
|
import com.plotsquared.bukkit.object.BukkitPlayer;
|
2016-03-14 03:44:59 +01:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.OfflinePlayer;
|
|
|
|
import org.bukkit.World;
|
2015-02-19 14:01:36 +01:00
|
|
|
import org.bukkit.block.Biome;
|
2015-02-19 07:08:15 +01:00
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.block.BlockState;
|
|
|
|
import org.bukkit.block.Sign;
|
2015-02-19 11:12:26 +01:00
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.Player;
|
2015-02-26 05:16:52 +01:00
|
|
|
import org.bukkit.inventory.Inventory;
|
|
|
|
import org.bukkit.inventory.InventoryHolder;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
2016-03-14 03:44:59 +01:00
|
|
|
import org.bukkit.material.MaterialData;
|
|
|
|
import org.bukkit.material.Sandstone;
|
|
|
|
import org.bukkit.material.Step;
|
|
|
|
import org.bukkit.material.Tree;
|
|
|
|
import org.bukkit.material.WoodenStep;
|
|
|
|
import org.bukkit.material.Wool;
|
2016-02-14 02:01:18 +01:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
2015-02-19 07:08:15 +01:00
|
|
|
|
2016-02-10 19:59:51 +01:00
|
|
|
public class BukkitUtil extends WorldUtil {
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
private static String lastString = null;
|
|
|
|
private static World lastWorld = null;
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-21 05:27:01 +01:00
|
|
|
private static Player lastPlayer = null;
|
|
|
|
private static PlotPlayer lastPlotPlayer = null;
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static void removePlayer(final String plr) {
|
2015-05-28 17:42:17 +02:00
|
|
|
lastPlayer = null;
|
|
|
|
lastPlotPlayer = null;
|
2015-02-21 05:32:01 +01:00
|
|
|
}
|
2015-10-07 08:33:33 +02:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static PlotPlayer getPlayer(final OfflinePlayer op) {
|
|
|
|
if (op.isOnline()) {
|
|
|
|
return getPlayer(op.getPlayer());
|
|
|
|
}
|
2015-09-11 12:09:22 +02:00
|
|
|
final Player player = OfflinePlayerUtil.loadPlayer(op);
|
2015-06-23 13:13:48 +02:00
|
|
|
player.loadData();
|
2015-08-01 22:11:28 +02:00
|
|
|
return new BukkitPlayer(player, true);
|
2015-06-23 13:13:48 +02:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static PlotPlayer getPlayer(final Player player) {
|
|
|
|
if (player == lastPlayer) {
|
|
|
|
return lastPlotPlayer;
|
|
|
|
}
|
2015-09-11 12:09:22 +02:00
|
|
|
final String name = player.getName();
|
2015-10-19 08:27:51 +02:00
|
|
|
final PlotPlayer pp = UUIDHandler.getPlayer(name);
|
2015-09-13 06:04:31 +02:00
|
|
|
if (pp != null) {
|
|
|
|
return pp;
|
|
|
|
}
|
2015-02-21 05:27:01 +01:00
|
|
|
lastPlotPlayer = new BukkitPlayer(player);
|
2015-07-24 16:06:58 +02:00
|
|
|
UUIDHandler.getPlayers().put(name, lastPlotPlayer);
|
2015-02-21 05:27:01 +01:00
|
|
|
lastPlayer = player;
|
|
|
|
return lastPlotPlayer;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static Location getLocation(final org.bukkit.Location loc) {
|
2015-08-09 11:58:29 +02:00
|
|
|
return new Location(loc.getWorld().getName(), MathMan.roundInt(loc.getX()), MathMan.roundInt(loc.getY()), MathMan.roundInt(loc.getZ()));
|
2015-02-20 08:10:07 +01:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static org.bukkit.Location getLocation(final Location loc) {
|
2015-03-13 04:15:00 +01:00
|
|
|
return new org.bukkit.Location(getWorld(loc.getWorld()), loc.getX(), loc.getY(), loc.getZ());
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static World getWorld(final String string) {
|
|
|
|
if (StringMan.isEqual(string, lastString)) {
|
|
|
|
if (lastWorld != null) {
|
|
|
|
return lastWorld;
|
|
|
|
}
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
2015-09-11 12:09:22 +02:00
|
|
|
final World world = Bukkit.getWorld(string);
|
2015-09-05 03:35:43 +02:00
|
|
|
lastString = string;
|
|
|
|
lastWorld = world;
|
2015-02-19 07:08:15 +01:00
|
|
|
return world;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static String getWorld(final Entity entity) {
|
2015-02-19 11:12:26 +01:00
|
|
|
return entity.getWorld().getName();
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static List<Entity> getEntities(final String worldname) {
|
2015-02-19 11:12:26 +01:00
|
|
|
return getWorld(worldname).getEntities();
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static Location getLocation(final Entity entity) {
|
2015-07-28 08:06:19 +02:00
|
|
|
final org.bukkit.Location loc = entity.getLocation();
|
|
|
|
final String world = loc.getWorld().getName();
|
|
|
|
return new Location(world, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static Location getLocationFull(final Entity entity) {
|
2015-09-11 12:09:22 +02:00
|
|
|
final org.bukkit.Location loc = entity.getLocation();
|
2016-02-14 02:01:18 +01:00
|
|
|
return new Location(loc.getWorld().getName(), MathMan.roundInt(loc.getX()), MathMan.roundInt(loc.getY()), MathMan.roundInt(loc.getZ()),
|
|
|
|
loc.getYaw(), loc.getPitch());
|
2015-07-28 08:06:19 +02:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-07-28 08:06:19 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public boolean isWorld(final String world) {
|
2015-07-28 08:06:19 +02:00
|
|
|
return getWorld(world) != null;
|
2015-07-20 07:14:46 +02:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-07-28 08:06:19 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public String getBiome(final String world, final int x, final int z) {
|
2015-07-28 08:06:19 +02:00
|
|
|
return getWorld(world).getBiome(x, z).name();
|
2015-02-23 12:37:36 +01:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
2016-02-10 19:59:51 +01:00
|
|
|
public void setSign(final String worldname, final int x, final int y, final int z, final String[] lines) {
|
2015-02-20 07:34:19 +01:00
|
|
|
final World world = getWorld(worldname);
|
|
|
|
final Block block = world.getBlockAt(x, y, z);
|
2015-10-24 12:55:34 +02:00
|
|
|
// block.setType(Material.AIR);
|
2015-02-19 07:08:15 +01:00
|
|
|
block.setTypeIdAndData(Material.WALL_SIGN.getId(), (byte) 2, false);
|
2015-02-20 07:34:19 +01:00
|
|
|
final BlockState blockstate = block.getState();
|
2016-02-14 02:01:18 +01:00
|
|
|
if (blockstate instanceof Sign) {
|
2015-10-24 12:55:34 +02:00
|
|
|
final Sign sign = (Sign) blockstate;
|
|
|
|
for (int i = 0; i < lines.length; i++) {
|
|
|
|
sign.setLine(i, lines[i]);
|
|
|
|
}
|
|
|
|
sign.update(true);
|
2015-10-18 13:20:12 +02:00
|
|
|
TaskManager.runTaskLater(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2015-10-24 12:55:34 +02:00
|
|
|
sign.update(true);
|
2015-10-18 13:20:12 +02:00
|
|
|
}
|
2015-10-24 12:55:34 +02:00
|
|
|
}, 20);
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-22 07:30:58 +01:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public String[] getSign(final Location loc) {
|
2015-02-23 02:32:27 +01:00
|
|
|
final Block block = getWorld(loc.getWorld()).getBlockAt(loc.getX(), loc.getY(), loc.getZ());
|
2015-09-13 06:04:31 +02:00
|
|
|
if (block != null) {
|
|
|
|
if (block.getState() instanceof Sign) {
|
2015-02-22 07:30:58 +01:00
|
|
|
final Sign sign = (Sign) block.getState();
|
|
|
|
return sign.getLines();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-22 07:56:46 +01:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public Location getSpawn(final String world) {
|
2015-02-23 02:32:27 +01:00
|
|
|
final org.bukkit.Location temp = getWorld(world).getSpawnLocation();
|
2015-07-20 07:14:46 +02:00
|
|
|
return new Location(world, temp.getBlockX(), temp.getBlockY(), temp.getBlockZ(), temp.getYaw(), temp.getPitch());
|
2015-02-22 07:56:46 +01:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2016-03-17 10:11:07 +01:00
|
|
|
@Override
|
|
|
|
public void setSpawn(Location loc) {
|
|
|
|
World world = getWorld(loc.getWorld());
|
|
|
|
if (world != null) {
|
|
|
|
world.setSpawnLocation(loc.getX(), loc.getY(), loc.getZ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void saveWorld(String worldname) {
|
|
|
|
World world = getWorld(worldname);
|
|
|
|
if (world != null) {
|
|
|
|
world.save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-22 12:30:46 +01:00
|
|
|
@Override
|
2016-02-19 17:55:00 +01:00
|
|
|
public int getHighestBlock(final String world, final int x, final int z) {
|
2015-07-28 08:06:19 +02:00
|
|
|
return getWorld(world).getHighestBlockAt(x, z).getY();
|
2015-02-22 12:30:46 +01:00
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-22 13:24:48 +01:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public int getBiomeFromString(final String biomeStr) {
|
|
|
|
try {
|
2015-03-20 15:01:35 +01:00
|
|
|
final Biome biome = Biome.valueOf(biomeStr.toUpperCase());
|
|
|
|
return Arrays.asList(Biome.values()).indexOf(biome);
|
2015-09-13 06:04:31 +02:00
|
|
|
} catch (final IllegalArgumentException e) {
|
2015-02-22 13:24:48 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-22 13:24:48 +01:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public String[] getBiomeList() {
|
2015-02-23 02:32:27 +01:00
|
|
|
final Biome[] biomes = Biome.values();
|
|
|
|
final String[] list = new String[biomes.length];
|
2015-09-13 06:04:31 +02:00
|
|
|
for (int i = 0; i < biomes.length; i++) {
|
2015-02-22 13:24:48 +01:00
|
|
|
list[i] = biomes[i].name();
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-02-26 05:16:52 +01:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public boolean addItems(final String worldname, final PlotItem items) {
|
2015-09-11 12:09:22 +02:00
|
|
|
final World world = getWorld(worldname);
|
|
|
|
final Block block = world.getBlockAt(items.x, items.y, items.z);
|
2015-09-13 06:04:31 +02:00
|
|
|
if (block == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-11 12:09:22 +02:00
|
|
|
final BlockState state = block.getState();
|
2016-02-14 02:01:18 +01:00
|
|
|
if (state instanceof InventoryHolder) {
|
|
|
|
final InventoryHolder holder = (InventoryHolder) state;
|
2015-09-11 12:09:22 +02:00
|
|
|
final Inventory inv = holder.getInventory();
|
2015-09-13 06:04:31 +02:00
|
|
|
for (int i = 0; i < items.id.length; i++) {
|
2015-09-11 12:09:22 +02:00
|
|
|
final ItemStack item = new ItemStack(items.id[i], items.amount[i], items.data[i]);
|
2015-02-26 05:16:52 +01:00
|
|
|
inv.addItem(item);
|
|
|
|
}
|
|
|
|
state.update(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-04-14 15:55:00 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public boolean isBlockSolid(final PlotBlock block) {
|
|
|
|
try {
|
2015-09-11 12:09:22 +02:00
|
|
|
final Material material = Material.getMaterial(block.id);
|
2015-09-13 06:04:31 +02:00
|
|
|
if (material.isBlock() && material.isSolid() && !material.hasGravity()) {
|
2015-09-11 12:09:22 +02:00
|
|
|
final Class<? extends MaterialData> data = material.getData();
|
2016-02-14 02:01:18 +01:00
|
|
|
if (data.equals(MaterialData.class) && !material.isTransparent() && material.isOccluding()
|
|
|
|
|| data.equals(Tree.class)
|
|
|
|
|| data.equals(Sandstone.class)
|
|
|
|
|| data.equals(Wool.class)
|
|
|
|
|| data.equals(Step.class)
|
|
|
|
|| data.equals(WoodenStep.class)) {
|
2015-09-13 06:04:31 +02:00
|
|
|
switch (material) {
|
2015-07-12 21:08:41 +02:00
|
|
|
case NOTE_BLOCK:
|
2016-02-14 02:01:18 +01:00
|
|
|
case MOB_SPAWNER:
|
2015-07-12 21:08:41 +02:00
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
2015-06-29 21:30:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2015-09-13 06:04:31 +02:00
|
|
|
} catch (final Exception e) {
|
2015-04-14 15:55:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-06-29 21:30:36 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public String getClosestMatchingName(final PlotBlock block) {
|
|
|
|
try {
|
2015-06-29 21:30:36 +02:00
|
|
|
return Material.getMaterial(block.id).name();
|
2015-09-13 06:04:31 +02:00
|
|
|
} catch (final Exception e) {
|
2015-06-29 21:30:36 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-06-29 21:30:36 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public StringComparison<PlotBlock>.ComparisonResult getClosestBlock(String name) {
|
2016-02-10 19:59:51 +01:00
|
|
|
try {
|
|
|
|
final Material material = Material.valueOf(name.toUpperCase());
|
|
|
|
return new StringComparison<PlotBlock>().new ComparisonResult(0, new PlotBlock((short) material.getId(), (byte) 0));
|
2016-02-14 02:01:18 +01:00
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
|
}
|
2015-09-13 06:04:31 +02:00
|
|
|
try {
|
2015-06-29 21:30:36 +02:00
|
|
|
byte data;
|
2015-09-11 12:09:22 +02:00
|
|
|
final String[] split = name.split(":");
|
2015-09-13 06:04:31 +02:00
|
|
|
if (split.length == 2) {
|
2015-06-29 21:30:36 +02:00
|
|
|
data = Byte.parseByte(split[1]);
|
|
|
|
name = split[0];
|
2015-09-13 06:04:31 +02:00
|
|
|
} else {
|
2015-06-29 21:30:36 +02:00
|
|
|
data = 0;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
double match;
|
|
|
|
short id;
|
2015-09-13 06:04:31 +02:00
|
|
|
if (MathMan.isInteger(split[0])) {
|
2015-06-29 21:30:36 +02:00
|
|
|
id = Short.parseShort(split[0]);
|
|
|
|
match = 0;
|
2015-09-13 06:04:31 +02:00
|
|
|
} else {
|
2016-02-14 02:01:18 +01:00
|
|
|
final StringComparison<Material>.ComparisonResult comparison = new StringComparison<>(name, Material.values()).getBestMatchAdvanced();
|
2015-06-29 21:30:36 +02:00
|
|
|
match = comparison.match;
|
2015-09-11 12:09:22 +02:00
|
|
|
id = (short) comparison.best.getId();
|
2015-06-29 21:30:36 +02:00
|
|
|
}
|
2015-09-11 12:09:22 +02:00
|
|
|
final PlotBlock block = new PlotBlock(id, data);
|
2016-02-14 02:01:18 +01:00
|
|
|
final StringComparison<PlotBlock> outer = new StringComparison<>();
|
2015-06-29 21:30:36 +02:00
|
|
|
return outer.new ComparisonResult(match, block);
|
2016-02-14 02:01:18 +01:00
|
|
|
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
}
|
2015-06-29 21:30:36 +02:00
|
|
|
return null;
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2016-02-10 19:59:51 +01:00
|
|
|
@Override
|
|
|
|
public void setBiomes(final String worldname, RegionWrapper region, final String biomeStr) {
|
|
|
|
final World world = getWorld(worldname);
|
|
|
|
final Biome biome = Biome.valueOf(biomeStr.toUpperCase());
|
|
|
|
for (int x = region.minX; x <= region.maxX; x++) {
|
|
|
|
for (int z = region.minZ; z <= region.maxZ; z++) {
|
|
|
|
world.setBiome(x, z, biome);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2015-07-28 08:06:19 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public PlotBlock getBlock(final Location loc) {
|
2015-07-28 08:06:19 +02:00
|
|
|
final World world = getWorld(loc.getWorld());
|
|
|
|
final Block block = world.getBlockAt(loc.getX(), loc.getY(), loc.getZ());
|
2015-09-13 06:04:31 +02:00
|
|
|
if (block == null) {
|
2016-03-14 03:44:59 +01:00
|
|
|
return PlotBlock.EVERYTHING;
|
2015-09-13 06:04:31 +02:00
|
|
|
}
|
2015-07-28 08:06:19 +02:00
|
|
|
return new PlotBlock((short) block.getTypeId(), block.getData());
|
|
|
|
}
|
2016-02-14 02:01:18 +01:00
|
|
|
|
2016-02-10 19:59:51 +01:00
|
|
|
@Override
|
|
|
|
public String getMainWorld() {
|
|
|
|
return Bukkit.getWorlds().get(0).getName();
|
|
|
|
}
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|