use of org.cubeengine.converter.node.MapNode in project modules-extra by CubeEngine.
the class ItemStackConverter method fromNode.
@Override
public ItemStack fromNode(Node node) throws ConversionException {
if (node instanceof MapNode) {
Node count = ((MapNode) node).get("Count");
Node damage = ((MapNode) node).get("Damage");
Node item = ((MapNode) node).get("Item");
Node tag = ((MapNode) node).get("tag");
if (count instanceof IntNode && damage instanceof IntNode && item instanceof StringNode && (tag instanceof MapNode)) {
try {
ItemStack itemStack = new ItemStack(Material.valueOf(item.asText()));
itemStack.setDurability(((IntNode) damage).getValue().shortValue());
itemStack.setAmount(((IntNode) count).getValue());
net.minecraft.server.v1_8_R2.ItemStack nms = CraftItemStack.asNMSCopy(itemStack);
nms.setTag(((MapNode) tag).isEmpty() ? null : (NBTTagCompound) NBTUtils.convertNodeToNBT(tag));
return CraftItemStack.asBukkitCopy(nms);
} catch (IllegalArgumentException e) {
throw ConversionException.of(this, item, "Unknown Material!");
}
} else {
throw ConversionException.of(this, node, "Invalid SubNodes!");
}
} else if (node instanceof NullNode) {
return null;
} else {
throw ConversionException.of(this, node, "Node is not a MapNode!");
}
}
use of org.cubeengine.converter.node.MapNode in project core by CubeEngine.
the class LocationConverter method fromNode.
@Override
@SuppressWarnings("unchecked")
public Location<World> fromNode(Node node, ConverterManager manager) throws ConversionException {
if (node instanceof MapNode) {
Map<String, Node> input = ((MapNode) node).getValue();
World world = Sponge.getServer().getWorld(((StringNode) input.get("world")).getValue()).get();
double x = manager.convertFromNode(input.get("x"), double.class);
double y = manager.convertFromNode(input.get("y"), double.class);
double z = manager.convertFromNode(input.get("z"), double.class);
// TODO Location + Direction
return new Location(world, x, y, z);
}
throw ConversionException.of(this, node, "Node is not a MapNode!");
}
use of org.cubeengine.converter.node.MapNode in project core by CubeEngine.
the class DataContainerConverter method fromNode.
@Override
public DataContainer fromNode(Node node, Class<? extends DataContainer> type, ConverterManager manager) throws ConversionException {
DataContainer data = DataContainer.createNew();
for (Entry<String, Node> entry : ((MapNode) node).getValue().entrySet()) {
DataQuery key = DataQuery.of('_', ((MapNode) node).getOriginalKey(entry.getKey()));
data.set(key, toObject(entry.getValue(), manager));
}
return data;
}
Aggregations