Search in sources :

Example 1 with ItemDefinition

use of io.xol.chunkstories.api.item.ItemDefinition in project chunkstories-api by Hugobros3.

the class ItemPile method obtainItemPileFromStream.

public static ItemPile obtainItemPileFromStream(ContentTranslator translator, DataInputStream stream) throws IOException, UndefinedItemTypeException, NullItemException {
    int itemId = stream.readInt();
    if (itemId == 0)
        throw new NullItemException(stream);
    ItemDefinition itemType = translator.getItemForId(itemId);
    if (itemType == null)
        throw new UndefinedItemTypeException(itemId);
    ItemPile itemPile = new ItemPile(itemType, stream.readInt());
    itemPile.item.load(stream);
    return itemPile;
}
Also used : UndefinedItemTypeException(io.xol.chunkstories.api.exceptions.UndefinedItemTypeException) ItemDefinition(io.xol.chunkstories.api.item.ItemDefinition) NullItemException(io.xol.chunkstories.api.exceptions.NullItemException)

Example 2 with ItemDefinition

use of io.xol.chunkstories.api.item.ItemDefinition in project chunkstories by Hugobros3.

the class GiveCommand method handleCommand.

@Override
public boolean handleCommand(CommandEmitter emitter, Command command, String[] arguments) {
    if (!emitter.hasPermission("server.give")) {
        emitter.sendMessage("You don't have the permission.");
        return true;
    }
    if (!(emitter instanceof Player)) {
        emitter.sendMessage("You need to be a player to use this command.");
        return true;
    }
    Content gameContent = server.getContent();
    Player player = (Player) emitter;
    if (arguments.length == 0) {
        player.sendMessage("#FF969BSyntax : /give <item> [amount] [to]");
        return true;
    }
    int amount = 1;
    Player to = player;
    String itemName = arguments[0];
    // Look for the item first
    ItemDefinition type = gameContent.items().getItemDefinition(itemName);
    // If the type was found we are simply trying to spawn an item
    Item item = null;
    if (type != null)
        item = type.newItem();
    else {
        String voxelName = itemName;
        int voxelMeta = 0;
        if (voxelName.contains(":")) {
            voxelMeta = Integer.parseInt(voxelName.split(":")[1]);
            voxelName = voxelName.split(":")[0];
        }
        // Try to find a matching voxel
        Voxel voxel = gameContent.voxels().getVoxel(itemName);
        if (voxel != null) {
            // Spawn new itemPile in his inventory
            ItemVoxel itemVoxel = (ItemVoxel) gameContent.items().getItemDefinition("item_voxel").newItem();
            itemVoxel.voxel = voxel;
            itemVoxel.voxelMeta = voxelMeta;
            item = itemVoxel;
        }
    }
    if (item == null) {
        player.sendMessage("#FF969BItem or voxel \"" + arguments[0] + " can't be found.");
        return true;
    }
    if (arguments.length >= 2) {
        amount = Integer.parseInt(arguments[1]);
    }
    if (arguments.length >= 3) {
        if (gameContent instanceof ServerInterface)
            to = ((ServerInterface) gameContent).getPlayerByName(arguments[2]);
        else {
            player.sendMessage("#FF969BThis is a singleplayer world - there are no other players");
            return true;
        }
    }
    if (to == null) {
        player.sendMessage("#FF969BPlayer \"" + arguments[2] + " can't be found.");
        return true;
    }
    ItemPile itemPile = new ItemPile(item);
    itemPile.setAmount(amount);
    ((EntityWithInventory) to.getControlledEntity()).getInventory().addItemPile(itemPile);
    player.sendMessage("#FF969BGave " + (amount > 1 ? amount + "x " : "") + "#4CFF00" + itemPile.getItem().getName() + " #FF969Bto " + to.getDisplayName());
    return true;
}
Also used : Item(io.xol.chunkstories.api.item.Item) Player(io.xol.chunkstories.api.player.Player) ItemVoxel(io.xol.chunkstories.api.item.ItemVoxel) ServerInterface(io.xol.chunkstories.api.server.ServerInterface) Content(io.xol.chunkstories.api.content.Content) ItemVoxel(io.xol.chunkstories.api.item.ItemVoxel) Voxel(io.xol.chunkstories.api.voxel.Voxel) ItemDefinition(io.xol.chunkstories.api.item.ItemDefinition) ItemPile(io.xol.chunkstories.api.item.inventory.ItemPile)

Aggregations

ItemDefinition (io.xol.chunkstories.api.item.ItemDefinition)2 Content (io.xol.chunkstories.api.content.Content)1 NullItemException (io.xol.chunkstories.api.exceptions.NullItemException)1 UndefinedItemTypeException (io.xol.chunkstories.api.exceptions.UndefinedItemTypeException)1 Item (io.xol.chunkstories.api.item.Item)1 ItemVoxel (io.xol.chunkstories.api.item.ItemVoxel)1 ItemPile (io.xol.chunkstories.api.item.inventory.ItemPile)1 Player (io.xol.chunkstories.api.player.Player)1 ServerInterface (io.xol.chunkstories.api.server.ServerInterface)1 Voxel (io.xol.chunkstories.api.voxel.Voxel)1