Пример #1
0
        public bool CollideCheck <T, Exclude>() where T : Entity where Exclude : Entity
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against tracked Entities when it is not a member of a Scene");
            }
            else if (!Scene.Tracker.Entities.ContainsKey(typeof(T)))
            {
                throw new Exception("Can't collide check an Entity against an untracked Entity type");
            }
            else if (!Scene.Tracker.Entities.ContainsKey(typeof(Exclude)))
            {
                throw new Exception("Excluded type is an untracked Entity type!");
            }
#endif

            var exclude = Scene.Tracker.Entities[typeof(Exclude)];
            foreach (var e in Scene.Tracker.Entities[typeof(T)])
            {
                if (!exclude.Contains(e))
                {
                    if (Collide.Check(this, e))
                    {
                        return(true);
                    }
                }
            }
            return(false);
        }
Пример #2
0
        public bool CollideCheck(BitTag tag, Vector2 at)
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against a tag list when it is not a member of a Scene");
            }
#endif
            return(Collide.Check(this, Scene[tag], at));
        }
Пример #3
0
        public bool CollideCheck <T>() where T : Entity
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against tracked Entities when it is not a member of a Scene");
            }
            else if (!Scene.Tracker.Entities.ContainsKey(typeof(T)))
            {
                throw new Exception("Can't collide check an Entity against an untracked Entity type");
            }
#endif

            return(Collide.Check(this, Scene.Tracker.Entities[typeof(T)]));
        }
Пример #4
0
        public Entity CollideFirstOutside(BitTag tag, Vector2 at)
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against a tag list when it is not a member of a Scene");
            }
#endif

            foreach (var entity in Scene[tag])
            {
                if (!Collide.Check(this, entity) && Collide.Check(this, entity, at))
                {
                    return(entity);
                }
            }
            return(null);
        }
Пример #5
0
        public bool CollideCheckOutside(int tag, Vector2 at)
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against a tag list when it is not a member of a Scene");
            }
#endif

            foreach (var entity in Scene[tag])
            {
                if (!Collide.Check(this, entity) && Collide.Check(this, entity, at))
                {
                    return(true);
                }
            }

            return(false);
        }
Пример #6
0
        public T CollideFirstOutsideByComponent <T>(Vector2 at) where T : Component
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against tracked Entities when it is not a member of a Scene");
            }
            else if (!Scene.Tracker.Components.ContainsKey(typeof(T)))
            {
                throw new Exception("Can't collide check an Entity against an untracked Component type");
            }
#endif

            foreach (var component in Scene.Tracker.Components[typeof(T)])
            {
                if (!Collide.Check(this, component.Entity) && Collide.Check(this, component.Entity, at))
                {
                    return(component as T);
                }
            }
            return(null);
        }
Пример #7
0
        public bool CollideCheckOutside <T>(Vector2 at) where T : Entity
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against tracked Entities when it is not a member of a Scene");
            }
            else if (!Scene.Tracker.Entities.ContainsKey(typeof(T)))
            {
                throw new Exception("Can't collide check an Entity against an untracked Entity type");
            }
#endif

            foreach (var entity in Scene.Tracker.Entities[typeof(T)])
            {
                if (!Collide.Check(this, entity) && Collide.Check(this, entity, at))
                {
                    return(true);
                }
            }
            return(false);
        }
Пример #8
0
        public bool CollideCheckByComponent <T>() where T : Component
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against tracked Entities when it is not a member of a Scene");
            }
            else if (!Scene.Tracker.Entities.ContainsKey(typeof(T)))
            {
                throw new Exception("Can't collide check an Entity against an untracked Component type");
            }
#endif

            foreach (var c in Scene.Tracker.Components[typeof(T)])
            {
                if (Collide.Check(this, c.Entity))
                {
                    return(true);
                }
            }
            return(false);
        }
Пример #9
0
        public List <T> CollideAllByComponent <T>() where T : Component
        {
#if DEBUG
            if (Scene == null)
            {
                throw new Exception("Can't collide check an Entity against tracked Entities when it is not a member of a Scene");
            }
            else if (!Scene.Tracker.Components.ContainsKey(typeof(T)))
            {
                throw new Exception("Can't collide check an Entity against an untracked Component type");
            }
#endif

            List <T> list = new List <T>();
            foreach (var component in Scene.Tracker.Components[typeof(T)])
            {
                if (Collide.Check(this, component.Entity))
                {
                    list.Add(component as T);
                }
            }
            return(list);
        }
Пример #10
0
 public bool CollideCheckOutside(Entity other, Vector2 at)
 {
     return(!Collide.Check(this, other) && Collide.Check(this, other, at));
 }
Пример #11
0
 public bool CollideCheck <T>(Vector2 at) where T : Entity
 {
     return(Collide.Check(this, Scene.Tracker.Entities[typeof(T)], at));
 }
Пример #12
0
 public bool CollideCheck(Entity other, Vector2 at)
 {
     return(Collide.Check(this, other, at));
 }
Пример #13
0
 public bool CollideCheck(Entity other)
 {
     return(Collide.Check(this, other));
 }
Пример #14
0
 public bool CollideCheck(CollidableComponent other, Vector2 at)
 {
     return(Collide.Check(this, other, at));
 }
Пример #15
0
 public bool CollideCheck(CollidableComponent other)
 {
     return(Collide.Check(this, other));
 }