using System.Collections.Generic;
using System.Linq;
namespace MonoGame.Extended.Collisions
{
///
/// Data structure for the quad tree.
/// Holds the entity and collision data for it.
///
public class QuadtreeData
{
public QuadtreeData(ICollisionActor target)
{
Target = target;
Bounds = target.Bounds;
}
public void RemoveParent(Quadtree parent)
{
Parents.Remove(parent);
}
public void AddParent(Quadtree parent)
{
Parents.Add(parent);
}
public void RemoveFromAllParents()
{
foreach (Quadtree parent in Parents.ToList())
{
parent.Remove(this);
}
Parents.Clear();
}
public HashSet Parents = new HashSet();
///
/// Gets or sets the Target for collision.
///
public ICollisionActor Target { get; set; }
///
/// Gets or sets whether Target has had its collision handled this
/// iteration.
///
public bool Dirty { get; private set; }
public void MarkDirty()
{
Dirty = true;
}
public void MarkClean()
{
Dirty = false;
}
///
/// Gets or sets the bounding box for collision detection.
///
public IShapeF Bounds { get; set; }
}
}