forked from mirrors/NBTExplorer
110 lines
2.8 KiB
C#
110 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Substrate.Core;
|
|
using Substrate.Nbt;
|
|
|
|
namespace Substrate.TileEntities
|
|
{
|
|
public class TileEntityBrewingStand : TileEntity, IItemContainer
|
|
{
|
|
public static readonly SchemaNodeCompound BrewingStandSchema = TileEntity.Schema.MergeInto(new SchemaNodeCompound("")
|
|
{
|
|
new SchemaNodeString("id", TypeId),
|
|
new SchemaNodeList("Items", TagType.TAG_COMPOUND, ItemCollection.Schema),
|
|
new SchemaNodeScaler("BrewTime", TagType.TAG_SHORT),
|
|
});
|
|
|
|
public static string TypeId
|
|
{
|
|
get { return "Cauldron"; }
|
|
}
|
|
|
|
private const int _CAPACITY = 4;
|
|
|
|
private ItemCollection _items;
|
|
private short _brewTime;
|
|
|
|
protected TileEntityBrewingStand (string id)
|
|
: base(id)
|
|
{
|
|
_items = new ItemCollection(_CAPACITY);
|
|
}
|
|
|
|
public TileEntityBrewingStand ()
|
|
: this(TypeId)
|
|
{
|
|
}
|
|
|
|
public TileEntityBrewingStand (TileEntity te)
|
|
: base(te)
|
|
{
|
|
TileEntityBrewingStand tec = te as TileEntityBrewingStand;
|
|
if (tec != null) {
|
|
_items = tec._items.Copy();
|
|
_brewTime = tec._brewTime;
|
|
}
|
|
else {
|
|
_items = new ItemCollection(_CAPACITY);
|
|
}
|
|
}
|
|
|
|
public int BrewTime
|
|
{
|
|
get { return _brewTime; }
|
|
set { _brewTime = (short)value; }
|
|
}
|
|
|
|
#region ICopyable<TileEntity> Members
|
|
|
|
public override TileEntity Copy ()
|
|
{
|
|
return new TileEntityBrewingStand(this);
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region IItemContainer Members
|
|
|
|
public ItemCollection Items
|
|
{
|
|
get { return _items; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region INBTObject<TileEntity> Members
|
|
|
|
public override TileEntity LoadTree (TagNode tree)
|
|
{
|
|
TagNodeCompound ctree = tree as TagNodeCompound;
|
|
if (ctree == null || base.LoadTree(tree) == null) {
|
|
return null;
|
|
}
|
|
|
|
TagNodeList items = ctree["Items"].ToTagList();
|
|
_items = new ItemCollection(_CAPACITY).LoadTree(items);
|
|
|
|
_brewTime = ctree["BrewTime"].ToTagShort();
|
|
|
|
return this;
|
|
}
|
|
|
|
public override TagNode BuildTree ()
|
|
{
|
|
TagNodeCompound tree = base.BuildTree() as TagNodeCompound;
|
|
tree["Items"] = _items.BuildTree();
|
|
tree["BrewTime"] = new TagNodeShort(_brewTime);
|
|
|
|
return tree;
|
|
}
|
|
|
|
public override bool ValidateTree (TagNode tree)
|
|
{
|
|
return new NbtVerifier(tree, BrewingStandSchema).Verify();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|