Plex-FAWE/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayer.java

151 lines
4.3 KiB
Java
Raw Normal View History

2011-01-01 02:36:25 +00:00
// $Id$
/*
* WorldEdit
* Copyright (C) 2010 sk89q <http://www.sk89q.com> and contributors
2011-01-01 02:36:25 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.worldedit.bukkit;
2011-12-25 23:36:23 +00:00
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
2011-03-12 06:43:02 +00:00
import com.sk89q.util.StringUtil;
2011-01-01 02:36:25 +00:00
import com.sk89q.worldedit.*;
import com.sk89q.worldedit.bags.BlockBag;
2011-03-12 06:43:02 +00:00
import com.sk89q.worldedit.cui.CUIEvent;
2011-01-01 02:36:25 +00:00
2011-01-03 20:05:41 +00:00
public class BukkitPlayer extends LocalPlayer {
2011-01-01 02:36:25 +00:00
private Player player;
private WorldEditPlugin plugin;
2011-11-23 01:29:48 +00:00
public BukkitPlayer(WorldEditPlugin plugin, ServerInterface server, Player player) {
2011-01-03 20:05:41 +00:00
super(server);
this.plugin = plugin;
2011-01-01 02:36:25 +00:00
this.player = player;
}
@Override
public int getItemInHand() {
2011-01-09 19:43:47 +00:00
ItemStack itemStack = player.getItemInHand();
return itemStack != null ? itemStack.getTypeId() : 0;
2011-01-01 02:36:25 +00:00
}
@Override
public String getName() {
return player.getName();
}
@Override
2011-01-03 20:05:41 +00:00
public WorldVector getPosition() {
2011-01-01 02:36:25 +00:00
Location loc = player.getLocation();
return new WorldVector(BukkitUtil.getLocalWorld(loc.getWorld()),
2011-01-03 20:05:41 +00:00
loc.getX(), loc.getY(), loc.getZ());
2011-01-01 02:36:25 +00:00
}
@Override
public double getPitch() {
return player.getLocation().getPitch();
}
@Override
public double getYaw() {
return player.getLocation().getYaw();
}
@Override
public void giveItem(int type, int amt) {
player.getInventory().addItem(new ItemStack(type, amt));
2011-01-01 02:36:25 +00:00
}
@Override
public void printRaw(String msg) {
for (String part : msg.split("\n")) {
player.sendMessage(part);
}
2011-01-01 02:36:25 +00:00
}
@Override
public void print(String msg) {
for (String part : msg.split("\n")) {
player.sendMessage("\u00A7d" + part);
}
2011-01-01 02:36:25 +00:00
}
2011-02-01 07:51:55 +00:00
@Override
public void printDebug(String msg) {
for (String part : msg.split("\n")) {
player.sendMessage("\u00A77" + part);
}
2011-02-01 07:51:55 +00:00
}
2011-01-01 02:36:25 +00:00
@Override
public void printError(String msg) {
for (String part : msg.split("\n")) {
player.sendMessage("\u00A7c" + part);
}
2011-01-01 02:36:25 +00:00
}
@Override
public void setPosition(Vector pos, float pitch, float yaw) {
2011-03-27 18:12:35 +00:00
player.teleport(new Location(player.getWorld(), pos.getX(), pos.getY(),
2011-01-08 21:03:18 +00:00
pos.getZ(), yaw, pitch));
2011-01-01 02:36:25 +00:00
}
@Override
public String[] getGroups() {
return plugin.getPermissionsResolver().getGroups(player);
2011-01-01 02:36:25 +00:00
}
@Override
public BlockBag getInventoryBlockBag() {
2011-01-18 05:11:39 +00:00
return new BukkitPlayerBlockBag(player);
2011-01-01 02:36:25 +00:00
}
@Override
public boolean hasPermission(String perm) {
2011-02-22 06:28:23 +00:00
return (!plugin.getLocalConfiguration().noOpPermissions && player.isOp())
|| plugin.getPermissionsResolver().hasPermission(
player.getWorld().getName(), player, perm);
2011-01-01 02:36:25 +00:00
}
2011-01-03 20:05:41 +00:00
@Override
public LocalWorld getWorld() {
return BukkitUtil.getLocalWorld(player.getWorld());
2011-01-03 20:05:41 +00:00
}
2011-11-23 01:29:48 +00:00
2011-03-12 06:43:02 +00:00
@Override
public void dispatchCUIEvent(CUIEvent event) {
String[] params = event.getParameters();
2011-11-23 01:29:48 +00:00
2011-03-12 06:43:02 +00:00
if (params.length > 0) {
player.sendRawMessage("\u00A75\u00A76\u00A74\u00A75" + event.getTypeId()
2011-03-12 06:43:02 +00:00
+ "|" + StringUtil.joinString(params, "|"));
} else {
player.sendRawMessage("\u00A75\u00A76\u00A74\u00A75" + event.getTypeId());
2011-03-12 06:43:02 +00:00
}
}
2011-11-23 01:29:48 +00:00
2011-03-12 06:43:02 +00:00
@Override
public void dispatchCUIHandshake() {
player.sendRawMessage("\u00A75\u00A76\u00A74\u00A75");
player.sendRawMessage("\u00A74\u00A75\u00A73\u00A74");
2011-03-12 06:43:02 +00:00
}
public Player getPlayer() {
return player;
}
2011-01-01 02:36:25 +00:00
}