encompass-cs/encompass-cs/EntityManager.cs

68 lines
1.7 KiB
C#
Raw Normal View History

2019-08-22 22:20:10 +00:00
using System.Linq;
using System;
using System.Collections.Generic;
2019-08-22 22:20:10 +00:00
using Encompass.Exceptions;
2019-06-16 01:05:56 +00:00
namespace Encompass
{
internal class EntityManager
{
private readonly Dictionary<Guid, Entity> IDToEntity = new Dictionary<Guid, Entity>(1024);
private readonly HashSet<Entity> entitiesMarkedForDestroy = new HashSet<Entity>(256);
2019-06-19 23:13:02 +00:00
2019-06-20 17:46:15 +00:00
private readonly ComponentManager componentManager;
public EntityManager(ComponentManager componentManager)
2019-06-16 01:05:56 +00:00
{
this.componentManager = componentManager;
}
2019-06-16 01:05:56 +00:00
public Entity CreateEntity()
{
2019-06-19 23:13:02 +00:00
var id = NextID();
2019-07-17 18:24:21 +00:00
var entity = new Entity(id);
2019-06-19 23:13:02 +00:00
IDToEntity[id] = entity;
return entity;
}
public bool EntityExists(Guid id)
{
return IDToEntity.ContainsKey(id);
}
public Entity GetEntity(Guid id)
2019-06-16 01:05:56 +00:00
{
2019-08-22 22:20:10 +00:00
if (IDToEntity.ContainsKey(id))
{
return IDToEntity[id];
}
else
{
throw new EntityNotFoundException("Entity with ID {0} does not exist.", id);
}
}
2019-12-05 20:10:33 +00:00
public void MarkForDestroy(Entity entity)
2019-06-16 01:05:56 +00:00
{
2019-12-05 20:10:33 +00:00
entitiesMarkedForDestroy.Add(entity);
}
2019-06-19 23:13:02 +00:00
public void DestroyMarkedEntities()
2019-06-16 01:05:56 +00:00
{
2019-12-05 20:10:33 +00:00
foreach (var entity in entitiesMarkedForDestroy)
2019-06-16 01:05:56 +00:00
{
2019-12-05 20:10:33 +00:00
componentManager.MarkAllComponentsOnEntityForRemoval(entity);
IDToEntity.Remove(entity.ID);
}
2019-06-19 23:13:02 +00:00
entitiesMarkedForDestroy.Clear();
}
private Guid NextID()
2019-06-16 01:05:56 +00:00
{
return Guid.NewGuid();
}
}
}