2011-04-06 19:41:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2011-04-06 22:01:22 +00:00
|
|
|
|
namespace Substrate.Entities
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
2011-06-30 04:41:29 +00:00
|
|
|
|
using Substrate.Nbt;
|
2011-04-06 19:41:57 +00:00
|
|
|
|
|
2011-06-30 03:59:20 +00:00
|
|
|
|
public class EntityMob : EntityTyped
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
2011-06-30 03:59:20 +00:00
|
|
|
|
public static readonly SchemaNodeCompound MobSchema = EntityTyped.Schema.MergeInto(new SchemaNodeCompound("")
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
2011-06-20 03:51:40 +00:00
|
|
|
|
new SchemaNodeString("id", "Mob"),
|
|
|
|
|
new SchemaNodeScaler("AttackTime", TagType.TAG_SHORT),
|
|
|
|
|
new SchemaNodeScaler("DeathTime", TagType.TAG_SHORT),
|
|
|
|
|
new SchemaNodeScaler("Health", TagType.TAG_SHORT),
|
|
|
|
|
new SchemaNodeScaler("HurtTime", TagType.TAG_SHORT),
|
2011-04-06 19:41:57 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
private short _attackTime;
|
|
|
|
|
private short _deathTime;
|
|
|
|
|
private short _health;
|
|
|
|
|
private short _hurtTime;
|
|
|
|
|
|
|
|
|
|
public int AttackTime
|
|
|
|
|
{
|
|
|
|
|
get { return _attackTime; }
|
|
|
|
|
set { _attackTime = (short)value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int DeathTime
|
|
|
|
|
{
|
|
|
|
|
get { return _deathTime; }
|
|
|
|
|
set { _deathTime = (short)value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Health
|
|
|
|
|
{
|
|
|
|
|
get { return _health; }
|
|
|
|
|
set { _health = (short)value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int HurtTime
|
|
|
|
|
{
|
|
|
|
|
get { return _hurtTime; }
|
|
|
|
|
set { _hurtTime = (short)value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EntityMob ()
|
|
|
|
|
: base("Mob")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EntityMob (string id)
|
|
|
|
|
: base(id)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-30 03:59:20 +00:00
|
|
|
|
public EntityMob (EntityTyped e)
|
2011-04-06 19:41:57 +00:00
|
|
|
|
: base(e)
|
|
|
|
|
{
|
|
|
|
|
EntityMob e2 = e as EntityMob;
|
|
|
|
|
if (e2 != null) {
|
|
|
|
|
_attackTime = e2._attackTime;
|
|
|
|
|
_deathTime = e2._deathTime;
|
|
|
|
|
_health = e2._health;
|
|
|
|
|
_hurtTime = e2._hurtTime;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region INBTObject<Entity> Members
|
|
|
|
|
|
2011-06-30 03:59:20 +00:00
|
|
|
|
public override EntityTyped LoadTree (TagNode tree)
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
2011-06-20 03:51:40 +00:00
|
|
|
|
TagNodeCompound ctree = tree as TagNodeCompound;
|
2011-04-06 19:41:57 +00:00
|
|
|
|
if (ctree == null || base.LoadTree(tree) == null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:50:42 +00:00
|
|
|
|
_attackTime = ctree["AttackTime"].ToTagShort();
|
|
|
|
|
_deathTime = ctree["DeathTime"].ToTagShort();
|
|
|
|
|
_health = ctree["Health"].ToTagShort();
|
|
|
|
|
_hurtTime = ctree["HurtTime"].ToTagShort();
|
2011-04-06 19:41:57 +00:00
|
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 03:51:40 +00:00
|
|
|
|
public override TagNode BuildTree ()
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
2011-06-20 03:51:40 +00:00
|
|
|
|
TagNodeCompound tree = base.BuildTree() as TagNodeCompound;
|
|
|
|
|
tree["AttackTime"] = new TagNodeShort(_attackTime);
|
|
|
|
|
tree["DeathTime"] = new TagNodeShort(_deathTime);
|
|
|
|
|
tree["Health"] = new TagNodeShort(_health);
|
|
|
|
|
tree["HurtTime"] = new TagNodeShort(_hurtTime);
|
2011-04-06 19:41:57 +00:00
|
|
|
|
|
|
|
|
|
return tree;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 03:51:40 +00:00
|
|
|
|
public override bool ValidateTree (TagNode tree)
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
2011-06-30 04:57:18 +00:00
|
|
|
|
return new NbtVerifier(tree, MobSchema).Verify();
|
2011-04-06 19:41:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region ICopyable<Entity> Members
|
|
|
|
|
|
2011-06-30 03:59:20 +00:00
|
|
|
|
public override EntityTyped Copy ()
|
2011-04-06 19:41:57 +00:00
|
|
|
|
{
|
|
|
|
|
return new EntityMob(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|