PlotSquared/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java

327 lines
11 KiB
Java
Raw Normal View History

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