/* * WorldEdit * Copyright (C) 2012 sk89q and contributors * * 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 . */ // $Id$ package com.sk89q.worldedit.spout; import com.sk89q.worldedit.LocalPlayer; import com.sk89q.worldedit.LocalWorld; import com.sk89q.worldedit.ServerInterface; import com.sk89q.worldedit.Vector; import com.sk89q.worldedit.WorldVector; import com.sk89q.worldedit.bags.BlockBag; import com.sk89q.worldedit.cui.CUIEvent; import org.spout.api.Client; import org.spout.api.chat.style.ChatStyle; import org.spout.api.entity.Controller; import org.spout.api.geo.discrete.Point; import org.spout.api.inventory.ItemStack; import org.spout.api.entity.Player; import org.spout.vanilla.material.VanillaMaterial; import org.spout.vanilla.material.VanillaMaterials; import org.spout.vanilla.entity.VanillaPlayerController; public class SpoutPlayer extends LocalPlayer { private Player player; @SuppressWarnings("unused") private WorldEditPlugin plugin; public SpoutPlayer(WorldEditPlugin plugin, ServerInterface server, Player player) { super(server); this.plugin = plugin; this.player = player; } @Override public int getItemInHand() { Controller controller = player.getController(); if (controller instanceof VanillaPlayerController) { ItemStack itemStack = ((VanillaPlayerController) controller).getInventory().getQuickbar().getCurrentItem(); return itemStack != null ? ((VanillaMaterial) itemStack.getMaterial()).getMinecraftId() : 0; } else { return 0; } } @Override public String getName() { return player.getName(); } @Override public WorldVector getPosition() { Point loc = player.getPosition(); return new WorldVector(SpoutUtil.getLocalWorld(loc.getWorld()), loc.getX(), loc.getY(), loc.getZ()); } @Override public double getPitch() { return player.getPitch(); } @Override public double getYaw() { return player.getYaw(); } @Override public void giveItem(int type, int amt) { Controller controller = player.getController(); if (controller instanceof VanillaPlayerController) { ((VanillaPlayerController) controller).getInventory() .addItem(new ItemStack(VanillaMaterials.getMaterial((short) type), amt)); } } @Override public void printRaw(String msg) { for (String part : msg.split("\n")) { player.sendMessage(part); } } @Override public void print(String msg) { for (String part : msg.split("\n")) { player.sendMessage(ChatStyle.PINK, part); } } @Override public void printDebug(String msg) { for (String part : msg.split("\n")) { player.sendMessage(ChatStyle.GRAY, part); } } @Override public void printError(String msg) { for (String part : msg.split("\n")) { player.sendMessage(ChatStyle.RED, part); } } @Override public void setPosition(Vector pos, float pitch, float yaw) { player.setPosition(SpoutUtil.toPoint(player.getWorld(), pos)); player.setPitch(pitch); player.setYaw(yaw); player.getNetworkSynchronizer().setPositionDirty(); } @Override public String[] getGroups() { return player.getGroups(); } @Override public BlockBag getInventoryBlockBag() { return new SpoutPlayerBlockBag(player); } @Override public boolean hasPermission(String perm) { return player.hasPermission(perm); } @Override public LocalWorld getWorld() { return SpoutUtil.getLocalWorld(player.getWorld()); } @Override public void dispatchCUIEvent(CUIEvent event) { player.getSession().send(player.getSession().getEngine() instanceof Client, new WorldEditCUIMessage(event)); } public Player getPlayer() { return player; } }