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

203 lines
5.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-27 17:14:38 +02:00
import com.intellectualcrafters.plot.commands.RequiredType;
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-27 09:26:50 +02:00
import com.intellectualcrafters.plot.util.UUIDHandler;
2015-07-26 16:51:12 +02:00
import com.plotsquared.bukkit.util.bukkit.BukkitUtil;
2015-07-27 19:50:04 +02:00
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.permissions.Permission;
import org.bukkit.permissions.PermissionDefault;
import java.util.HashMap;
import java.util.HashSet;
import java.util.UUID;
2015-02-20 12:23:48 +01:00
public class BukkitPlayer implements PlotPlayer {
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
public final Player player;
private UUID uuid;
private String name;
2015-02-21 07:42:30 +01:00
private int op = 0;
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-05-04 11:52:37 +02:00
private HashMap<String, Object> meta;
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-02-23 02:32:27 +01:00
public BukkitPlayer(final Player player) {
2015-02-20 12:23:48 +01:00
this.player = player;
}
2015-04-06 14:16:24 +02:00
public long getPreviousLogin() {
if (last == 0) {
last = player.getLastPlayed();
}
return last;
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
public Location getLocation() {
return BukkitUtil.getLocation(this.player);
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
public UUID getUUID() {
if (this.uuid == null) {
2015-02-21 13:52:50 +01:00
this.uuid = UUIDHandler.getUUID(this);
2015-02-20 12:23:48 +01:00
}
return this.uuid;
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
2015-02-23 02:32:27 +01:00
public boolean hasPermission(final String perm) {
2015-03-12 10:28:08 +01:00
if (Settings.PERMISSION_CACHING) {
if (this.noPerm.contains(perm)) {
return false;
}
if (this.hasPerm.contains(perm)) {
return true;
}
final boolean result = this.player.hasPermission(perm);
if (!result) {
this.noPerm.add(perm);
return false;
}
this.hasPerm.add(perm);
2015-02-21 07:42:30 +01:00
return true;
}
2015-03-12 10:28:08 +01:00
return this.player.hasPermission(perm);
2015-02-20 12:23:48 +01:00
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
2015-02-23 02:32:27 +01:00
public void sendMessage(final String message) {
2015-02-20 12:23:48 +01:00
this.player.sendMessage(message);
}
2015-02-23 02:32:27 +01:00
2015-07-27 17:14:38 +02:00
@Override
public void sendMessage(C c, String... args) {
MainUtil.sendMessage(this, c, args);
}
2015-02-20 12:23:48 +01:00
@Override
2015-02-23 02:32:27 +01:00
public void teleport(final Location loc) {
2015-07-20 07:14:46 +02:00
this.player.teleport(new org.bukkit.Location(BukkitUtil.getWorld(loc.getWorld()), loc.getX() + 0.5, loc.getY(), loc.getZ() + 0.5, loc.getYaw(), loc.getPitch()));
2015-02-23 02:32:27 +01:00
}
2015-02-20 12:23:48 +01:00
@Override
public boolean isOp() {
2015-02-21 07:42:30 +01:00
if (this.op != 0) {
2015-07-27 19:50:04 +02:00
return this.op != 1;
2015-02-21 07:42:30 +01:00
}
2015-02-23 02:32:27 +01:00
final boolean result = this.player.isOp();
2015-02-21 07:42:30 +01:00
if (!result) {
this.op = 1;
return false;
}
this.op = 2;
return true;
2015-02-20 12:23:48 +01:00
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
public String getName() {
if (this.name == null) {
2015-02-23 02:32:27 +01:00
this.name = this.player.getName();
2015-02-20 12:23:48 +01:00
}
return this.name;
}
2015-02-23 02:32:27 +01:00
2015-02-20 12:23:48 +01:00
@Override
public boolean isOnline() {
return this.player.isOnline();
}
2015-02-23 02:32:27 +01:00
2015-02-22 13:46:47 +01:00
@Override
2015-02-23 02:32:27 +01:00
public void setCompassTarget(final Location loc) {
this.player.setCompassTarget(new org.bukkit.Location(BukkitUtil.getWorld(loc.getWorld()), loc.getX(), loc.getY(), loc.getZ()));
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
public Location getLocationFull() {
return BukkitUtil.getLocationFull(this.player);
}
2015-05-04 11:52:37 +02:00
@Override
public void setMeta(String key, Object value) {
if (this.meta == null) {
this.meta = new HashMap<String, Object>();
}
this.meta.put(key, value);
}
@Override
public Object getMeta(String key) {
if (this.meta != null) {
return this.meta.get(key);
}
return null;
}
@Override
public void deleteMeta(String key) {
if (this.meta != null) {
this.meta.remove(key);
}
}
@Override
public String toString() {
return getName();
}
2015-06-05 14:39:48 +02:00
@Override
public void setAttribute(String key) {
2015-06-05 14:42:45 +02:00
key = "plotsquared_user_attributes." + key;
2015-06-05 14:39:48 +02:00
EconHandler.manager.setPermission(this, key, true);
}
@Override
public boolean getAttribute(String key) {
2015-06-05 14:42:45 +02:00
key = "plotsquared_user_attributes." + key;
2015-06-05 15:05:17 +02:00
Permission perm = Bukkit.getServer().getPluginManager().getPermission(key);
if (perm == null) {
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
public void removeAttribute(String key) {
2015-06-05 14:42:45 +02:00
key = "plotsquared_user_attributes." + key;
2015-06-05 14:39:48 +02:00
EconHandler.manager.setPermission(this, key, false);
}
@Override
public void loadData() {
if (!player.isOnline()) {
player.loadData();
}
}
@Override
public void saveData() {
player.saveData();
}
2015-07-27 17:14:38 +02:00
@Override
public RequiredType getSuperCaller() {
return RequiredType.PLAYER;
}
2015-02-20 12:23:48 +01:00
}