/**
* ShowCaseStandalone
* Copyright (C) 2013 Kellerkindt <copyright at kellerkindt.com>
*
* 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 2 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, see <http://www.gnu.org/licenses/>.
*/
package com.kellerkindt.scs.internals;
import java.util.UUID;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
import com.kellerkindt.scs.utilities.Properties;
/**
* This class allows to save and load ItemStack data in clear XML-text
* @author kellerkindt <michael at kellerkindt.com>
*/
public class ItemStorage extends Storage {
/**
* The prefix is needed, because in the same storage is also the
* MetaStorage saved
*/
// public static final String PREFIX_STACK = "itemstack_";
public static final String INTEGER_ID = /*PREFIX_STACK + */"id";
public static final String INTEGER_DURABILITY = /*PREFIX_STACK + */"durability";
public static final String STORAGE_ITEMMETA = "item-meta";
private ItemStack stack;
public ItemStorage(int storageVersion, UUID uuid, ItemStack stack) {
super(storageVersion, uuid);
this.stack = stack;
this.saveItemStack();
}
public ItemStorage(Storage storage) {
super(storage);
this.loadItemStack();
}
/**
* Saves the ItemStack to this Storage
*/
public void saveItemStack () {
this.setInteger(INTEGER_ID, stack.getTypeId());
this.setInteger(INTEGER_DURABILITY, (int) stack.getDurability());
this.setStorage(STORAGE_ITEMMETA, new ConfigurationSerializationStorage(getVersion(), UUID.randomUUID(), stack.getItemMeta()));
}
/**
* @return The ItemStackfrom this storage
*/
public ItemStack getItemStack () {
if (stack == null) {
this.loadItemStack();
}
return stack;
}
/**
* Loads the ItemStack from this Storage
*/
public void loadItemStack () {
// this.loadItemStack(); // WTH !?
int id = getInteger(INTEGER_ID);
int durability = getInteger(INTEGER_DURABILITY);
Storage metaStorage = getStorage(STORAGE_ITEMMETA);
ItemMeta meta = (ItemMeta)new ConfigurationSerializationStorage(metaStorage).getConfigurationSerializable();
this.stack = new ItemStack(id, Properties.DEFAULT_STACK_AMOUNT, (short)durability);
this.stack.setItemMeta(meta);
}
}