2010-10-11 10:22:47 +02:00
|
|
|
// $Id$
|
|
|
|
/*
|
|
|
|
* WorldEdit
|
|
|
|
* Copyright (C) 2010 sk89q <http://www.sk89q.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import com.sk89q.worldedit.Point;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author sk89q
|
|
|
|
*/
|
|
|
|
public class WorldEditPlayer {
|
|
|
|
private Player player;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a WorldEditPlayer.
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
*/
|
|
|
|
public WorldEditPlayer(Player player) {
|
|
|
|
this.player = player;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name of the player.
|
|
|
|
*
|
|
|
|
* @return String
|
|
|
|
*/
|
|
|
|
public String getName() {
|
|
|
|
return player.getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the point of the block that is being stood upon.
|
|
|
|
*
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return point
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
public Point getBlockOn() {
|
|
|
|
return Point.toBlockPoint(player.getX(), player.getY() - 1, player.getZ());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the point of the block that is being stood in.
|
|
|
|
*
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return point
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
public Point getBlockIn() {
|
|
|
|
return Point.toBlockPoint(player.getX(), player.getY(), player.getZ());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the player's position.
|
|
|
|
*
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return point
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
public Point getPosition() {
|
|
|
|
return new Point(player.getX(), player.getY(), player.getZ());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the player's view pitch.
|
|
|
|
*
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return pitch
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
public double getPitch() {
|
|
|
|
return player.getPitch();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the player's view yaw.
|
|
|
|
*
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return yaw
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
public double getYaw() {
|
|
|
|
return player.getRotation();
|
|
|
|
}
|
|
|
|
|
2010-10-12 22:51:25 +02:00
|
|
|
/**
|
|
|
|
* Get the ID of the item that the player is holding.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public int getItemInHand() {
|
|
|
|
return player.getItemInHand();
|
|
|
|
}
|
|
|
|
|
2010-10-11 10:22:47 +02:00
|
|
|
/**
|
|
|
|
* Print a WorldEdit message.
|
|
|
|
*
|
|
|
|
* @param msg
|
|
|
|
*/
|
|
|
|
public void print(String msg) {
|
|
|
|
player.sendMessage(Colors.LightPurple + msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print a WorldEdit error.
|
|
|
|
*
|
|
|
|
* @param msg
|
|
|
|
*/
|
|
|
|
public void printError(String msg) {
|
|
|
|
player.sendMessage(Colors.Rose + msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move the player.
|
|
|
|
*
|
|
|
|
* @param pos
|
|
|
|
* @param pitch
|
|
|
|
* @param yaw
|
|
|
|
*/
|
|
|
|
public void setPosition(Point pos, float pitch, float yaw) {
|
|
|
|
Location loc = new Location();
|
|
|
|
loc.x = pos.getX();
|
|
|
|
loc.y = pos.getY();
|
|
|
|
loc.z = pos.getZ();
|
|
|
|
loc.rotX = (float)yaw;
|
|
|
|
loc.rotY = (float)pitch;
|
|
|
|
player.teleportTo(loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find a position for the player to stand that is not inside a block.
|
|
|
|
* Blocks above the player will be iteratively tested until there is
|
|
|
|
* a series of two free blocks. The player will be teleported to
|
|
|
|
* that free position.
|
|
|
|
*/
|
|
|
|
public void findFreePosition() {
|
|
|
|
int x = (int)Math.floor(player.getX());
|
|
|
|
int y = (int)Math.floor(player.getY());
|
|
|
|
int origY = y;
|
|
|
|
int z = (int)Math.floor(player.getZ());
|
|
|
|
|
|
|
|
byte free = 0;
|
|
|
|
|
|
|
|
while (y <= 129) {
|
|
|
|
if (etc.getServer().getBlockIdAt(x, y, z) == 0) {
|
|
|
|
free++;
|
|
|
|
} else {
|
|
|
|
free = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (free == 2) {
|
|
|
|
if (y - 1 != origY) {
|
|
|
|
Location loc = new Location();
|
|
|
|
loc.x = x + 0.5;
|
|
|
|
loc.y = y - 1;
|
|
|
|
loc.z = z + 0.5;
|
|
|
|
loc.rotX = player.getRotation();
|
|
|
|
loc.rotY = player.getPitch();
|
|
|
|
player.teleportTo(loc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
y++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives the player an item.
|
|
|
|
*
|
|
|
|
* @param type
|
|
|
|
* @param amt
|
|
|
|
*/
|
|
|
|
public void giveItem(int type, int amt) {
|
|
|
|
player.giveItem(type, amt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if equal.
|
|
|
|
*
|
|
|
|
* @param other
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return whether the other object is equivalent
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object other) {
|
|
|
|
if (!(other instanceof WorldEditPlayer)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
WorldEditPlayer other2 = (WorldEditPlayer)other;
|
|
|
|
return other2.getName().equals(player.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the hash code.
|
|
|
|
*
|
2010-10-11 17:56:19 +02:00
|
|
|
* @return hash code
|
2010-10-11 10:22:47 +02:00
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
|
|
|
return getName().hashCode();
|
|
|
|
}
|
|
|
|
}
|