NBTExplorer/Substrate/SubstrateCS/Source/Entities/EntityMinecart.cs

94 lines
2.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Entities
{
using Substrate.NBT;
public class EntityMinecart : Entity
{
public enum CartType
{
EMPTY = 0,
CHEST = 1,
FURNACE = 2,
}
public static readonly NBTCompoundNode MinecartSchema = BaseSchema.MergeInto(new NBTCompoundNode("")
{
new NBTStringNode("id", "Minecart"),
new NBTScalerNode("Type", TagType.TAG_BYTE),
});
private CartType _type;
public CartType Type
{
get { return _type; }
}
public EntityMinecart ()
: base("Minecart")
{
}
public EntityMinecart (Entity e)
: base(e)
{
EntityMinecart e2 = e as EntityMinecart;
if (e2 != null) {
_type = e2._type;
}
}
#region INBTObject<Entity> Members
public override Entity LoadTree (TagValue tree)
{
TagCompound ctree = tree as TagCompound;
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 TagValue BuildTree ()
{
TagCompound tree = base.BuildTree() as TagCompound;
tree["Type"] = new TagByte((byte)_type);
return tree;
}
public override bool ValidateTree (TagValue tree)
{
return new NBTVerifier(tree, MinecartSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
public override Entity Copy ()
{
return new EntityMinecart(this);
}
#endregion
}
}