servuo/Server/Targeting/StaticTarget.cs

36 lines
965 B
C#
Raw Permalink Normal View History

2013-10-28 07:09:42 +00:00
namespace Server.Targeting
{
2020-08-21 02:19:04 +01:00
public class StaticTarget : IPoint3D
{
private Point3D m_Location;
private readonly int m_ItemID;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
public StaticTarget(Point3D location, int itemID)
{
m_Location = location;
m_ItemID = itemID & TileData.MaxItemValue;
m_Location.Z += TileData.ItemTable[m_ItemID].CalcHeight;
}
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public Point3D Location => m_Location;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public string Name => TileData.ItemTable[m_ItemID].Name;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public TileFlag Flags => TileData.ItemTable[m_ItemID].Flags;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public int X => m_Location.X;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public int Y => m_Location.Y;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public int Z => m_Location.Z;
2013-10-28 07:09:42 +00:00
2020-08-21 02:19:04 +01:00
[CommandProperty(AccessLevel.Counselor)]
public int ItemID => m_ItemID;
}
2013-10-28 07:09:42 +00:00
}