encompass-cs/encompass-cs/Engine.cs

279 lines
11 KiB
C#
Raw Normal View History

2019-06-15 07:39:08 +00:00
using System;
using System.Reflection;
2019-06-15 00:51:06 +00:00
using System.Collections.Generic;
2019-06-17 01:11:35 +00:00
using System.Linq;
using Encompass.Exceptions;
2019-06-15 00:51:06 +00:00
2019-06-16 01:05:56 +00:00
namespace Encompass
{
public abstract class Engine
{
2019-07-19 01:20:38 +00:00
internal readonly HashSet<Type> sendTypes = new HashSet<Type>();
2019-07-17 18:31:18 +00:00
internal readonly HashSet<Type> readTypes = new HashSet<Type>();
2019-07-18 21:02:57 +00:00
internal readonly HashSet<Type> activateTypes = new HashSet<Type>();
2019-07-19 01:20:38 +00:00
internal readonly HashSet<Type> updateTypes = new HashSet<Type>();
2019-06-15 07:39:08 +00:00
2019-06-15 00:51:06 +00:00
private EntityManager entityManager;
private ComponentManager componentManager;
2019-06-16 01:55:35 +00:00
private MessageManager messageManager;
2019-06-15 00:51:06 +00:00
2019-06-20 17:46:15 +00:00
protected Engine()
2019-06-16 01:05:56 +00:00
{
2019-07-19 01:20:38 +00:00
var writesAttribute = GetType().GetCustomAttribute<Sends>(false);
2019-07-17 18:31:18 +00:00
if (writesAttribute != null)
2019-06-16 01:55:35 +00:00
{
2019-07-19 01:20:38 +00:00
sendTypes = writesAttribute.sendTypes;
2019-06-16 01:55:35 +00:00
}
2019-06-20 03:37:46 +00:00
var readsAttribute = GetType().GetCustomAttribute<Reads>(false);
2019-06-16 01:55:35 +00:00
if (readsAttribute != null)
{
2019-07-16 16:47:58 +00:00
readTypes = readsAttribute.readTypes;
2019-06-16 01:55:35 +00:00
}
2019-07-18 21:02:57 +00:00
var activatesAttribute = GetType().GetCustomAttribute<Activates>(false);
if (activatesAttribute != null)
{
activateTypes = activatesAttribute.activateTypes;
}
2019-07-19 01:20:38 +00:00
var updatesAttribute = GetType().GetCustomAttribute<Updates>(false);
if (updatesAttribute != null)
{
updateTypes = updatesAttribute.updateTypes;
if (sendTypes.Any())
{
throw new IllegalEngineAttributesException("Engine {0} sends Message(s) and updates Component(s)", GetType().Name);
}
}
2019-06-15 07:39:08 +00:00
}
2019-06-16 01:05:56 +00:00
internal void AssignEntityManager(EntityManager entityManager)
{
2019-06-15 00:51:06 +00:00
this.entityManager = entityManager;
}
2019-06-16 01:05:56 +00:00
internal void AssignComponentManager(ComponentManager componentManager)
{
2019-06-15 00:51:06 +00:00
this.componentManager = componentManager;
}
2019-06-16 01:55:35 +00:00
internal void AssignMessageManager(MessageManager messageManager)
{
this.messageManager = messageManager;
}
public abstract void Update(double dt);
2019-06-15 00:51:06 +00:00
2019-06-16 01:05:56 +00:00
protected Entity CreateEntity()
{
2019-06-20 03:37:46 +00:00
return entityManager.CreateEntity();
}
protected bool EntityExists(Guid entityID)
{
return entityManager.EntityExists(entityID);
}
2019-06-20 03:37:46 +00:00
protected Entity GetEntity(Guid entityID)
{
return entityManager.GetEntity(entityID);
}
protected Guid GetEntityIDByComponentID(Guid componentID)
2019-06-20 03:37:46 +00:00
{
return componentManager.GetEntityIDByComponentID(componentID);
2019-06-15 00:51:06 +00:00
}
protected Entity GetEntityByComponentID(Guid componentID)
{
return GetEntity(GetEntityIDByComponentID(componentID));
}
protected TComponent GetComponentByID<TComponent>(Guid componentID) where TComponent : struct, IComponent
{
if (componentManager.GetComponentTypeByID(componentID) != typeof(TComponent))
{
throw new ComponentTypeMismatchException("Expected Component to be of type {0} but was actually of type {1}", typeof(TComponent).Name, componentManager.GetComponentTypeByID(componentID).Name);
}
return (TComponent)componentManager.GetComponentByID(componentID);
}
2019-07-18 21:02:57 +00:00
internal IEnumerable<ValueTuple<Entity, Guid, TComponent>> ReadComponentsFromWorld<TComponent>() where TComponent : struct, IComponent
2019-06-16 01:05:56 +00:00
{
2019-07-18 21:02:57 +00:00
return componentManager.GetActiveComponentsByType<TComponent>().Select((triple) => (GetEntity(triple.Item1), triple.Item2, triple.Item3));
2019-06-15 00:51:06 +00:00
}
2019-06-15 07:39:08 +00:00
2019-07-17 18:24:21 +00:00
protected Guid AddComponent<TComponent>(Entity entity, TComponent component) where TComponent : struct, IComponent
{
2019-07-18 21:02:57 +00:00
if (!activateTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalActivateException("Engine {0} tried to activate undeclared Component {1}", GetType().Name, typeof(TComponent).Name);
}
var componentID = componentManager.AddComponent(entity.ID, component);
ComponentMessage<TComponent> componentMessage;
componentMessage.entity = entity;
componentMessage.componentID = componentID;
componentMessage.component = component;
SendMessage(componentMessage);
2019-07-18 21:02:57 +00:00
return componentID;
2019-07-17 18:24:21 +00:00
}
protected Guid AddDrawComponent<TComponent>(Entity entity, TComponent component, int layer = 0) where TComponent : struct, IComponent
{
2019-07-18 21:02:57 +00:00
if (!activateTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalActivateException("Engine {0} tried to activate undeclared Component {1}", GetType().Name, typeof(TComponent).Name);
}
var componentID = componentManager.AddDrawComponent(entity.ID, component, layer);
ComponentMessage<TComponent> componentMessage;
componentMessage.entity = entity;
componentMessage.componentID = componentID;
componentMessage.component = component;
SendMessage(componentMessage);
2019-07-18 21:02:57 +00:00
return componentID;
2019-07-17 18:24:21 +00:00
}
2019-07-18 21:02:57 +00:00
protected void ActivateComponent<TComponent>(Guid componentID) where TComponent : struct, IComponent
2019-07-17 18:24:21 +00:00
{
2019-07-18 21:02:57 +00:00
if (!activateTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalActivateException("Engine {0} tried to activate undeclared Component {1}", GetType().Name, typeof(TComponent).Name);
}
var entity = GetEntity(componentManager.GetEntityIDByComponentID(componentID));
var component = GetComponentByID<TComponent>(componentID);
ComponentMessage<TComponent> componentMessage;
componentMessage.entity = entity;
componentMessage.componentID = componentID;
componentMessage.component = component;
SendMessage(componentMessage);
2019-07-18 21:02:57 +00:00
componentManager.Activate(componentID);
2019-07-17 18:24:21 +00:00
}
protected void DeactivateComponent(Guid componentID)
{
componentManager.MarkForDeactivation(componentID);
2019-07-17 18:24:21 +00:00
}
protected IEnumerable<ValueTuple<Guid, TComponent>> GetComponents<TComponent>(Entity entity) where TComponent : struct, IComponent
{
2019-07-18 21:02:57 +00:00
if (!readTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalReadException("Engine {0} tried to read undeclared Component {1}", GetType().Name, typeof(TComponent).Name);
}
return ReadMessages<ComponentMessage<TComponent>>().Where((message) => message.entity == entity).Select((message) => (message.componentID, message.component));
2019-07-17 18:24:21 +00:00
}
protected ValueTuple<Guid, TComponent> GetComponent<TComponent>(Entity entity) where TComponent : struct, IComponent
{
return GetComponents<TComponent>(entity).First();
}
protected bool HasComponent<TComponent>(Entity entity) where TComponent : struct, IComponent
{
2019-07-18 21:02:57 +00:00
if (!readTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalReadException("Engine {0} tried to read undeclared Component {1}", GetType().Name, typeof(TComponent).Name);
}
return ReadMessages<ComponentMessage<TComponent>>().Where((message) => message.entity == entity).Any();
2019-07-17 18:24:21 +00:00
}
internal void UpdateComponentInWorld<TComponent>(Guid componentID, TComponent newComponent) where TComponent : struct, IComponent
2019-06-16 01:05:56 +00:00
{
2019-07-19 01:20:38 +00:00
if (!updateTypes.Contains(typeof(TComponent)))
2019-06-16 01:05:56 +00:00
{
throw new IllegalWriteException("Engine {0} tried to write undeclared Component {1}", this.GetType().Name, typeof(TComponent).Name);
2019-06-15 18:40:42 +00:00
}
2019-07-18 01:53:31 +00:00
componentManager.AddUpdateComponentOperation(componentID, newComponent);
2019-06-15 18:40:42 +00:00
}
protected void UpdateComponent<TComponent>(Guid componentID, TComponent newComponentValue) where TComponent : struct, IComponent
2019-06-16 01:05:56 +00:00
{
2019-06-20 03:37:46 +00:00
UpdateComponentInWorld(componentID, newComponentValue);
2019-06-15 07:39:08 +00:00
}
2019-06-16 01:55:35 +00:00
protected void SendMessage<TMessage>(TMessage message) where TMessage : struct, IMessage
2019-06-16 01:55:35 +00:00
{
2019-07-19 01:20:38 +00:00
if (!sendTypes.Contains(typeof(TMessage)))
2019-06-16 01:55:35 +00:00
{
throw new IllegalWriteException("Engine {0} tried to write undeclared Message {1}", this.GetType().Name, typeof(TMessage).Name);
2019-06-16 01:55:35 +00:00
}
messageManager.AddMessage(message);
2019-06-16 01:55:35 +00:00
}
protected IEnumerable<TMessage> ReadMessages<TMessage>() where TMessage : struct, IMessage
{
if (!readTypes.Contains(typeof(TMessage)))
2019-06-16 01:55:35 +00:00
{
throw new IllegalReadException("Engine {0} tried to read undeclared Message {1}", this.GetType().Name, typeof(TMessage).Name);
2019-06-16 01:55:35 +00:00
}
return messageManager.GetMessagesByType<TMessage>();
2019-06-16 01:55:35 +00:00
}
2019-06-17 01:11:35 +00:00
2019-07-18 21:02:57 +00:00
protected TMessage ReadMessage<TMessage>() where TMessage : struct, IMessage
{
return ReadMessages<TMessage>().Single();
}
protected IEnumerable<(Guid, TComponent)> ReadComponents<TComponent>() where TComponent : struct, IComponent
{
if (!readTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalReadException("Engine {0} tried to read undeclared Component {1}", this.GetType().Name, typeof(TComponent).Name);
}
return ReadMessages<ComponentMessage<TComponent>>().Select((message) => (message.componentID, message.component));
}
protected (Guid, TComponent) ReadComponent<TComponent>() where TComponent : struct, IComponent
{
return ReadComponents<TComponent>().Single();
}
protected bool SomeMessage<TMessage>() where TMessage : struct, IMessage
2019-06-17 01:11:35 +00:00
{
if (!readTypes.Contains(typeof(TMessage)))
2019-06-17 01:11:35 +00:00
{
2019-07-18 21:02:57 +00:00
throw new IllegalReadException("Engine {0} tried to read undeclared Message {1}", GetType().Name, typeof(TMessage).Name);
2019-06-17 01:11:35 +00:00
}
return ReadMessages<TMessage>().Any();
2019-06-17 01:11:35 +00:00
}
2019-06-20 03:37:46 +00:00
protected bool SomeComponent<TComponent>() where TComponent : struct, IComponent
{
2019-07-18 21:02:57 +00:00
if (!readTypes.Contains(typeof(ComponentMessage<TComponent>)))
{
throw new IllegalReadException("Engine {0} tried to read undeclared Component {1}", GetType().Name, typeof(TComponent).Name);
}
return ReadMessages<ComponentMessage<TComponent>>().Any();
}
2019-06-20 03:37:46 +00:00
protected void Destroy(Guid entityID)
{
entityManager.MarkForDestroy(entityID);
}
2019-07-17 18:24:21 +00:00
protected void RemoveComponent(Guid componentID)
{
componentManager.MarkForRemoval(componentID);
2019-07-17 18:24:21 +00:00
}
2019-06-15 00:51:06 +00:00
}
}