NBTExplorer/Substrate/SubstrateCS/Source/Entities/EntityMinecart.cs
Justin Aquadro d1f1361f3d Ritual
2011-06-30 04:57:18 +00:00

94 lines
2.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Entities
{
using Substrate.Nbt;
public class EntityMinecart : EntityTyped
{
public enum CartType
{
EMPTY = 0,
CHEST = 1,
FURNACE = 2,
}
public static readonly SchemaNodeCompound MinecartSchema = EntityTyped.Schema.MergeInto(new SchemaNodeCompound("")
{
new SchemaNodeString("id", "Minecart"),
new SchemaNodeScaler("Type", TagType.TAG_BYTE),
});
private CartType _type;
public CartType Type
{
get { return _type; }
}
public EntityMinecart ()
: base("Minecart")
{
}
public EntityMinecart (EntityTyped e)
: base(e)
{
EntityMinecart e2 = e as EntityMinecart;
if (e2 != null) {
_type = e2._type;
}
}
#region INBTObject<Entity> Members
public override EntityTyped LoadTree (TagNode tree)
{
TagNodeCompound ctree = tree as TagNodeCompound;
if (ctree == null || base.LoadTree(tree) == null) {
return null;
}
_type = (CartType)ctree["Type"].ToTagByte().Data;
switch (_type) {
case CartType.EMPTY:
return this;
case CartType.CHEST:
return new EntityMinecartChest().LoadTreeSafe(tree);
case CartType.FURNACE:
return new EntityMinecartFurnace().LoadTreeSafe(tree);
default:
return this;
}
}
public override TagNode BuildTree ()
{
TagNodeCompound tree = base.BuildTree() as TagNodeCompound;
tree["Type"] = new TagNodeByte((byte)_type);
return tree;
}
public override bool ValidateTree (TagNode tree)
{
return new NbtVerifier(tree, MinecartSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
public override EntityTyped Copy ()
{
return new EntityMinecart(this);
}
#endregion
}
}