mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-22 18:45:29 +01:00
added inventory-related API
This commit is contained in:
parent
b557837ecb
commit
7a4fff1e68
Binary file not shown.
@ -33,6 +33,7 @@ import net.citizensnpcs.npc.CitizensNPCManager;
|
||||
import net.citizensnpcs.storage.DatabaseStorage;
|
||||
import net.citizensnpcs.storage.Storage;
|
||||
import net.citizensnpcs.storage.YamlStorage;
|
||||
import net.citizensnpcs.trait.Inventory;
|
||||
import net.citizensnpcs.trait.LookClose;
|
||||
import net.citizensnpcs.util.Messaging;
|
||||
import net.citizensnpcs.util.StringHelper;
|
||||
@ -55,7 +56,7 @@ public class Citizens extends JavaPlugin {
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private static final List<Class<? extends Trait>> defaultTraits = Lists.newArrayList(Owner.class, Spawned.class,
|
||||
LookClose.class, SpawnLocation.class);
|
||||
LookClose.class, SpawnLocation.class, Inventory.class);
|
||||
|
||||
private volatile CitizensNPCManager npcManager;
|
||||
private final InstanceFactory<Character> characterManager = new DefaultInstanceFactory<Character>();
|
||||
|
@ -7,11 +7,14 @@ import net.citizensnpcs.api.npc.trait.trait.SpawnLocation;
|
||||
import net.citizensnpcs.api.npc.trait.trait.Spawned;
|
||||
import net.citizensnpcs.npc.ai.CitizensAI;
|
||||
import net.citizensnpcs.util.Messaging;
|
||||
|
||||
import net.minecraft.server.EntityLiving;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.PlayerInventory;
|
||||
|
||||
public abstract class CitizensNPC extends AbstractNPC {
|
||||
protected final CitizensNPCManager manager;
|
||||
@ -88,6 +91,18 @@ public abstract class CitizensNPC extends AbstractNPC {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PlayerInventory getInventory() {
|
||||
throw new UnsupportedOperationException("not implemented yet");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean openInventory(Player player) {
|
||||
if (!isSpawned())
|
||||
return false;
|
||||
throw new UnsupportedOperationException("not implemented yet");
|
||||
}
|
||||
|
||||
public void update() {
|
||||
ai.update();
|
||||
}
|
||||
|
112
src/net/citizensnpcs/trait/Inventory.java
Normal file
112
src/net/citizensnpcs/trait/Inventory.java
Normal file
@ -0,0 +1,112 @@
|
||||
package net.citizensnpcs.trait;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.enchantments.Enchantment;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
import net.citizensnpcs.api.DataKey;
|
||||
import net.citizensnpcs.api.exception.NPCLoadException;
|
||||
import net.citizensnpcs.api.npc.trait.SaveId;
|
||||
import net.citizensnpcs.api.npc.trait.Trait;
|
||||
|
||||
@SaveId("inventory")
|
||||
public class Inventory implements Trait {
|
||||
private ItemStack[] contents;
|
||||
private ItemStack helmet;
|
||||
private ItemStack chestplate;
|
||||
private ItemStack leggings;
|
||||
private ItemStack boots;
|
||||
|
||||
public Inventory() {
|
||||
}
|
||||
|
||||
public Inventory(org.bukkit.inventory.PlayerInventory inventory) {
|
||||
contents = inventory.getContents();
|
||||
helmet = inventory.getHelmet();
|
||||
chestplate = inventory.getChestplate();
|
||||
leggings = inventory.getLeggings();
|
||||
boots = inventory.getBoots();
|
||||
}
|
||||
|
||||
public ItemStack[] getContents() {
|
||||
return contents;
|
||||
}
|
||||
|
||||
public ItemStack[] getArmorContents() {
|
||||
ItemStack[] armor = new ItemStack[4];
|
||||
armor[0] = helmet;
|
||||
armor[1] = chestplate;
|
||||
armor[2] = leggings;
|
||||
armor[3] = boots;
|
||||
return armor;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void load(DataKey key) throws NPCLoadException {
|
||||
contents = parseContents(key);
|
||||
// Armor
|
||||
helmet = getItemStack(key.getRelative("armor.helmet"));
|
||||
chestplate = getItemStack(key.getRelative("armor.chestplate"));
|
||||
leggings = getItemStack(key.getRelative("armor.leggings"));
|
||||
boots = getItemStack(key.getRelative("armor.boots"));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void save(DataKey key) {
|
||||
int index = 0;
|
||||
for (ItemStack item : contents)
|
||||
saveItem(item, key.getRelative(String.valueOf(index++)));
|
||||
|
||||
DataKey armorKey = key.getRelative("armor");
|
||||
saveItem(helmet, armorKey.getRelative("helmet"));
|
||||
saveItem(chestplate, armorKey.getRelative("chestplate"));
|
||||
saveItem(leggings, armorKey.getRelative("leggings"));
|
||||
saveItem(boots, armorKey.getRelative("boots"));
|
||||
}
|
||||
|
||||
private ItemStack[] parseContents(DataKey key) throws NPCLoadException {
|
||||
ItemStack[] contents = new ItemStack[36];
|
||||
for (DataKey slotKey : key.getIntegerSubKeys()) {
|
||||
contents[Integer.parseInt(slotKey.name())] = getItemStack(slotKey);
|
||||
}
|
||||
return contents;
|
||||
}
|
||||
|
||||
private ItemStack getItemStack(DataKey key) throws NPCLoadException {
|
||||
try {
|
||||
ItemStack item = new ItemStack(Material.getMaterial(key.getString("name")), key.getInt("amount"),
|
||||
(short) key.getLong("data"));
|
||||
if (key.keyExists("enchantments")) {
|
||||
Map<Enchantment, Integer> enchantments = new HashMap<Enchantment, Integer>();
|
||||
for (DataKey subKey : key.getRelative("enchantments").getSubKeys()) {
|
||||
Enchantment enchantment = Enchantment.getByName(subKey.name().toUpperCase().replace('-', '_'));
|
||||
if (enchantment != null)
|
||||
enchantments.put(enchantment, subKey.getInt(""));
|
||||
}
|
||||
item.addEnchantments(enchantments);
|
||||
}
|
||||
return item;
|
||||
} catch (Exception ex) {
|
||||
throw new NPCLoadException("Invalid item.");
|
||||
}
|
||||
}
|
||||
|
||||
private void saveItem(ItemStack item, DataKey key) {
|
||||
key.setString("name", item.getType().toString());
|
||||
key.setInt("amount", item.getAmount());
|
||||
key.setLong("data", item.getDurability());
|
||||
|
||||
for (Enchantment enchantment : item.getEnchantments().keySet())
|
||||
key.getRelative("enchantments").setInt(enchantment.getName().toLowerCase().replace('_', '-'),
|
||||
item.getEnchantmentLevel(enchantment));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Inventory{contents:" + contents + "; helmet:" + helmet + "; chestplate:" + chestplate + "; leggings:"
|
||||
+ leggings + "; boots:" + boots + "}";
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user