NBTExplorer/SubstrateCS/Source/Entities/EntityMinecart.cs

104 lines
2.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Entities
{
using Substrate.Nbt;
public class EntityMinecart : TypedEntity
{
public enum CartType
{
EMPTY = 0,
CHEST = 1,
FURNACE = 2,
}
public static readonly SchemaNodeCompound MinecartSchema = TypedEntity.Schema.MergeInto(new SchemaNodeCompound("")
{
new SchemaNodeString("id", TypeId),
new SchemaNodeScaler("Type", TagType.TAG_INT),
});
public static string TypeId
{
get { return "Minecart"; }
}
private CartType _type;
public CartType Type
{
get { return _type; }
}
protected EntityMinecart (string id)
: base(id)
{
}
public EntityMinecart ()
: this(TypeId)
{
}
public EntityMinecart (TypedEntity e)
: base(e)
{
EntityMinecart e2 = e as EntityMinecart;
if (e2 != null) {
_type = e2._type;
}
}
#region INBTObject<Entity> Members
public override TypedEntity LoadTree (TagNode tree)
{
TagNodeCompound ctree = tree as TagNodeCompound;
if (ctree == null || base.LoadTree(tree) == null) {
return null;
}
_type = (CartType)ctree["Type"].ToTagInt().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 TagNodeInt((int)_type);
return tree;
}
public override bool ValidateTree (TagNode tree)
{
return new NbtVerifier(tree, MinecartSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
public override TypedEntity Copy ()
{
return new EntityMinecart(this);
}
#endregion
}
}