world builder
parent
56bf01f03c
commit
f88870e2d8
|
@ -1,14 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Encompass {
|
||||
public class World {
|
||||
EntityManager entityManager;
|
||||
ComponentManager componentManager;
|
||||
|
||||
public World() {
|
||||
this.componentManager = new ComponentManager();
|
||||
this.entityManager = new EntityManager(componentManager);
|
||||
internal World(EntityManager entityManager, ComponentManager componentManager) {
|
||||
this.entityManager = entityManager;
|
||||
this.componentManager = componentManager;
|
||||
}
|
||||
|
||||
public void Update() {
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Encompass {
|
||||
public class WorldBuilder {
|
||||
private ComponentManager componentManager;
|
||||
private EntityManager entityManager;
|
||||
|
||||
public WorldBuilder() {
|
||||
componentManager = new ComponentManager();
|
||||
entityManager = new EntityManager(componentManager);
|
||||
}
|
||||
|
||||
public Entity CreateEntity() {
|
||||
return this.entityManager.CreateEntity();
|
||||
}
|
||||
|
||||
public World Build() {
|
||||
var world = new World(this.entityManager, this.componentManager);
|
||||
|
||||
this.componentManager.ActivateComponents();
|
||||
this.componentManager.RemoveComponents();
|
||||
|
||||
return world;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -11,5 +11,6 @@
|
|||
<Content Include="World.cs" />
|
||||
<Content Include="EntityManager.cs" />
|
||||
<Content Include="ComponentManager.cs" />
|
||||
<Content Include="WorldBuilder.cs" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,9 +1,9 @@
|
|||
using NUnit.Framework;
|
||||
using System.Linq;
|
||||
|
||||
namespace Encompass
|
||||
{
|
||||
namespace Tests {
|
||||
using Encompass;
|
||||
|
||||
namespace Tests {
|
||||
struct MockComponent : IComponent {
|
||||
public string myString;
|
||||
public int myInt;
|
||||
|
@ -14,8 +14,8 @@ namespace Encompass
|
|||
[Test]
|
||||
public void AddComponent()
|
||||
{
|
||||
var world = new World();
|
||||
var entity = world.CreateEntity();
|
||||
var worldBuilder = new WorldBuilder();
|
||||
var entity = worldBuilder.CreateEntity();
|
||||
|
||||
MockComponent mockComponent;
|
||||
mockComponent.myInt = 3;
|
||||
|
@ -23,7 +23,8 @@ namespace Encompass
|
|||
|
||||
entity.AddComponent<MockComponent>(mockComponent);
|
||||
|
||||
world.Update();
|
||||
var world = worldBuilder.Build();
|
||||
// world.Update();
|
||||
|
||||
Assert.IsTrue(entity.HasComponent<MockComponent>());
|
||||
Assert.AreEqual(mockComponent, entity.GetComponent<MockComponent>());
|
||||
|
@ -32,8 +33,8 @@ namespace Encompass
|
|||
[Test]
|
||||
public void GetComponents()
|
||||
{
|
||||
var world = new World();
|
||||
var entity = world.CreateEntity();
|
||||
var worldBuilder = new WorldBuilder();
|
||||
var entity = worldBuilder.CreateEntity();
|
||||
|
||||
MockComponent mockComponentA;
|
||||
mockComponentA.myInt = 3;
|
||||
|
@ -51,7 +52,7 @@ namespace Encompass
|
|||
entity.AddComponent<MockComponent>(mockComponentB);
|
||||
entity.AddComponent<MockComponent>(mockComponentC);
|
||||
|
||||
world.Update();
|
||||
var world = worldBuilder.Build();
|
||||
|
||||
Assert.Contains(mockComponentA, entity.GetComponents<MockComponent>().ToList());
|
||||
Assert.Contains(mockComponentB, entity.GetComponents<MockComponent>().ToList());
|
||||
|
@ -61,8 +62,8 @@ namespace Encompass
|
|||
[Test]
|
||||
public void GetComponent()
|
||||
{
|
||||
var world = new World();
|
||||
var entity = world.CreateEntity();
|
||||
var worldBuilder = new WorldBuilder();
|
||||
var entity = worldBuilder.CreateEntity();
|
||||
|
||||
MockComponent mockComponent;
|
||||
mockComponent.myInt = 3;
|
||||
|
@ -70,7 +71,7 @@ namespace Encompass
|
|||
|
||||
entity.AddComponent<MockComponent>(mockComponent);
|
||||
|
||||
world.Update();
|
||||
var world = worldBuilder.Build();
|
||||
|
||||
Assert.AreEqual(mockComponent, entity.GetComponent<MockComponent>());
|
||||
}
|
||||
|
@ -78,8 +79,8 @@ namespace Encompass
|
|||
[Test]
|
||||
public void HasComponent()
|
||||
{
|
||||
var world = new World();
|
||||
var entity = world.CreateEntity();
|
||||
var worldBuilder = new WorldBuilder();
|
||||
var entity = worldBuilder.CreateEntity();
|
||||
|
||||
MockComponent mockComponent;
|
||||
mockComponent.myInt = 3;
|
||||
|
@ -87,10 +88,9 @@ namespace Encompass
|
|||
|
||||
entity.AddComponent<MockComponent>(mockComponent);
|
||||
|
||||
world.Update();
|
||||
var world = worldBuilder.Build();
|
||||
|
||||
Assert.IsTrue(entity.HasComponent<MockComponent>());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue