use of org.spongepowered.api.command.CommandResult in project Nucleus by NucleusPowered.
the class ItemInfoCommand method executeCommand.
@Override
public CommandResult executeCommand(Player player, CommandContext args) throws Exception {
Optional<CatalogType> catalogTypeOptional = args.getOne(key);
ItemStack it;
if (catalogTypeOptional.isPresent()) {
CatalogType ct = catalogTypeOptional.get();
if (ct instanceof ItemType) {
it = ((ItemType) ct).getTemplate().createStack();
} else {
BlockState bs = ((BlockState) ct);
it = bs.getType().getItem().orElseThrow(() -> new CommandException(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.invalidblockstate"))).getTemplate().createStack();
it.offer(Keys.ITEM_BLOCKSTATE, bs);
}
} else if (player.getItemInHand(HandTypes.MAIN_HAND).isPresent()) {
it = player.getItemInHand(HandTypes.MAIN_HAND).get();
} else {
player.sendMessage(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.none"));
return CommandResult.empty();
}
final List<Text> lt = new ArrayList<>();
String id = it.getType().getId().toLowerCase();
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.id", it.getType().getId(), it.getTranslation().get()));
Optional<BlockState> obs = it.get(Keys.ITEM_BLOCKSTATE);
if (obs.isPresent()) {
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.extendedid", obs.get().getId()));
id = obs.get().getId().toLowerCase();
}
if (args.hasAny("e") || args.hasAny("extended")) {
// For each key, see if the item supports it. If so, get and
// print the value.
DataScanner.getInstance().getKeysForHolder(it).entrySet().stream().filter(x -> x.getValue() != null).filter(x -> {
// Work around a Sponge bug.
try {
return it.supports(x.getValue());
} catch (Exception e) {
return false;
}
}).forEach(x -> {
Key<? extends BaseValue<Object>> k = (Key<? extends BaseValue<Object>>) x.getValue();
if (it.get(k).isPresent()) {
DataScanner.getText(player, "command.iteminfo.key", x.getKey(), it.get(k).get()).ifPresent(lt::add);
}
});
}
ItemDataNode itemDataNode = itemDataService.getDataForItem(id);
// /buy and /sell prices
if (econHelper.economyServiceExists() && plugin.getModuleContainer().isModuleLoaded(ServerShopModule.ID)) {
boolean space = false;
double buyPrice = itemDataNode.getServerBuyPrice();
if (buyPrice >= 0) {
lt.add(Text.EMPTY);
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.buyprice", econHelper.getCurrencySymbol(buyPrice)));
space = true;
}
double sellPrice = itemDataNode.getServerSellPrice();
if (sellPrice >= 0) {
if (!space) {
lt.add(Text.EMPTY);
}
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.sellprice", econHelper.getCurrencySymbol(sellPrice)));
}
}
List<String> aliases = itemDataNode.getAliases();
if (!aliases.isEmpty()) {
lt.add(Text.EMPTY);
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.list.aliases"));
Text.Builder tb = Text.builder();
Iterator<String> iterator = aliases.iterator();
tb.append(Text.of(TextColors.YELLOW, iterator.next()));
while (iterator.hasNext()) {
tb.append(comma, Text.of(TextColors.YELLOW, iterator.next()));
}
lt.add(tb.build());
}
Sponge.getServiceManager().provideUnchecked(PaginationService.class).builder().contents(lt).padding(Text.of(TextColors.GREEN, "-")).title(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.list.header")).sendTo(player);
return CommandResult.success();
}
use of org.spongepowered.api.command.CommandResult in project Nucleus by NucleusPowered.
the class BlockInfoCommand method executeCommand.
@Override
public CommandResult executeCommand(Player player, CommandContext args) throws Exception {
BlockRay<World> bl = BlockRay.from(player).distanceLimit(10).stopFilter(BlockRay.continueAfterFilter(BlockRay.onlyAirFilter(), 1)).build();
Optional<BlockRayHit<World>> ob = bl.end();
// If the last block is not air...
if (ob.isPresent() && ob.get().getLocation().getBlockType() != BlockTypes.AIR) {
BlockRayHit<World> brh = ob.get();
// get the information.
BlockState b = brh.getLocation().getBlock();
BlockType it = b.getType();
List<Text> lt = new ArrayList<>();
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.blockinfo.id", it.getId(), it.getTranslation().get()));
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.iteminfo.extendedid", b.getId()));
if (args.hasAny("e") || args.hasAny("extended")) {
Collection<Property<?, ?>> cp = b.getApplicableProperties();
if (!cp.isEmpty()) {
cp.forEach(x -> {
if (x.getValue() != null) {
DataScanner.getText(player, "command.blockinfo.property.item", x.getKey().toString(), x.getValue()).ifPresent(lt::add);
}
});
}
Collection<BlockTrait<?>> cb = b.getTraits();
if (!cb.isEmpty()) {
cb.forEach(x -> b.getTraitValue(x).ifPresent(v -> DataScanner.getText(player, "command.blockinfo.traits.item", x.getName(), v).ifPresent(lt::add)));
}
}
Sponge.getServiceManager().provideUnchecked(PaginationService.class).builder().contents(lt).padding(Text.of(TextColors.GREEN, "-")).title(plugin.getMessageProvider().getTextMessageWithFormat("command.blockinfo.list.header", String.valueOf(brh.getBlockX()), String.valueOf(brh.getBlockY()), String.valueOf(brh.getBlockZ()))).sendTo(player);
return CommandResult.success();
}
player.sendMessage(plugin.getMessageProvider().getTextMessageWithFormat("command.blockinfo.none"));
return CommandResult.empty();
}
use of org.spongepowered.api.command.CommandResult in project Nucleus by NucleusPowered.
the class GetFromIpCommand method executeCommand.
@Override
protected CommandResult executeCommand(CommandSource src, CommandContext args) throws Exception {
String ip = args.<String>getOne(ipKey).get();
if (Arrays.stream(ip.split("\\.")).anyMatch(x -> Integer.parseInt(x) > 255)) {
throw ReturnMessageException.fromKey("command.getfromip.notvalid");
}
UserStorageService uss = Sponge.getServiceManager().provideUnchecked(UserStorageService.class);
List<User> users = plugin.getUserCacheService().getForIp(ip).stream().map(uss::get).filter(Optional::isPresent).map(Optional::get).collect(Collectors.toList());
if (users.isEmpty()) {
src.sendMessage(plugin.getMessageProvider().getTextMessageWithFormat("command.getfromip.nousers"));
return CommandResult.success();
}
NameUtil name = plugin.getNameUtil();
Util.getPaginationBuilder(src).title(plugin.getMessageProvider().getTextMessageWithFormat("command.getfromip.title", ip)).contents(users.stream().map(y -> {
Text n = name.getName(y);
return n.toBuilder().onClick(TextActions.runCommand("/nucleus:seen " + y.getName())).onHover(TextActions.showText(plugin.getMessageProvider().getTextMessageWithTextFormat("command.getfromip.hover", n))).build();
}).collect(Collectors.toList())).sendTo(src);
return CommandResult.success();
}
use of org.spongepowered.api.command.CommandResult in project Nucleus by NucleusPowered.
the class ListPlayerCommand method executeCommand.
@Override
public CommandResult executeCommand(CommandSource src, CommandContext args) throws Exception {
boolean showVanished = this.permissions.testSuffix(src, "seevanished");
Collection<Player> players = Sponge.getServer().getOnlinePlayers();
long playerCount = players.size();
long hiddenCount = players.stream().filter(x -> x.get(Keys.VANISH).orElse(false)).count();
Text header;
if (showVanished && hiddenCount > 0) {
header = plugin.getMessageProvider().getTextMessageWithFormat("command.list.playercount.hidden", String.valueOf(playerCount), String.valueOf(Sponge.getServer().getMaxPlayers()), String.valueOf(hiddenCount));
} else {
header = plugin.getMessageProvider().getTextMessageWithFormat("command.list.playercount.base", String.valueOf(playerCount - hiddenCount), String.valueOf(Sponge.getServer().getMaxPlayers()));
}
src.sendMessage(header);
Optional<PermissionService> optPermissionService = Sponge.getServiceManager().provide(PermissionService.class);
if (this.listConfig.isGroupByPermissionGroup() && optPermissionService.isPresent()) {
listByPermissionGroup(optPermissionService.get(), players, src, showVanished);
} else {
// If we have players, send them on.
getPlayerList(players, showVanished).ifPresent(src::sendMessage);
}
return CommandResult.success();
}
use of org.spongepowered.api.command.CommandResult in project Nucleus by NucleusPowered.
the class MailReadBase method executeCommand.
public CommandResult executeCommand(CommandSource src, final User target, Collection<NucleusMailService.MailFilter> lmf) {
List<MailData> lmd;
if (!lmf.isEmpty()) {
lmd = handler.getMailInternal(target, lmf.toArray(new NucleusMailService.MailFilter[lmf.size()]));
} else {
lmd = handler.getMailInternal(target);
}
if (lmd.isEmpty()) {
if (src instanceof Player && target.getUniqueId().equals(((Player) src).getUniqueId())) {
src.sendMessage(Nucleus.getNucleus().getMessageProvider().getTextMessageWithFormat(!lmf.isEmpty() ? "command.mail.none.filter" : "command.mail.none.normal.self"));
} else {
src.sendMessage(Nucleus.getNucleus().getMessageProvider().getTextMessageWithFormat(!lmf.isEmpty() ? "command.mail.none.filter" : "command.mail.none.normal.other", target.getName()));
}
return CommandResult.success();
}
List<Text> mails = lmd.stream().sorted(Comparator.comparing(MailMessage::getDate)).map(x -> createMessage(x, target)).collect(Collectors.toList());
// Paginate the mail.
PaginationService ps = Sponge.getServiceManager().provideUnchecked(PaginationService.class);
PaginationList.Builder b = ps.builder().padding(Text.of(TextColors.GREEN, "-")).title(getHeader(src, target, !lmf.isEmpty())).contents(mails);
if (!(src instanceof Player)) {
b.linesPerPage(-1);
} else {
b.header(Nucleus.getNucleus().getMessageProvider().getTextMessageWithFormat("mail.header"));
}
b.sendTo(src);
return CommandResult.success();
}
Aggregations