ModernUO/Projects/UOContent/Engines/Quests/Study of the Solen Hive/NestArea.cs
2021-08-19 09:11:48 -07:00

91 lines
2.1 KiB
C#

using System.Linq;
namespace Server.Engines.Quests.Naturalist
{
public class NestArea
{
private static readonly NestArea[] m_Areas =
{
new(false, new Rectangle2D(5861, 1787, 26, 25)),
new(
false,
new Rectangle2D(5734, 1788, 14, 50),
new Rectangle2D(5748, 1800, 3, 34),
new Rectangle2D(5751, 1808, 2, 20)
),
new(false, new Rectangle2D(5907, 1908, 19, 43)),
new(
false,
new Rectangle2D(5721, 1926, 24, 29),
new Rectangle2D(5745, 1935, 7, 22)
),
new(
true,
new Rectangle2D(5651, 1853, 21, 32),
new Rectangle2D(5672, 1857, 6, 20)
)
};
private readonly Rectangle2D[] m_Rects;
private NestArea(bool special, params Rectangle2D[] rects)
{
Special = special;
m_Rects = rects;
}
public static int NonSpecialCount => m_Areas.Count(area => !area.Special);
public bool Special { get; }
public int ID
{
get
{
for (var i = 0; i < m_Areas.Length; i++)
{
if (m_Areas[i] == this)
{
return i;
}
}
return 0;
}
}
public static NestArea Find(Point3D p)
{
return m_Areas.FirstOrDefault(area => area.Contains(p));
}
public static NestArea GetByID(int id)
{
if (id >= 0 && id < m_Areas.Length)
{
return m_Areas[id];
}
return null;
}
public bool Contains(Point3D p)
{
var x = p.X;
var y = p.Y;
foreach (var rect in m_Rects)
{
if (rect.Contains(x, y))
{
return true;
}
}
return false;
}
}
}