Files
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

103 lines
2.5 KiB
C#

using System;
using Server;
using Server.Items;
namespace Server.Engines.TombOfKings
{
public class ChamberBarrier : Item
{
private Blocker m_Blocker;
private LOSBlocker m_LOSBlocker;
public bool Active
{
get { return Visible; }
set
{
if (Visible != value)
{
if (Visible = value)
{
m_Blocker = new Blocker();
m_Blocker.MoveToWorld(Location, Map);
m_LOSBlocker = new LOSBlocker();
m_LOSBlocker.MoveToWorld(Location, Map);
}
else
{
m_Blocker.Delete();
m_Blocker = null;
m_LOSBlocker.Delete();
m_LOSBlocker = null;
}
}
}
}
public ChamberBarrier(Point3D loc)
: base(0x3979)
{
Light = LightType.Circle150;
Movable = false;
MoveToWorld(loc, Map.TerMur);
m_Blocker = new Blocker();
m_Blocker.MoveToWorld(loc, Map.TerMur);
m_LOSBlocker = new LOSBlocker();
m_LOSBlocker.MoveToWorld(loc, Map.TerMur);
}
public ChamberBarrier(Serial serial)
: base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0); // version
writer.Write((bool)(m_Blocker != null));
if (m_Blocker != null)
writer.Write((Item)m_Blocker);
writer.Write((bool)(m_LOSBlocker != null));
if (m_LOSBlocker != null)
writer.Write((Item)m_LOSBlocker);
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
if (reader.ReadBool())
{
m_Blocker = reader.ReadItem() as Blocker;
if (m_Blocker != null)
{
m_Blocker.Delete();
}
}
if (reader.ReadBool())
{
m_LOSBlocker = reader.ReadItem() as LOSBlocker;
if (m_LOSBlocker != null)
{
m_LOSBlocker.Delete();
}
}
Delete();
}
}
}