2019-11-21 21:53:33 +00:00
|
|
|
|
using Encompass;
|
2019-06-29 05:07:48 +00:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
namespace Tests
|
|
|
|
|
{
|
|
|
|
|
public class SpawnerTest
|
|
|
|
|
{
|
|
|
|
|
struct TestComponent : IComponent { }
|
|
|
|
|
struct SpawnMessageA : IMessage { }
|
|
|
|
|
|
|
|
|
|
static Entity resultEntity;
|
|
|
|
|
|
2019-07-19 01:20:38 +00:00
|
|
|
|
[Sends(typeof(SpawnMessageA))]
|
2019-06-29 05:57:18 +00:00
|
|
|
|
class MessageEmitter : Engine
|
|
|
|
|
{
|
|
|
|
|
public override void Update(double dt)
|
|
|
|
|
{
|
2019-07-19 03:31:31 +00:00
|
|
|
|
SendMessage(new SpawnMessageA());
|
2019-06-29 05:57:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-24 03:04:26 +00:00
|
|
|
|
[WritesImmediate(typeof(TestComponent))]
|
2019-08-21 02:25:59 +00:00
|
|
|
|
[Writes(typeof(TestComponent))]
|
2019-06-29 05:07:48 +00:00
|
|
|
|
class TestSpawner : Spawner<SpawnMessageA>
|
|
|
|
|
{
|
|
|
|
|
protected override void Spawn(SpawnMessageA message)
|
|
|
|
|
{
|
|
|
|
|
resultEntity = CreateEntity();
|
2019-08-21 02:25:59 +00:00
|
|
|
|
SetComponent(resultEntity, new TestComponent());
|
2019-07-17 18:24:21 +00:00
|
|
|
|
Assert.Pass();
|
2019-06-29 05:07:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void RunsSpawnMethodOnMessageRead()
|
|
|
|
|
{
|
|
|
|
|
var worldBuilder = new WorldBuilder();
|
2019-06-29 05:57:18 +00:00
|
|
|
|
worldBuilder.AddEngine(new MessageEmitter());
|
2019-06-29 05:07:48 +00:00
|
|
|
|
worldBuilder.AddEngine(new TestSpawner());
|
|
|
|
|
|
|
|
|
|
var world = worldBuilder.Build();
|
|
|
|
|
|
|
|
|
|
world.Update(0.01);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|