/****************************************************************************** * Multiverse 2 Copyright (c) the Multiverse Team 2011. * * Multiverse 2 is licensed under the BSD License. * * For more information please check the README.md file included * * with this project. * ******************************************************************************/ package com.onarandombox.MultiverseCore.commandsold; import com.onarandombox.MultiverseCore.MultiverseCore; import com.onarandombox.MultiverseCore.api.MVWorldManager; import com.onarandombox.MultiverseCore.api.MultiverseWorld; import org.bukkit.ChatColor; import org.bukkit.World; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import org.bukkit.permissions.PermissionDefault; import java.text.DecimalFormat; import java.util.List; /** * Returns detailed information on the Players where abouts. */ public class CoordCommand extends MultiverseCommand { private MVWorldManager worldManager; public CoordCommand(MultiverseCore plugin) { super(plugin); this.setName("Coordinates"); this.setCommandUsage("/mv coord"); this.setArgRange(0, 0); this.addKey("mv coord"); this.addKey("mvcoord"); this.addKey("mvco"); this.addCommandExample("/mv coord"); this.setPermission("multiverse.core.coord", "Returns detailed information on the Players where abouts.", PermissionDefault.OP); this.worldManager = this.plugin.getMVWorldManager(); } @Override public void runCommand(CommandSender sender, List args) { // Check if the command was sent from a Player. if (sender instanceof Player) { Player p = (Player) sender; World world = p.getWorld(); if (!this.worldManager.isMVWorld(world.getName())) { this.plugin.showNotMVWorldMessage(sender, world.getName()); return; } MultiverseWorld mvworld = this.worldManager.getMVWorld(world.getName()); p.sendMessage(ChatColor.AQUA + "--- Location Information ---"); p.sendMessage(ChatColor.AQUA + "World: " + ChatColor.WHITE + world.getName()); p.sendMessage(ChatColor.AQUA + "Alias: " + mvworld.getColoredWorldString()); p.sendMessage(ChatColor.AQUA + "World Scale: " + ChatColor.WHITE + mvworld.getScaling()); DecimalFormat df = new DecimalFormat(); df.setMinimumFractionDigits(0); df.setMaximumFractionDigits(2); p.sendMessage(ChatColor.AQUA + "Coordinates: " + ChatColor.WHITE + plugin.getLocationManipulation().strCoords(p.getLocation())); p.sendMessage(ChatColor.AQUA + "Direction: " + ChatColor.WHITE + plugin.getLocationManipulation().getDirection(p.getLocation())); p.sendMessage(ChatColor.AQUA + "Block: " + ChatColor.WHITE + world.getBlockAt(p.getLocation()).getType()); } else { sender.sendMessage("This command needs to be used from a Player."); } } }