NBTExplorer/Substrate/SubstrateCS/Source/TileEntities/TileEntityTrap.cs

90 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.TileEntities
{
using Substrate.NBT;
public class TileEntityTrap : TileEntity, IItemContainer
{
public static readonly NBTCompoundNode TrapSchema = BaseSchema.MergeInto(new NBTCompoundNode("")
{
new NBTStringNode("id", "Trap"),
new NBTListNode("Items", TagType.TAG_COMPOUND, ItemCollection.InventorySchema),
});
private const int _CAPACITY = 8;
private ItemCollection _items;
public TileEntityTrap ()
: base("Trap")
{
_items = new ItemCollection(_CAPACITY);
}
public TileEntityTrap (TileEntity te)
: base(te)
{
TileEntityTrap tec = te as TileEntityTrap;
if (tec != null) {
_items = tec._items.Copy();
}
else {
_items = new ItemCollection(_CAPACITY);
}
}
#region ICopyable<TileEntity> Members
public override TileEntity Copy ()
{
return new TileEntityTrap(this);
}
#endregion
#region IItemContainer Members
public ItemCollection Items
{
get { return _items; }
}
#endregion
#region INBTObject<TileEntity> Members
public override TileEntity LoadTree (TagValue tree)
{
TagCompound ctree = tree as TagCompound;
if (ctree == null || base.LoadTree(tree) == null) {
return null;
}
TagList items = ctree["Items"].ToTagList();
_items = new ItemCollection(_CAPACITY).LoadTree(items);
return this;
}
public override TagValue BuildTree ()
{
TagCompound tree = base.BuildTree() as TagCompound;
tree["Items"] = _items.BuildTree();
return tree;
}
public override bool ValidateTree (TagValue tree)
{
return new NBTVerifier(tree, TrapSchema).Verify();
}
#endregion
}
}