mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
* Move MapManager queries to SharedMapSystem Moves all variants of FindGridsIntersecting/TryFindGridAt to SharedMapSystem Hollows out the MapManager methods and converts them into relays to SharedMapSystem * Move CreateGrid to SharedMapSystem Moves the functionality for CreateGrid and its variants to SharedMapSystem Hollows out the MapManager methods and converts them into relays for the SharedMapSystem methods Obsoletes them too Also moves over the GetAllMapGrids and GetAllGrids methods * Move RaiseOnTileChanged to SharedMapSystem Also moves the SuppressOnTileChanged flag member to SharedMapSystem Hollows out and obsoletes the MapManager versions * Move default value constants to SharedMapSystem * Converts map pausing events into LocalizedEntityCommands * Move MapManager related delegates/structs to SharedMapSystem Moves the GridCreationOptions struct to the same namespace as SharedMapSystem and converts it into a record struct Move the GridCallback delegates to the same namespace as SharedMapSystem * Move CullDeletionHistory to SharedMapSystem Well, that was less painful than I thought it would be * Actually obsolete the NetworkedMapManager method * Rename file * Doc comments for new SharedMapSystem methods * Doc comment * Doc comments * Fix access * Purge all references to IMapManagerInternal * Cull easy IMapManager references * The rest * Purge IMapManager * Private internal FindGridsIntersecting method * please die * 41 * notes --------- Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
271 lines
13 KiB
C#
271 lines
13 KiB
C#
using System.Numerics;
|
|
using NUnit.Framework;
|
|
using Robust.Server.Containers;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
using Robust.UnitTesting.Server;
|
|
|
|
namespace Robust.UnitTesting.Shared.Physics;
|
|
|
|
[TestFixture]
|
|
internal sealed class RecursiveUpdateTest
|
|
{
|
|
/// <summary>
|
|
/// Check that the broadphase updates if a an entity is a child of an entity that is in a container.
|
|
/// </summary>
|
|
[Test]
|
|
public void ContainerRecursiveUpdateTest()
|
|
{
|
|
var sim = RobustServerSimulation.NewSimulation().InitializeInstance();
|
|
var entManager = sim.Resolve<IEntityManager>();
|
|
var xforms = entManager.System<SharedTransformSystem>();
|
|
var mapSystem = entManager.System<SharedMapSystem>();
|
|
var containers = entManager.System<ContainerSystem>();
|
|
|
|
var mapId = sim.CreateMap().MapId;
|
|
var grid = mapSystem.CreateGridEntity(mapId);
|
|
var guid = grid.Owner;
|
|
mapSystem.SetTile(grid, Vector2i.Zero, new Tile(1));
|
|
Assert.That(entManager.HasComponent<BroadphaseComponent>(guid));
|
|
|
|
var broadphase = entManager.GetComponent<BroadphaseComponent>(guid);
|
|
var coords = new EntityCoordinates(guid, new Vector2(0.5f, 0.5f));
|
|
var broadData = new BroadphaseData(guid, false, false);
|
|
|
|
var container = entManager.SpawnEntity(null, coords);
|
|
var containerXform = entManager.GetComponent<TransformComponent>(container);
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(container));
|
|
Assert.That(containerXform.Broadphase, Is.EqualTo(broadData));
|
|
|
|
var contained = entManager.SpawnEntity(null, coords);
|
|
var childA = entManager.SpawnEntity(null, MapCoordinates.Nullspace);
|
|
var childB = entManager.SpawnEntity(null, MapCoordinates.Nullspace);
|
|
|
|
var containedXform = entManager.GetComponent<TransformComponent>(contained);
|
|
var childAXform = entManager.GetComponent<TransformComponent>(childA);
|
|
var childBXform = entManager.GetComponent<TransformComponent>(childB);
|
|
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(contained));
|
|
Assert.That(containedXform.Broadphase, Is.EqualTo(broadData));
|
|
|
|
// Attach child A before inserting.
|
|
xforms.SetCoordinates(childA, childAXform, new EntityCoordinates(contained, Vector2.Zero));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(childA));
|
|
Assert.That(childAXform.Broadphase, Is.EqualTo(broadData));
|
|
|
|
// Insert into container.
|
|
var slot = containers.EnsureContainer<ContainerSlot>(container, "test");
|
|
containers.Insert(contained, slot);
|
|
|
|
// Attach child B after having inserted.
|
|
xforms.SetCoordinates(childB, childBXform, new EntityCoordinates(contained, Vector2.Zero));
|
|
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(container));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(contained));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(childA));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(childB));
|
|
|
|
Assert.That(containerXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(containedXform.Broadphase, Is.EqualTo(null));
|
|
Assert.That(childAXform.Broadphase, Is.EqualTo(null));
|
|
Assert.That(childBXform.Broadphase, Is.EqualTo(null));
|
|
|
|
Assert.That(containerXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(containedXform.ParentUid, Is.EqualTo(container));
|
|
Assert.That(childAXform.ParentUid, Is.EqualTo(contained));
|
|
Assert.That(childBXform.ParentUid, Is.EqualTo(contained));
|
|
|
|
// Check that moving the container does not re-add the contained entities to the broadphase.
|
|
var newCoords = new EntityCoordinates(guid, new Vector2(0.25f, 0.25f));
|
|
xforms.SetCoordinates(container, newCoords);
|
|
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(container));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(contained));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(childA));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(childB));
|
|
|
|
Assert.That(containerXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(containedXform.Broadphase, Is.EqualTo(null));
|
|
Assert.That(childAXform.Broadphase, Is.EqualTo(null));
|
|
Assert.That(childBXform.Broadphase, Is.EqualTo(null));
|
|
|
|
Assert.That(containerXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(containedXform.ParentUid, Is.EqualTo(container));
|
|
Assert.That(childAXform.ParentUid, Is.EqualTo(contained));
|
|
Assert.That(childBXform.ParentUid, Is.EqualTo(contained));
|
|
|
|
// Remove from container.
|
|
containers.Remove(contained, slot);
|
|
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(container));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(contained));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(childA));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(childB));
|
|
|
|
Assert.That(containerXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(containedXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(childAXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(childBXform.Broadphase, Is.EqualTo(broadData));
|
|
|
|
Assert.That(containerXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(containedXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(childAXform.ParentUid, Is.EqualTo(contained));
|
|
Assert.That(childBXform.ParentUid, Is.EqualTo(contained));
|
|
|
|
// Insert back into container.
|
|
containers.Insert(contained, slot);
|
|
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(container));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(contained));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(childA));
|
|
Assert.That(broadphase.SundriesTree, Does.Not.Contain(childB));
|
|
|
|
Assert.That(containerXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(containedXform.Broadphase, Is.EqualTo(null));
|
|
Assert.That(childAXform.Broadphase, Is.EqualTo(null));
|
|
Assert.That(childBXform.Broadphase, Is.EqualTo(null));
|
|
|
|
Assert.That(containerXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(containedXform.ParentUid, Is.EqualTo(container));
|
|
Assert.That(childAXform.ParentUid, Is.EqualTo(contained));
|
|
Assert.That(childBXform.ParentUid, Is.EqualTo(contained));
|
|
|
|
// re-remove from container, but this time WITHOUT changing parent.
|
|
containers.Remove(contained, slot, reparent: false);
|
|
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(container));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(contained));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(childA));
|
|
Assert.That(broadphase.SundriesTree, Does.Contain(childB));
|
|
|
|
Assert.That(containerXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(containedXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(childAXform.Broadphase, Is.EqualTo(broadData));
|
|
Assert.That(childBXform.Broadphase, Is.EqualTo(broadData));
|
|
|
|
Assert.That(containerXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(containedXform.ParentUid, Is.EqualTo(container));
|
|
Assert.That(childAXform.ParentUid, Is.EqualTo(contained));
|
|
Assert.That(childBXform.ParentUid, Is.EqualTo(contained));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Check that the broadphase positions update when moving an entity's parent.
|
|
/// </summary>
|
|
[Test]
|
|
public void RecursiveMoveTest()
|
|
{
|
|
var sim = RobustServerSimulation.NewSimulation().InitializeInstance();
|
|
var entManager = sim.Resolve<IEntityManager>();
|
|
var mapSystem = entManager.EntitySysManager.GetEntitySystem<SharedMapSystem>();
|
|
var transforms = entManager.EntitySysManager.GetEntitySystem<SharedTransformSystem>();
|
|
var lookup = entManager.EntitySysManager.GetEntitySystem<EntityLookupSystem>();
|
|
|
|
var mapId = sim.CreateMap().MapId;
|
|
var map = mapSystem.GetMapOrInvalid(mapId);
|
|
var mapBroadphase = entManager.GetComponent<BroadphaseComponent>(map);
|
|
|
|
var coords = new EntityCoordinates(map, new Vector2(0.5f, 0.5f));
|
|
var mapBroadData = new BroadphaseData(map, false, false);
|
|
|
|
// Set up parent & child
|
|
var parent = entManager.SpawnEntity(null, coords);
|
|
var child = entManager.SpawnEntity(null, new EntityCoordinates(parent, Vector2.Zero));
|
|
var parentXform = entManager.GetComponent<TransformComponent>(parent);
|
|
var childXform = entManager.GetComponent<TransformComponent>(child);
|
|
|
|
// Check correct broadphase
|
|
Assert.That(parentXform.ParentUid, Is.EqualTo(map));
|
|
Assert.That(childXform.ParentUid, Is.EqualTo(parent));
|
|
Assert.That(mapBroadphase.SundriesTree, Does.Contain(parent));
|
|
Assert.That(mapBroadphase.SundriesTree, Does.Contain(child));
|
|
Assert.That(parentXform.Broadphase, Is.EqualTo(mapBroadData));
|
|
Assert.That(childXform.Broadphase, Is.EqualTo(mapBroadData));
|
|
|
|
// Check that the entities can be found via a lookup.
|
|
var box = Box2.CenteredAround(coords.Position, Vector2.One);
|
|
var ents = lookup.GetEntitiesIntersecting(mapId, box);
|
|
Assert.That(ents, Does.Contain(parent));
|
|
Assert.That(ents, Does.Contain(child));
|
|
|
|
// Move the parent far away.
|
|
var farCoords = new EntityCoordinates(map, new Vector2(100f, 100f));
|
|
transforms.SetCoordinates(parent, farCoords);
|
|
|
|
// broadphases have not changed
|
|
Assert.That(parentXform.ParentUid, Is.EqualTo(map));
|
|
Assert.That(childXform.ParentUid, Is.EqualTo(parent));
|
|
Assert.That(mapBroadphase.SundriesTree, Does.Contain(parent));
|
|
Assert.That(mapBroadphase.SundriesTree, Does.Contain(child));
|
|
Assert.That(parentXform.Broadphase, Is.EqualTo(mapBroadData));
|
|
Assert.That(childXform.Broadphase, Is.EqualTo(mapBroadData));
|
|
|
|
// old lookup area no longer finds anything
|
|
ents = lookup.GetEntitiesIntersecting(mapId, box);
|
|
Assert.That(ents.Count, Is.EqualTo(0));
|
|
|
|
// updated lookup area still finds entities
|
|
var farBox = Box2.CenteredAround(farCoords.Position, Vector2.One);
|
|
ents = lookup.GetEntitiesIntersecting(mapId, farBox);
|
|
Assert.That(ents, Does.Contain(parent));
|
|
Assert.That(ents, Does.Contain(child));
|
|
|
|
// Try again, but this time with a parent change.
|
|
var grid = mapSystem.CreateGridEntity(mapId);
|
|
var guid = grid.Owner;
|
|
mapSystem.SetTile(grid, Vector2i.Zero, new Tile(1));
|
|
var gridBroadphase = entManager.GetComponent<BroadphaseComponent>(guid);
|
|
var gridBroadData = new BroadphaseData(guid, false, false);
|
|
|
|
var gridCoords = new EntityCoordinates(map, new Vector2(-100f, -100f));
|
|
transforms.SetCoordinates(guid, gridCoords);
|
|
|
|
// Move parent to the grid
|
|
var gridLocal = new EntityCoordinates(guid, new Vector2(0.5f, 0.5f));
|
|
transforms.SetCoordinates(parent, gridLocal);
|
|
|
|
// broadphases have now changed to be on the grids broadphase
|
|
Assert.That(parentXform.ParentUid, Is.EqualTo(guid));
|
|
Assert.That(childXform.ParentUid, Is.EqualTo(parent));
|
|
Assert.That(gridBroadphase.SundriesTree, Does.Contain(parent));
|
|
Assert.That(gridBroadphase.SundriesTree, Does.Contain(child));
|
|
Assert.That(mapBroadphase.SundriesTree, Does.Not.Contain(parent));
|
|
Assert.That(mapBroadphase.SundriesTree, Does.Not.Contain(child));
|
|
Assert.That(parentXform.Broadphase, Is.EqualTo(gridBroadData));
|
|
Assert.That(childXform.Broadphase, Is.EqualTo(gridBroadData));
|
|
|
|
// old lookup areas no longer finds anything
|
|
ents = lookup.GetEntitiesIntersecting(mapId, box);
|
|
Assert.That(ents.Count, Is.EqualTo(0));
|
|
ents = lookup.GetEntitiesIntersecting(mapId, farBox);
|
|
Assert.That(ents.Count, Is.EqualTo(0));
|
|
|
|
// grid lookup works
|
|
var gridBox = Box2.CenteredAround(gridCoords.Position, Vector2.One);
|
|
ents = lookup.GetEntitiesIntersecting(mapId, gridBox);
|
|
Assert.That(ents, Does.Contain(parent));
|
|
Assert.That(ents, Does.Contain(child));
|
|
|
|
// Move grid far away
|
|
var newGridCoords = new EntityCoordinates(map, new Vector2(-100f, 100f));
|
|
transforms.SetCoordinates(guid, newGridCoords);
|
|
|
|
// Check lookups again
|
|
ents = lookup.GetEntitiesIntersecting(mapId, box);
|
|
Assert.That(ents.Count, Is.EqualTo(0));
|
|
ents = lookup.GetEntitiesIntersecting(mapId, farBox);
|
|
Assert.That(ents.Count, Is.EqualTo(0));
|
|
ents = lookup.GetEntitiesIntersecting(mapId, gridBox);
|
|
Assert.That(ents.Count, Is.EqualTo(0));
|
|
|
|
// grid lookup works
|
|
var newGridBox = Box2.CenteredAround(newGridCoords.Position, Vector2.One);
|
|
ents = lookup.GetEntitiesIntersecting(mapId, newGridBox);
|
|
Assert.That(ents, Does.Contain(parent));
|
|
Assert.That(ents, Does.Contain(child));
|
|
}
|
|
}
|