Added /tp

This commit is contained in:
Shoghi Cervantes 2014-04-02 19:04:07 +02:00
parent 8c4afcd21a
commit c81266d1da
3 changed files with 98 additions and 2 deletions

View File

@ -45,6 +45,7 @@ use pocketmine\command\defaults\SayCommand;
use pocketmine\command\defaults\SeedCommand; use pocketmine\command\defaults\SeedCommand;
use pocketmine\command\defaults\SpawnpointCommand; use pocketmine\command\defaults\SpawnpointCommand;
use pocketmine\command\defaults\StopCommand; use pocketmine\command\defaults\StopCommand;
use pocketmine\command\defaults\TeleportCommand;
use pocketmine\command\defaults\TellCommand; use pocketmine\command\defaults\TellCommand;
use pocketmine\command\defaults\VanillaCommand; use pocketmine\command\defaults\VanillaCommand;
use pocketmine\command\defaults\VersionCommand; use pocketmine\command\defaults\VersionCommand;
@ -94,6 +95,7 @@ class SimpleCommandMap implements CommandMap{
$this->register("pocketmine", new GamemodeCommand("gamemode")); $this->register("pocketmine", new GamemodeCommand("gamemode"));
$this->register("pocketmine", new KillCommand("kill")); $this->register("pocketmine", new KillCommand("kill"));
$this->register("pocketmine", new SpawnpointCommand("spawnpoint")); $this->register("pocketmine", new SpawnpointCommand("spawnpoint"));
$this->register("pocketmine", new TeleportCommand("tp"));
} }

View File

@ -66,8 +66,8 @@ class SpawnpointCommand extends VanillaCommand{
if(count($args) === 4){ if(count($args) === 4){
if($level !== null){ if($level !== null){
$x = (int) $this->getRelativeDouble($sender->x, $sender, $args[1]); $x = (int) $this->getRelativeDouble($sender->x, $sender, $args[1]);
$y = (int) $this->getRelativeDouble($sender->y, $sender, $args[2]); $y = (int) $this->getRelativeDouble($sender->y, $sender, $args[2], 0, 128);
$z = (int) $this->getRelativeDouble($sender->z, $sender, $args[3], 0, 128); $z = (int) $this->getRelativeDouble($sender->z, $sender, $args[3]);
$target->setSpawn(new Position($x, $y, $z, $level)); $target->setSpawn(new Position($x, $y, $z, $level));
Command::broadcastCommandMessage($sender, "Set ".$target->getName()."'s spawnpoint to ".$x.", ".$y.", ".$z); Command::broadcastCommandMessage($sender, "Set ".$target->getName()."'s spawnpoint to ".$x.", ".$y.", ".$z);
return true; return true;

View File

@ -0,0 +1,94 @@
<?php
/*
*
* ____ _ _ __ __ _ __ __ ____
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @author PocketMine Team
* @link http://www.pocketmine.net/
*
*
*/
namespace pocketmine\command\defaults;
use pocketmine\command\Command;
use pocketmine\command\CommandSender;
use pocketmine\level\Position;
use pocketmine\math\Vector3;
use pocketmine\Player;
use pocketmine\Server;
use pocketmine\utils\TextFormat;
class TeleportCommand extends VanillaCommand{
public function __construct($name){
parent::__construct(
$name,
"Teleports the given player (or yourself) to another player or coordinates",
"/tp [player] <target> and/or <x> <y> <z>"
);
$this->setPermission("pocketmine.command.teleport");
}
public function execute(CommandSender $sender, $currentAlias, array $args){
if(!$this->testPermission($sender)){
return true;
}
if(count($args) < 1 or count($args) > 4){
$sender->sendMessage(TextFormat::RED . "Usage: ".$this->usageMessage);
return true;
}
$target = null;
if(count($args) === 1 or count($args) === 3){
if($sender instanceof Player){
$target = $sender;
}else{
$sender->sendMessage(TextFormat::RED . "Please provide a player!");
return true;
}
}else{
$target = Server::getInstance()->getPlayer($args[0]);
if($target === null){
$sender->sendMessage(TextFormat::RED . "Can't find player ".$args[0]);
return true;
}
}
if(count($args) < 3){
$pos = new Position((int) $sender->x, (int) $sender->y, (int) $sender->z, $sender->getLevel());
$target->setSpawn($pos);
Command::broadcastCommandMessage($sender, "Set ".$target->getName()."'s spawnpoint to ".$pos->x.", ".$pos->y.", ".$pos->z);
return true;
}elseif($target->getLevel() !== null){
$pos = count($args) === 4 ? 2:1;
if($sender instanceof Player){
$x = $this->getRelativeDouble($sender->x, $sender, $args[$pos++]);
$y = $this->getRelativeDouble($sender->y, $sender, $args[$pos++], 0, 128);
$z = $this->getRelativeDouble($sender->z, $sender, $args[$pos]);
}else{
$x = $this->getDouble($sender, $args[$pos++]);
$y = $this->getDouble($sender, $args[$pos++], 0, 128);
$z = $this->getDouble($sender, $args[$pos]);
}
$target->teleport(new Vector3($x, $y, $z));
Command::broadcastCommandMessage($sender, "Teleported ".$target->getName()." to ".round($x, 2).", ".round($y, 2).", ".round($z, 2));
return true;
}
$sender->sendMessage(TextFormat::RED . "Usage: ".$this->usageMessage);
return true;
}
}