mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-03 18:16:23 +02:00
172 lines
8.1 KiB
Java
172 lines
8.1 KiB
Java
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// PlotSquared - A plot manager and world generator for the Bukkit API /
|
|
// Copyright (c) 2014 IntellectualSites/IntellectualCrafters /
|
|
// /
|
|
// 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, write to the Free Software Foundation, /
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA /
|
|
// /
|
|
// You can contact us via: support@intellectualsites.com /
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
package com.intellectualcrafters.plot.commands;
|
|
|
|
import java.util.UUID;
|
|
|
|
import com.intellectualcrafters.plot.config.C;
|
|
import com.intellectualcrafters.plot.database.DBFunc;
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
import com.intellectualcrafters.plot.object.PlotInventory;
|
|
import com.intellectualcrafters.plot.object.PlotItemStack;
|
|
import com.intellectualcrafters.plot.object.PlotPlayer;
|
|
import com.intellectualcrafters.plot.object.RunnableVal;
|
|
import com.intellectualcrafters.plot.util.MainUtil;
|
|
import com.plotsquared.general.commands.CommandDeclaration;
|
|
|
|
@CommandDeclaration(command = "info", aliases = { "i" }, description = "Display plot info", usage = "/plot info <id>", category = CommandCategory.INFO)
|
|
public class Info extends SubCommand {
|
|
|
|
@Override
|
|
public boolean onCommand(final PlotPlayer player, String[] args) {
|
|
String arg = null;
|
|
Plot plot;
|
|
if (args.length > 0) {
|
|
arg = args[0] + "";
|
|
}
|
|
if (arg != null) {
|
|
switch (arg) {
|
|
case "trusted":
|
|
case "alias":
|
|
case "inv":
|
|
case "biome":
|
|
case "denied":
|
|
case "flags":
|
|
case "id":
|
|
case "size":
|
|
case "members":
|
|
case "owner":
|
|
case "rating":
|
|
plot = MainUtil.getPlotFromString(player, null, false);
|
|
break;
|
|
default:
|
|
plot = MainUtil.getPlotFromString(player, arg, false);
|
|
if (args.length == 2) {
|
|
arg = args[1];
|
|
} else {
|
|
arg = null;
|
|
}
|
|
break;
|
|
}
|
|
} else {
|
|
plot = MainUtil.getPlotFromString(player, null, false);
|
|
}
|
|
if ((plot == null) && (arg != null)) {
|
|
plot = MainUtil.getPlotFromString(player, null, false);
|
|
}
|
|
if (plot == null) {
|
|
MainUtil.sendMessage(player, C.NOT_IN_PLOT);
|
|
return false;
|
|
}
|
|
if (arg != null) {
|
|
if (args.length == 1) {
|
|
args = new String[0];
|
|
} else {
|
|
args = new String[] { args[1] };
|
|
}
|
|
}
|
|
if ((args.length == 1) && args[0].equalsIgnoreCase("inv")) {
|
|
final PlotInventory inv = new PlotInventory(player) {
|
|
@Override
|
|
public boolean onClick(final int index) {
|
|
// TODO InfoInventory not implemented yet!!!!!!!!
|
|
// See plot rating or musicsubcommand on examples
|
|
return false;
|
|
}
|
|
};
|
|
final UUID uuid = player.getUUID();
|
|
final String name = MainUtil.getName(plot.owner);
|
|
inv.setItem(1, new PlotItemStack(388, (short) 0, 1, "&cPlot Info", new String[] {
|
|
"&cID: &6" + plot.getId().toString(),
|
|
"&cOwner: &6" + name,
|
|
"&cAlias: &6" + plot.getAlias(),
|
|
"&cBiome: &6" + plot.getBiome().toString().replaceAll("_", "").toLowerCase(),
|
|
"&cCan Build: &6" + plot.isAdded(uuid),
|
|
"&cIs Denied: &6" + plot.isDenied(uuid) }));
|
|
inv.setItem(1, new PlotItemStack(388, (short) 0, 1, "&cTrusted", new String[] { "&cAmount: &6" + plot.getTrusted().size(), "&8Click to view a list of the trusted users" }));
|
|
inv.setItem(1, new PlotItemStack(388, (short) 0, 1, "&cMembers", new String[] { "&cAmount: &6" + plot.getMembers().size(), "&8Click to view a list of plot members" }));
|
|
inv.setItem(1, new PlotItemStack(388, (short) 0, 1, "&cDenied", new String[] { "&cDenied", "&cAmount: &6" + plot.getDenied().size(), "&8Click to view a list of denied players" }));
|
|
inv.setItem(1, new PlotItemStack(388, (short) 0, 1, "&cFlags", new String[] { "&cFlags", "&cAmount: &6" + plot.getFlags().size(), "&8Click to view a list of plot flags" }));
|
|
inv.openInventory();
|
|
return true;
|
|
}
|
|
final boolean hasOwner = plot.hasOwner();
|
|
boolean containsEveryone;
|
|
boolean trustedEveryone;
|
|
// Wildcard player {added}
|
|
{
|
|
containsEveryone = (plot.getTrusted() != null) && plot.getTrusted().contains(DBFunc.everyone);
|
|
trustedEveryone = (plot.getMembers() != null) && plot.getMembers().contains(DBFunc.everyone);
|
|
}
|
|
// Unclaimed?
|
|
if (!hasOwner && !containsEveryone && !trustedEveryone) {
|
|
MainUtil.sendMessage(player, C.PLOT_INFO_UNCLAIMED, (plot.id.x + ";" + plot.id.y));
|
|
return true;
|
|
}
|
|
String info = C.PLOT_INFO.s();
|
|
boolean full;
|
|
if (arg != null) {
|
|
info = getCaption(arg);
|
|
if (info == null) {
|
|
MainUtil.sendMessage(player, "&6Categories&7: &amembers&7, &aalias&7, &abiome&7, &adenied&7, &aflags&7, &aid&7, &asize&7, &atrusted&7, &aowner&7, &arating");
|
|
return false;
|
|
}
|
|
full = true;
|
|
} else {
|
|
full = false;
|
|
}
|
|
MainUtil.format(info, plot, player, full, new RunnableVal<String>() {
|
|
@Override
|
|
public void run() {
|
|
MainUtil.sendMessage(player, C.PLOT_INFO_HEADER.s() + '\n' + value + '\n' + C.PLOT_INFO_FOOTER.s(), false);
|
|
}
|
|
});
|
|
return true;
|
|
}
|
|
|
|
private String getCaption(final String string) {
|
|
switch (string) {
|
|
case "trusted":
|
|
return C.PLOT_INFO_TRUSTED.s();
|
|
case "alias":
|
|
return C.PLOT_INFO_ALIAS.s();
|
|
case "biome":
|
|
return C.PLOT_INFO_BIOME.s();
|
|
case "denied":
|
|
return C.PLOT_INFO_DENIED.s();
|
|
case "flags":
|
|
return C.PLOT_INFO_FLAGS.s();
|
|
case "id":
|
|
return C.PLOT_INFO_ID.s();
|
|
case "size":
|
|
return C.PLOT_INFO_SIZE.s();
|
|
case "members":
|
|
return C.PLOT_INFO_MEMBERS.s();
|
|
case "owner":
|
|
return C.PLOT_INFO_OWNER.s();
|
|
case "rating":
|
|
return C.PLOT_INFO_RATING.s();
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
}
|