PlotSquared/src/main/java/com/plotsquared/bukkit/object/BukkitPlayer.java

318 lines
8.4 KiB
Java
Raw Normal View History

2015-07-26 16:51:12 +02:00
package com.plotsquared.bukkit.object;
2015-02-20 12:23:48 +01:00
2015-07-30 16:25:16 +02:00
import java.util.HashSet;
import java.util.UUID;
import org.bukkit.Bukkit;
import org.bukkit.Effect;
import org.bukkit.GameMode;
import org.bukkit.WeatherType;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
2015-07-30 16:25:16 +02:00
import org.bukkit.permissions.Permission;
import org.bukkit.permissions.PermissionDefault;
import org.bukkit.plugin.PluginManager;
2015-07-30 16:25:16 +02:00
2015-07-27 17:14:38 +02:00
import com.intellectualcrafters.plot.config.C;
2015-03-12 10:28:08 +01:00
import com.intellectualcrafters.plot.config.Settings;
2015-07-27 19:50:04 +02:00
import com.intellectualcrafters.plot.object.Location;
import com.intellectualcrafters.plot.object.PlotPlayer;
2015-06-05 14:39:48 +02:00
import com.intellectualcrafters.plot.util.EconHandler;
2015-07-27 17:14:38 +02:00
import com.intellectualcrafters.plot.util.MainUtil;
2015-07-30 16:25:16 +02:00
import com.intellectualcrafters.plot.util.PlotGamemode;
import com.intellectualcrafters.plot.util.PlotWeather;
2015-07-27 09:26:50 +02:00
import com.intellectualcrafters.plot.util.UUIDHandler;
2015-07-30 19:24:01 +02:00
import com.plotsquared.bukkit.util.BukkitUtil;
2015-02-20 12:23:48 +01:00
2015-09-11 12:09:22 +02:00
public class BukkitPlayer extends PlotPlayer
{
2015-02-20 12:23:48 +01:00
public final Player player;
private UUID uuid;
private String name;
2015-04-06 14:16:24 +02:00
private long last = 0;
public HashSet<String> hasPerm = new HashSet<>();
public HashSet<String> noPerm = new HashSet<>();
2015-08-01 22:11:28 +02:00
public boolean offline;
2015-02-23 02:32:27 +01:00
2015-02-21 12:38:44 +01:00
/**
* Please do not use this method. Instead use BukkitUtil.getPlayer(Player), as it caches player objects.
* @param player
*/
2015-09-11 12:09:22 +02:00
public BukkitPlayer(final Player player)
{
2015-02-20 12:23:48 +01:00
this.player = player;
}
2015-09-11 12:09:22 +02:00
public BukkitPlayer(final Player player, final boolean offline)
{
2015-08-01 22:11:28 +02:00
this.player = player;
this.offline = offline;
}
2015-09-11 12:09:22 +02:00
@Override
public long getPreviousLogin()
{
if (last == 0)
{
2015-04-06 14:16:24 +02:00
last = player.getLastPlayed();
}
return last;
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public Location getLocation()
{
final Location loc = super.getLocation();
return loc == null ? BukkitUtil.getLocation(player) : loc;
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public UUID getUUID()
{
if (uuid == null)
{
uuid = UUIDHandler.getUUID(this);
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
return uuid;
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public boolean hasPermission(final String node)
{
if (Settings.PERMISSION_CACHING)
{
if (noPerm.contains(node)) { return false; }
if (hasPerm.contains(node)) { return true; }
}
2015-09-11 12:09:22 +02:00
if (offline && (EconHandler.manager != null)) { return EconHandler.manager.hasPermission(getName(), node); }
final boolean value = player.hasPermission(node);
if (Settings.PERMISSION_CACHING)
{
if (value)
{
hasPerm.add(node);
}
2015-09-11 12:09:22 +02:00
else
{
noPerm.add(node);
}
2015-08-01 22:11:28 +02:00
}
return value;
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
public Permission getPermission(final String node)
{
final PluginManager manager = Bukkit.getPluginManager();
Permission perm = manager.getPermission(node);
2015-09-11 12:09:22 +02:00
if (perm == null)
{
final String[] nodes = node.split("\\.");
perm = new Permission(node);
final StringBuilder n = new StringBuilder();
2015-09-11 12:09:22 +02:00
for (int i = 0; i < (nodes.length - 1); i++)
{
n.append(nodes[i] + ("."));
2015-09-11 12:09:22 +02:00
if (!node.equals(n + C.PERMISSION_STAR.s()))
{
final Permission parent = getPermission(n + C.PERMISSION_STAR.s());
if (parent != null)
{
perm.addParent(parent, true);
}
}
}
manager.addPermission(perm);
}
manager.recalculatePermissionDefaults(perm);
perm.recalculatePermissibles();
return perm;
}
2015-09-11 12:09:22 +02:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public void sendMessage(final String message)
{
player.sendMessage(message);
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
2015-07-27 17:14:38 +02:00
@Override
2015-09-11 12:09:22 +02:00
public void sendMessage(final C c, final String... args)
{
2015-07-27 17:14:38 +02:00
MainUtil.sendMessage(this, c, args);
}
2015-09-11 12:09:22 +02:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public void teleport(final Location loc)
{
if ((Math.abs(loc.getX()) >= 30000000) || (Math.abs(loc.getZ()) >= 30000000)) { return; }
player.teleport(new org.bukkit.Location(BukkitUtil.getWorld(loc.getWorld()), loc.getX() + 0.5, loc.getY(), loc.getZ() + 0.5, loc.getYaw(), loc.getPitch()), TeleportCause.COMMAND);
2015-02-23 02:32:27 +01:00
}
2015-09-11 12:09:22 +02:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public String getName()
{
if (name == null)
{
name = player.getName();
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
return name;
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
2015-02-20 12:23:48 +01:00
@Override
2015-09-11 12:09:22 +02:00
public boolean isOnline()
{
return !offline && player.isOnline();
2015-02-20 12:23:48 +01:00
}
2015-09-11 12:09:22 +02:00
2015-02-22 13:46:47 +01:00
@Override
2015-09-11 12:09:22 +02:00
public void setCompassTarget(final Location loc)
{
player.setCompassTarget(new org.bukkit.Location(BukkitUtil.getWorld(loc.getWorld()), loc.getX(), loc.getY(), loc.getZ()));
2015-02-23 02:32:27 +01:00
2015-02-22 13:46:47 +01:00
}
2015-02-23 02:32:27 +01:00
2015-02-23 12:37:36 +01:00
@Override
2015-09-11 12:09:22 +02:00
public Location getLocationFull()
{
return BukkitUtil.getLocationFull(player);
2015-02-23 12:37:36 +01:00
}
2015-05-04 11:52:37 +02:00
2015-06-05 14:39:48 +02:00
@Override
2015-09-11 12:09:22 +02:00
public void setAttribute(String key)
{
2015-06-05 14:42:45 +02:00
key = "plotsquared_user_attributes." + key;
2015-09-11 12:09:22 +02:00
if ((EconHandler.manager == null) || player.hasPermission("plotsquared_user_attributes.*"))
{
setMeta(key, true);
return;
}
2015-08-01 22:11:28 +02:00
EconHandler.manager.setPermission(getName(), key, true);
2015-06-05 14:39:48 +02:00
}
@Override
2015-09-11 12:09:22 +02:00
public boolean getAttribute(String key)
{
2015-06-05 14:42:45 +02:00
key = "plotsquared_user_attributes." + key;
2015-09-11 12:09:22 +02:00
if ((EconHandler.manager == null) || player.hasPermission("plotsquared_user_attributes.*"))
{
final Object v = getMeta(key);
return v == null ? false : (Boolean) v;
}
2015-06-05 15:05:17 +02:00
Permission perm = Bukkit.getServer().getPluginManager().getPermission(key);
2015-09-11 12:09:22 +02:00
if (perm == null)
{
2015-06-05 15:05:17 +02:00
perm = new Permission(key, PermissionDefault.FALSE);
Bukkit.getServer().getPluginManager().addPermission(perm);
Bukkit.getServer().getPluginManager().recalculatePermissionDefaults(perm);
}
2015-06-05 14:39:48 +02:00
return player.hasPermission(key);
}
@Override
2015-09-11 12:09:22 +02:00
public void removeAttribute(String key)
{
2015-06-05 14:42:45 +02:00
key = "plotsquared_user_attributes." + key;
2015-09-11 12:09:22 +02:00
if ((EconHandler.manager == null) || player.hasPermission("plotsquared_user_attributes.*"))
{
deleteMeta(key);
return;
}
2015-08-01 22:11:28 +02:00
EconHandler.manager.setPermission(getName(), key, false);
2015-06-05 14:39:48 +02:00
}
@Override
2015-09-11 12:09:22 +02:00
public void loadData()
{
if (!player.isOnline())
{
player.loadData();
}
}
@Override
2015-09-11 12:09:22 +02:00
public void saveData()
{
player.saveData();
}
2015-07-27 17:14:38 +02:00
2015-07-30 16:25:16 +02:00
@Override
2015-09-11 12:09:22 +02:00
public void setWeather(final PlotWeather weather)
{
switch (weather)
{
2015-07-30 16:25:16 +02:00
case CLEAR:
player.setPlayerWeather(WeatherType.CLEAR);
return;
2015-09-11 12:09:22 +02:00
case RAIN:
{
2015-07-30 16:25:16 +02:00
player.setPlayerWeather(WeatherType.DOWNFALL);
return;
}
case RESET:
player.resetPlayerWeather();
return;
}
}
@Override
2015-09-11 12:09:22 +02:00
public PlotGamemode getGamemode()
{
switch (player.getGameMode())
{
2015-07-30 16:25:16 +02:00
case ADVENTURE:
return PlotGamemode.ADVENTURE;
case CREATIVE:
return PlotGamemode.CREATIVE;
case SPECTATOR:
return PlotGamemode.SPECTATOR;
case SURVIVAL:
return PlotGamemode.SURVIVAL;
}
return null;
}
@Override
2015-09-11 12:09:22 +02:00
public void setGamemode(final PlotGamemode gamemode)
{
switch (gamemode)
{
2015-07-30 16:25:16 +02:00
case ADVENTURE:
player.setGameMode(GameMode.ADVENTURE);
2015-08-07 01:30:08 +02:00
return;
2015-07-30 16:25:16 +02:00
case CREATIVE:
player.setGameMode(GameMode.CREATIVE);
2015-08-07 01:30:08 +02:00
return;
2015-07-30 16:25:16 +02:00
case SPECTATOR:
player.setGameMode(GameMode.SPECTATOR);
2015-08-07 01:30:08 +02:00
return;
2015-07-30 16:25:16 +02:00
case SURVIVAL:
player.setGameMode(GameMode.SURVIVAL);
2015-08-07 01:30:08 +02:00
return;
2015-07-30 16:25:16 +02:00
}
}
@Override
2015-09-11 12:09:22 +02:00
public void setTime(final long time)
{
2015-07-30 16:25:16 +02:00
player.setPlayerTime(time, false);
}
@Override
2015-09-11 12:09:22 +02:00
public void setFlight(final boolean fly)
{
2015-07-30 16:25:16 +02:00
player.setAllowFlight(fly);
}
@Override
2015-09-11 12:09:22 +02:00
public void playMusic(final Location loc, final int id)
{
player.playEffect(BukkitUtil.getLocation(loc), Effect.RECORD_PLAY, id);
2015-07-30 16:25:16 +02:00
}
@Override
2015-09-11 12:09:22 +02:00
public void kick(final String message)
{
2015-07-30 16:25:16 +02:00
player.kickPlayer(message);
}
2015-02-20 12:23:48 +01:00
}