use of org.spongepowered.api.data.key.Key in project LanternServer by LanternPowered.
the class LanternBlockSnapshot method restore.
@Override
public boolean restore(boolean force, BlockChangeFlag flag) {
if (this.location == null) {
throw new IllegalStateException("This BlockSnapshot doesn't have a location.");
}
Location<World> loc = this.getLocation().orElse(null);
if (loc == null || (!force && loc.getBlockType() != this.state.getType())) {
return false;
}
loc.setBlock(this.state, flag);
final World world = loc.getExtent();
world.setCreator(this.location.position, this.creator.orElse(null));
world.setNotifier(this.location.position, this.notifier.orElse(null));
if (this.tileEntityData != null) {
final TileEntity tileEntity = loc.getTileEntity().orElse(null);
if (tileEntity != null) {
// noinspection unchecked
this.tileEntityData.forEach((key, value) -> tileEntity.offer((Key) key, value));
}
}
return true;
}
use of org.spongepowered.api.data.key.Key in project Nucleus by NucleusPowered.
the class EntityInfoCommand method executeCommand.
@Override
public CommandResult executeCommand(Player player, CommandContext args) throws Exception {
// Get all the entities in the world.
Vector3i playerPos = player.getLocation().getBlockPosition();
Collection<Entity> entities = player.getWorld().getEntities().stream().filter(// 11 blocks.
x -> x.getLocation().getBlockPosition().distanceSquared(playerPos) < 121).collect(Collectors.toList());
BlockRay<World> bl = BlockRay.from(player).distanceLimit(10).stopFilter(BlockRay.continueAfterFilter(x -> {
Vector3i pt1 = x.getLocation().getBlockPosition();
Vector3i pt2 = pt1.add(0, 1, 0);
return entities.stream().allMatch(e -> {
Vector3i current = e.getLocation().getBlockPosition();
// We don't want it to stop until one of these are hit.
return !(current.equals(pt1) || current.equals(pt2));
});
}, 1)).build();
Optional<BlockRayHit<World>> ob = bl.end();
if (ob.isPresent()) {
BlockRayHit<World> brh = ob.get();
Vector3d location = brh.getLocation().getPosition();
Vector3d locationOneUp = location.add(0, 1, 0);
Optional<Entity> entityOptional = entities.stream().filter(e -> {
Vector3i current = e.getLocation().getBlockPosition();
return current.equals(location.toInt()) || current.equals(locationOneUp.toInt());
}).sorted(Comparator.comparingDouble(x -> x.getLocation().getPosition().distanceSquared(location))).findFirst();
if (entityOptional.isPresent()) {
// Display info about the entity
Entity entity = entityOptional.get();
EntityType type = entity.getType();
List<Text> lt = new ArrayList<>();
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.entityinfo.id", type.getId(), Util.getTranslatableIfPresent(type)));
lt.add(plugin.getMessageProvider().getTextMessageWithFormat("command.entityinfo.uuid", entity.getUniqueId().toString()));
if (args.hasAny("e") || args.hasAny("extended")) {
// For each key, see if the entity supports it. If so, get and print the value.
DataScanner.getInstance().getKeysForHolder(entity).entrySet().stream().filter(x -> x.getValue() != null).filter(x -> {
// Work around a Sponge bug.
try {
return entity.supports(x.getValue());
} catch (Exception e) {
return false;
}
}).forEach(x -> {
Key<? extends BaseValue<Object>> k = (Key<? extends BaseValue<Object>>) x.getValue();
if (entity.get(k).isPresent()) {
DataScanner.getText(player, "command.entityinfo.key", x.getKey(), entity.get(k).get()).ifPresent(lt::add);
}
});
}
Sponge.getServiceManager().provideUnchecked(PaginationService.class).builder().contents(lt).padding(Text.of(TextColors.GREEN, "-")).title(plugin.getMessageProvider().getTextMessageWithFormat("command.entityinfo.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.entityinfo.none"));
return CommandResult.empty();
}
use of org.spongepowered.api.data.key.Key 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();
}
Aggregations