using System.Collections.Generic; namespace TEngine { internal sealed partial class EntityManager { /// /// 实体组。 /// private sealed class EntityGroup : IEntityGroup { private readonly string _name; private readonly IEntityGroupHelper _entityGroupHelper; private readonly IObjectPool _instancePool; private readonly GameFrameworkLinkedList _entities; private LinkedListNode _cachedNode; /// /// 初始化实体组的新实例。 /// /// 实体组名称。 /// 实体实例对象池自动释放可释放对象的间隔秒数。 /// 实体实例对象池容量。 /// 实体实例对象池对象过期秒数。 /// 实体实例对象池的优先级。 /// 实体组辅助器。 /// 对象池管理器。 public EntityGroup(string name, float instanceAutoReleaseInterval, int instanceCapacity, float instanceExpireTime, int instancePriority, IEntityGroupHelper entityGroupHelper, IObjectPoolModule objectPoolManager) { if (string.IsNullOrEmpty(name)) { throw new GameFrameworkException("Entity group name is invalid."); } if (entityGroupHelper == null) { throw new GameFrameworkException("Entity group helper is invalid."); } _name = name; _entityGroupHelper = entityGroupHelper; _instancePool = objectPoolManager.CreateSingleSpawnObjectPool(Utility.Text.Format("Entity Instance Pool ({0})", name), instanceCapacity, instanceExpireTime, instancePriority); _instancePool.AutoReleaseInterval = instanceAutoReleaseInterval; _entities = new GameFrameworkLinkedList(); _cachedNode = null; } /// /// 获取实体组名称。 /// public string Name => _name; /// /// 获取实体组中实体数量。 /// public int EntityCount => _entities.Count; /// /// 获取或设置实体组实例对象池自动释放可释放对象的间隔秒数。 /// public float InstanceAutoReleaseInterval { get => _instancePool.AutoReleaseInterval; set => _instancePool.AutoReleaseInterval = value; } /// /// 获取或设置实体组实例对象池的容量。 /// public int InstanceCapacity { get => _instancePool.Capacity; set => _instancePool.Capacity = value; } /// /// 获取或设置实体组实例对象池对象过期秒数。 /// public float InstanceExpireTime { get => _instancePool.ExpireTime; set => _instancePool.ExpireTime = value; } /// /// 获取或设置实体组实例对象池的优先级。 /// public int InstancePriority { get => _instancePool.Priority; set => _instancePool.Priority = value; } /// /// 获取实体组辅助器。 /// public IEntityGroupHelper Helper => _entityGroupHelper; /// /// 实体组轮询。 /// /// 逻辑流逝时间,以秒为单位。 /// 真实流逝时间,以秒为单位。 public void Update(float elapseSeconds, float realElapseSeconds) { LinkedListNode current = _entities.First; while (current != null) { _cachedNode = current.Next; current.Value.OnUpdate(elapseSeconds, realElapseSeconds); current = _cachedNode; _cachedNode = null; } } /// /// 实体组中是否存在实体。 /// /// 实体序列编号。 /// 实体组中是否存在实体。 public bool HasEntity(int entityId) { foreach (IEntity entity in _entities) { if (entity.Id == entityId) { return true; } } return false; } /// /// 实体组中是否存在实体。 /// /// 实体资源名称。 /// 实体组中是否存在实体。 public bool HasEntity(string entityAssetName) { if (string.IsNullOrEmpty(entityAssetName)) { throw new GameFrameworkException("Entity asset name is invalid."); } foreach (IEntity entity in _entities) { if (entity.EntityAssetName == entityAssetName) { return true; } } return false; } /// /// 从实体组中获取实体。 /// /// 实体序列编号。 /// 要获取的实体。 public IEntity GetEntity(int entityId) { foreach (IEntity entity in _entities) { if (entity.Id == entityId) { return entity; } } return null; } /// /// 从实体组中获取实体。 /// /// 实体资源名称。 /// 要获取的实体。 public IEntity GetEntity(string entityAssetName) { if (string.IsNullOrEmpty(entityAssetName)) { throw new GameFrameworkException("Entity asset name is invalid."); } foreach (IEntity entity in _entities) { if (entity.EntityAssetName == entityAssetName) { return entity; } } return null; } /// /// 从实体组中获取实体。 /// /// 实体资源名称。 /// 要获取的实体。 public IEntity[] GetEntities(string entityAssetName) { if (string.IsNullOrEmpty(entityAssetName)) { throw new GameFrameworkException("Entity asset name is invalid."); } List results = new List(); foreach (IEntity entity in _entities) { if (entity.EntityAssetName == entityAssetName) { results.Add(entity); } } return results.ToArray(); } /// /// 从实体组中获取实体。 /// /// 实体资源名称。 /// 要获取的实体。 public void GetEntities(string entityAssetName, List results) { if (string.IsNullOrEmpty(entityAssetName)) { throw new GameFrameworkException("Entity asset name is invalid."); } if (results == null) { throw new GameFrameworkException("Results is invalid."); } results.Clear(); foreach (IEntity entity in _entities) { if (entity.EntityAssetName == entityAssetName) { results.Add(entity); } } } /// /// 从实体组中获取所有实体。 /// /// 实体组中的所有实体。 public IEntity[] GetAllEntities() { List results = new List(); foreach (IEntity entity in _entities) { results.Add(entity); } return results.ToArray(); } /// /// 从实体组中获取所有实体。 /// /// 实体组中的所有实体。 public void GetAllEntities(List results) { if (results == null) { throw new GameFrameworkException("Results is invalid."); } results.Clear(); foreach (IEntity entity in _entities) { results.Add(entity); } } /// /// 往实体组增加实体。 /// /// 要增加的实体。 public void AddEntity(IEntity entity) { _entities.AddLast(entity); } /// /// 从实体组移除实体。 /// /// 要移除的实体。 public void RemoveEntity(IEntity entity) { if (_cachedNode != null && _cachedNode.Value == entity) { _cachedNode = _cachedNode.Next; } if (!_entities.Remove(entity)) { throw new GameFrameworkException(Utility.Text.Format("Entity group '{0}' not exists specified entity '[{1}]{2}'.", _name, entity.Id, entity.EntityAssetName)); } } public void RegisterEntityInstanceObject(EntityInstanceObject obj, bool spawned) { _instancePool.Register(obj, spawned); } public EntityInstanceObject SpawnEntityInstanceObject(string name) { return _instancePool.Spawn(name); } public void UnspawnEntity(IEntity entity) { _instancePool.Unspawn(entity.Handle); } public void SetEntityInstanceLocked(object entityInstance, bool locked) { if (entityInstance == null) { throw new GameFrameworkException("Entity instance is invalid."); } _instancePool.SetLocked(entityInstance, locked); } public void SetEntityInstancePriority(object entityInstance, int priority) { if (entityInstance == null) { throw new GameFrameworkException("Entity instance is invalid."); } _instancePool.SetPriority(entityInstance, priority); } } } }