MoonTools.ECS/src/System.cs

148 lines
4.5 KiB
C#
Raw Normal View History

2022-04-08 05:52:03 +00:00
using System;
using System.Collections.Generic;
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
namespace MoonTools.ECS
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
public abstract class System : EntityComponentReader
2022-03-07 07:17:05 +00:00
{
internal MessageDepot MessageDepot => World.MessageDepot;
2022-03-07 07:17:05 +00:00
public System(World world) : base(world) { }
2022-03-07 07:17:05 +00:00
2022-04-08 05:52:03 +00:00
public abstract void Update(TimeSpan delta);
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
protected Entity CreateEntity()
2022-04-07 03:07:18 +00:00
{
2022-04-08 05:52:03 +00:00
return EntityStorage.Create();
2022-04-07 03:07:18 +00:00
}
2022-03-05 02:01:44 +00:00
protected void Set<TComponent>(in Entity entity, in TComponent component) where TComponent : unmanaged
2022-04-08 05:52:03 +00:00
{
#if DEBUG
// check for use after destroy
if (!Exists(entity))
{
throw new ArgumentException("This entity is not valid!");
}
#endif
2022-12-03 07:43:54 +00:00
if (EntityStorage.SetComponent(entity.ID, ComponentTypeIndices.GetIndex<TComponent>()))
{
FilterStorage.Check<TComponent>(entity.ID);
}
2022-04-08 05:52:03 +00:00
ComponentDepot.Set<TComponent>(entity.ID, component);
}
2022-03-05 02:01:44 +00:00
protected void Remove<TComponent>(in Entity entity) where TComponent : unmanaged
2022-04-08 05:52:03 +00:00
{
2022-12-03 07:43:54 +00:00
if (EntityStorage.RemoveComponent(entity.ID, ComponentTypeIndices.GetIndex<TComponent>()))
{
ComponentDepot.Remove<TComponent>(entity.ID);
FilterStorage.Check<TComponent>(entity.ID);
}
2022-04-08 05:52:03 +00:00
}
2022-03-16 07:33:38 +00:00
2022-12-06 01:46:18 +00:00
protected void Set<TComponent>(in Template template, in TComponent component) where TComponent : unmanaged
{
var componentTypeIndex = ComponentTypeIndices.GetIndex<TComponent>();
TemplateStorage.SetComponent(template.ID, componentTypeIndex);
TemplateComponentDepot.Set(template.ID, component);
ComponentDepot.Register<TComponent>(componentTypeIndex);
}
protected Entity Instantiate(in Template template)
{
var entity = EntityStorage.Create();
foreach (var componentTypeIndex in TemplateStorage.ComponentTypeIndices(template.ID))
{
EntityStorage.SetComponent(entity.ID, componentTypeIndex);
FilterStorage.Check(entity.ID, componentTypeIndex);
ComponentDepot.Set(entity.ID, componentTypeIndex, TemplateComponentDepot.UntypedGet(template.ID, componentTypeIndex));
}
return entity;
}
protected ReadOnlySpan<TMessage> ReadMessages<TMessage>() where TMessage : unmanaged
2022-04-08 05:52:03 +00:00
{
return MessageDepot.All<TMessage>();
}
2022-03-07 07:17:05 +00:00
protected TMessage ReadMessage<TMessage>() where TMessage : unmanaged
2022-04-08 05:52:03 +00:00
{
return MessageDepot.First<TMessage>();
}
2022-03-07 07:17:05 +00:00
protected bool SomeMessage<TMessage>() where TMessage : unmanaged
2022-04-08 05:52:03 +00:00
{
return MessageDepot.Some<TMessage>();
}
2022-03-18 19:50:59 +00:00
protected IEnumerable<TMessage> ReadMessagesWithEntity<TMessage>(in Entity entity) where TMessage : unmanaged, IHasEntity
2022-04-08 05:52:03 +00:00
{
return MessageDepot.WithEntity<TMessage>(entity.ID);
}
2022-03-18 19:50:59 +00:00
protected ref readonly TMessage ReadMessageWithEntity<TMessage>(in Entity entity) where TMessage : unmanaged, IHasEntity
2022-04-08 05:52:03 +00:00
{
return ref MessageDepot.FirstWithEntity<TMessage>(entity.ID);
}
2022-03-18 19:50:59 +00:00
protected bool SomeMessageWithEntity<TMessage>(in Entity entity) where TMessage : unmanaged, IHasEntity
2022-04-08 05:52:03 +00:00
{
return MessageDepot.SomeWithEntity<TMessage>(entity.ID);
}
2022-03-07 18:56:53 +00:00
protected void Send<TMessage>(in TMessage message) where TMessage : unmanaged
2022-04-08 05:52:03 +00:00
{
MessageDepot.Add(message);
}
2022-04-06 19:53:50 +00:00
protected void Relate<TRelationKind>(in Entity entityA, in Entity entityB, TRelationKind relationData) where TRelationKind : unmanaged
2022-04-08 05:52:03 +00:00
{
RelationDepot.Set<TRelationKind>(new Relation(entityA, entityB), relationData);
2022-12-03 07:43:54 +00:00
var relationTypeIndex = RelationTypeIndices.GetIndex<TRelationKind>();
EntityStorage.AddRelation(entityA.ID, relationTypeIndex);
EntityStorage.AddRelation(entityB.ID, relationTypeIndex);
2022-04-08 05:52:03 +00:00
}
2022-04-06 19:53:50 +00:00
protected void Unrelate<TRelationKind>(in Entity entityA, in Entity entityB) where TRelationKind : unmanaged
2022-04-08 05:52:03 +00:00
{
2022-12-03 07:43:54 +00:00
var (aEmpty, bEmpty) = RelationDepot.Remove<TRelationKind>(new Relation(entityA, entityB));
if (aEmpty)
{
EntityStorage.RemoveRelation(entityA.ID, RelationTypeIndices.GetIndex<TRelationKind>());
}
if (bEmpty)
{
EntityStorage.RemoveRelation(entityB.ID, RelationTypeIndices.GetIndex<TRelationKind>());
}
2022-04-08 05:52:03 +00:00
}
protected void UnrelateAll<TRelationKind>(in Entity entity) where TRelationKind : unmanaged
{
RelationDepot.UnrelateAll<TRelationKind>(entity.ID);
2022-12-03 07:43:54 +00:00
EntityStorage.RemoveRelation(entity.ID, RelationTypeIndices.GetIndex<TRelationKind>());
}
2022-04-08 05:52:03 +00:00
protected void Destroy(in Entity entity)
{
2022-12-03 07:43:54 +00:00
foreach (var componentTypeIndex in EntityStorage.ComponentTypeIndices(entity.ID))
{
ComponentDepot.Remove(entity.ID, componentTypeIndex);
FilterStorage.RemoveEntity(entity.ID, componentTypeIndex);
}
foreach (var relationTypeIndex in EntityStorage.RelationTypeIndices(entity.ID))
{
RelationDepot.UnrelateAll(entity.ID, relationTypeIndex);
}
2022-04-08 05:52:03 +00:00
EntityStorage.Destroy(entity);
}
2022-03-05 02:01:44 +00:00
}
}