mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
407 lines
12 KiB
C#
407 lines
12 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Linq;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Log;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Robust.Shared.Map;
|
|
|
|
/// <summary>
|
|
/// Arguments for when a one or more tiles on a grid is changed at once.
|
|
/// </summary>
|
|
public sealed class GridChangedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Creates a new instance of this class.
|
|
/// </summary>
|
|
public GridChangedEventArgs(IMapGrid grid, IReadOnlyCollection<(Vector2i position, Tile tile)> modified)
|
|
{
|
|
Grid = grid;
|
|
Modified = modified;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Grid being changed.
|
|
/// </summary>
|
|
public IMapGrid Grid { get; }
|
|
|
|
public IReadOnlyCollection<(Vector2i position, Tile tile)> Modified { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Arguments for when a single tile on a grid is changed locally or remotely.
|
|
/// </summary>
|
|
public sealed class TileChangedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Creates a new instance of this class.
|
|
/// </summary>
|
|
public TileChangedEventArgs(TileRef newTile, Tile oldTile)
|
|
{
|
|
NewTile = newTile;
|
|
OldTile = oldTile;
|
|
}
|
|
|
|
/// <summary>
|
|
/// New tile that replaced the old one.
|
|
/// </summary>
|
|
public TileRef NewTile { get; }
|
|
|
|
/// <summary>
|
|
/// Old tile that was replaced.
|
|
/// </summary>
|
|
public Tile OldTile { get; }
|
|
}
|
|
|
|
internal partial class MapManager
|
|
{
|
|
private readonly Dictionary<GridId, EntityUid> _grids = new();
|
|
|
|
private GridId _highestGridId = GridId.Invalid;
|
|
|
|
public virtual void ChunkRemoved(MapChunk chunk) { }
|
|
|
|
public EntityUid GetGridEuid(GridId id)
|
|
{
|
|
DebugTools.Assert(id != GridId.Invalid);
|
|
|
|
//This turns into a linear search with EntityQuery without the _grids mapping
|
|
return _grids[id];
|
|
}
|
|
|
|
public bool TryGetGridEuid(GridId id, [MaybeNullWhen(false)] out EntityUid euid)
|
|
{
|
|
DebugTools.Assert(id != GridId.Invalid);
|
|
|
|
if (_grids.TryGetValue(id, out euid))
|
|
return true;
|
|
|
|
euid = default;
|
|
return false;
|
|
}
|
|
|
|
public IMapGridComponent GetGridComp(GridId id)
|
|
{
|
|
DebugTools.Assert(id != GridId.Invalid);
|
|
|
|
var euid = GetGridEuid(id);
|
|
return GetGridComp(euid);
|
|
}
|
|
|
|
public IMapGridComponent GetGridComp(EntityUid euid)
|
|
{
|
|
return EntityManager.GetComponent<IMapGridComponent>(euid);
|
|
}
|
|
|
|
public bool TryGetGridComp(GridId id, [MaybeNullWhen(false)] out IMapGridComponent comp)
|
|
{
|
|
DebugTools.Assert(id != GridId.Invalid);
|
|
|
|
var euid = GetGridEuid(id);
|
|
if (EntityManager.TryGetComponent(euid, out comp))
|
|
return true;
|
|
|
|
comp = default;
|
|
return false;
|
|
}
|
|
|
|
public IMapGridInternal CreateBoundGrid(MapId mapId, MapGridComponent gridComponent)
|
|
{
|
|
var mapGrid = CreateUnboundGrid(mapId);
|
|
|
|
BindGrid(gridComponent, mapGrid);
|
|
return mapGrid;
|
|
}
|
|
|
|
public void BindGrid(MapGridComponent gridComponent, MapGrid mapGrid)
|
|
{
|
|
gridComponent.Grid = mapGrid;
|
|
gridComponent.GridIndex = mapGrid.Index;
|
|
mapGrid.GridEntityId = gridComponent.Owner;
|
|
|
|
_grids.Add(mapGrid.Index, mapGrid.GridEntityId);
|
|
Logger.InfoS("map", $"Binding grid {mapGrid.Index} to entity {gridComponent.Owner}");
|
|
OnGridCreated?.Invoke(mapGrid.ParentMapId, mapGrid.Index);
|
|
}
|
|
|
|
public MapGrid CreateUnboundGrid(MapId mapId)
|
|
{
|
|
var newGrid = CreateGridImpl(mapId, null, 16, false, default);
|
|
Logger.InfoS("map", $"Creating unbound grid {newGrid.Index}");
|
|
return (MapGrid) newGrid;
|
|
}
|
|
|
|
public IEnumerable<IMapGrid> GetAllGrids()
|
|
{
|
|
return EntityManager.EntityQuery<IMapGridComponent>(true).Select(c => c.Grid);
|
|
}
|
|
|
|
public IMapGrid CreateGrid(MapId currentMapId, GridId? gridId = null, ushort chunkSize = 16)
|
|
{
|
|
DebugTools.Assert(gridId != GridId.Invalid);
|
|
|
|
var mapGrid = CreateGridImpl(currentMapId, gridId, chunkSize, true, default);
|
|
_grids.Add(mapGrid.Index, mapGrid.GridEntityId);
|
|
Logger.InfoS("map", $"Creating new grid {mapGrid.Index}");
|
|
|
|
EntityManager.InitializeComponents(mapGrid.GridEntityId);
|
|
EntityManager.StartComponents(mapGrid.GridEntityId);
|
|
OnGridCreated?.Invoke(currentMapId, mapGrid.Index);
|
|
return mapGrid;
|
|
}
|
|
|
|
public IMapGrid GetGrid(EntityUid euid)
|
|
{
|
|
return GetGridComp(euid).Grid;
|
|
}
|
|
|
|
public IMapGrid GetGrid(GridId gridId)
|
|
{
|
|
DebugTools.Assert(gridId != GridId.Invalid);
|
|
|
|
var euid = GetGridEuid(gridId);
|
|
return GetGridComp(euid).Grid;
|
|
}
|
|
|
|
public bool IsGrid(EntityUid uid)
|
|
{
|
|
return EntityManager.HasComponent<IMapGridComponent>(uid);
|
|
}
|
|
|
|
public bool TryGetGrid(EntityUid euid, [MaybeNullWhen(false)] out IMapGrid grid)
|
|
{
|
|
if (EntityManager.TryGetComponent(euid, out IMapGridComponent comp))
|
|
{
|
|
grid = comp.Grid;
|
|
return true;
|
|
}
|
|
|
|
grid = default;
|
|
return false;
|
|
}
|
|
|
|
public bool TryGetGrid(GridId gridId, [MaybeNullWhen(false)] out IMapGrid grid)
|
|
{
|
|
// grid 0 compatibility
|
|
if (gridId == GridId.Invalid)
|
|
{
|
|
grid = default;
|
|
return false;
|
|
}
|
|
|
|
if (!TryGetGridEuid(gridId, out var euid))
|
|
{
|
|
grid = default;
|
|
return false;
|
|
}
|
|
|
|
return TryGetGrid(euid, out grid);
|
|
}
|
|
|
|
public bool GridExists(GridId gridId)
|
|
{
|
|
// grid 0 compatibility
|
|
return gridId != GridId.Invalid && TryGetGridEuid(gridId, out var euid) && GridExists(euid);
|
|
}
|
|
|
|
public bool GridExists(EntityUid euid)
|
|
{
|
|
return EntityManager.EntityExists(euid) && EntityManager.HasComponent<IMapGridComponent>(euid);
|
|
}
|
|
|
|
public IEnumerable<IMapGrid> GetAllMapGrids(MapId mapId)
|
|
{
|
|
return EntityManager.EntityQuery<IMapGridComponent>(true)
|
|
.Where(c => c.Grid.ParentMapId == mapId)
|
|
.Select(c => c.Grid);
|
|
}
|
|
|
|
public void FindGridsIntersectingEnumerator(MapId mapId, Box2 worldAabb, out FindGridsEnumerator enumerator, bool approx = false)
|
|
{
|
|
enumerator = new FindGridsEnumerator(EntityManager, GetAllGrids().Cast<MapGrid>().GetEnumerator(), mapId, worldAabb, approx);
|
|
}
|
|
|
|
public virtual void DeleteGrid(GridId gridId)
|
|
{
|
|
#if DEBUG
|
|
DebugTools.Assert(_dbgGuardRunning);
|
|
#endif
|
|
|
|
// Possible the grid was already deleted / is invalid
|
|
if (!TryGetGrid(gridId, out var iGrid))
|
|
{
|
|
DebugTools.Assert($"Calling {nameof(DeleteGrid)} with unknown id {gridId}.");
|
|
return; // Silently fail on release
|
|
}
|
|
|
|
var grid = (MapGrid)iGrid;
|
|
if (grid.Deleting)
|
|
{
|
|
DebugTools.Assert($"Calling {nameof(DeleteGrid)} multiple times for grid {gridId}.");
|
|
return; // Silently fail on release
|
|
}
|
|
|
|
var entityId = grid.GridEntityId;
|
|
if (!EntityManager.TryGetComponent(entityId, out MetaDataComponent metaComp))
|
|
{
|
|
DebugTools.Assert($"Calling {nameof(DeleteGrid)} with {gridId}, but there was no allocated entity.");
|
|
return; // Silently fail on release
|
|
}
|
|
|
|
// DeleteGrid may be triggered by the entity being deleted,
|
|
// so make sure that's not the case.
|
|
if (metaComp.EntityLifeStage < EntityLifeStage.Terminating)
|
|
EntityManager.DeleteEntity(entityId);
|
|
}
|
|
|
|
public void TrueGridDelete(MapGrid grid)
|
|
{
|
|
grid.Deleting = true;
|
|
|
|
var mapId = grid.ParentMapId;
|
|
var gridId = grid.Index;
|
|
|
|
_grids.Remove(grid.Index);
|
|
|
|
Logger.DebugS("map", $"Deleted grid {gridId}");
|
|
|
|
// TODO: Remove this trash
|
|
OnGridRemoved?.Invoke(mapId, gridId);
|
|
}
|
|
|
|
public GridId NextGridId()
|
|
{
|
|
return _highestGridId = new GridId(_highestGridId.Value + 1);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public event EventHandler<TileChangedEventArgs>? TileChanged;
|
|
|
|
public event GridEventHandler? OnGridCreated;
|
|
public event GridEventHandler? OnGridRemoved;
|
|
|
|
/// <summary>
|
|
/// Should the OnTileChanged event be suppressed? This is useful for initially loading the map
|
|
/// so that you don't spam an event for each of the million station tiles.
|
|
/// </summary>
|
|
/// <inheritdoc />
|
|
public event EventHandler<GridChangedEventArgs>? GridChanged;
|
|
|
|
/// <inheritdoc />
|
|
public bool SuppressOnTileChanged { get; set; }
|
|
|
|
public void OnComponentRemoved(MapGridComponent comp)
|
|
{
|
|
var gridIndex = comp.GridIndex;
|
|
if (gridIndex == GridId.Invalid)
|
|
return;
|
|
|
|
if (!GridExists(gridIndex))
|
|
return;
|
|
|
|
Logger.DebugS("map", $"Entity {comp.Owner} removed grid component, removing bound grid {gridIndex}");
|
|
DeleteGrid(gridIndex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raises the OnTileChanged event.
|
|
/// </summary>
|
|
/// <param name="tileRef">A reference to the new tile.</param>
|
|
/// <param name="oldTile">The old tile that got replaced.</param>
|
|
public void RaiseOnTileChanged(TileRef tileRef, Tile oldTile)
|
|
{
|
|
#if DEBUG
|
|
DebugTools.Assert(_dbgGuardRunning);
|
|
#endif
|
|
|
|
if (SuppressOnTileChanged)
|
|
return;
|
|
|
|
TileChanged?.Invoke(this, new TileChangedEventArgs(tileRef, oldTile));
|
|
}
|
|
|
|
protected IMapGrid CreateGrid(MapId currentMapId, GridId gridId, ushort chunkSize, EntityUid euid)
|
|
{
|
|
var mapGrid = CreateGridImpl(currentMapId, gridId, chunkSize, true, euid);
|
|
_grids.Add(mapGrid.Index, mapGrid.GridEntityId);
|
|
Logger.InfoS("map", $"Creating new grid {mapGrid.Index}");
|
|
|
|
EntityManager.InitializeComponents(mapGrid.GridEntityId);
|
|
EntityManager.StartComponents(mapGrid.GridEntityId);
|
|
OnGridCreated?.Invoke(currentMapId, mapGrid.Index);
|
|
return mapGrid;
|
|
}
|
|
|
|
protected void InvokeGridChanged(object? sender, GridChangedEventArgs ev)
|
|
{
|
|
GridChanged?.Invoke(sender, ev);
|
|
}
|
|
|
|
private IMapGridInternal CreateGridImpl(MapId currentMapId, GridId? gridId, ushort chunkSize, bool createEntity,
|
|
EntityUid euid)
|
|
{
|
|
#if DEBUG
|
|
DebugTools.Assert(_dbgGuardRunning);
|
|
#endif
|
|
|
|
var actualId = gridId ?? new GridId(_highestGridId.Value + 1);
|
|
|
|
DebugTools.Assert(actualId != GridId.Invalid);
|
|
|
|
if (GridExists(actualId))
|
|
throw new InvalidOperationException($"A grid with ID {actualId} already exists");
|
|
|
|
if (_highestGridId.Value < actualId.Value)
|
|
_highestGridId = actualId;
|
|
|
|
var grid = new MapGrid(this, EntityManager, actualId, chunkSize, currentMapId);
|
|
|
|
if (actualId != GridId.Invalid && createEntity) // nullspace default grid is not bound to an entity
|
|
{
|
|
// the entity may already exist from map deserialization
|
|
IMapGridComponent? result = null;
|
|
foreach (var comp in EntityManager.EntityQuery<MapGridComponent>(true))
|
|
{
|
|
if (comp.GridIndex != actualId)
|
|
continue;
|
|
|
|
result = comp;
|
|
break;
|
|
}
|
|
|
|
if (result != null)
|
|
{
|
|
grid.GridEntityId = result.Owner;
|
|
((MapGridComponent)result).Grid = grid;
|
|
Logger.DebugS("map", $"Rebinding grid {actualId} to entity {grid.GridEntityId}");
|
|
}
|
|
else
|
|
{
|
|
var gridEnt = EntityManager.CreateEntityUninitialized(null, euid);
|
|
|
|
grid.GridEntityId = gridEnt;
|
|
|
|
Logger.DebugS("map", $"Binding grid {actualId} to entity {grid.GridEntityId}");
|
|
|
|
var gridComp = EntityManager.AddComponent<MapGridComponent>(gridEnt);
|
|
gridComp.GridIndex = grid.Index;
|
|
gridComp.Grid = grid;
|
|
|
|
//TODO: This is a hack to get TransformComponent.MapId working before entity states
|
|
//are applied. After they are applied the parent may be different, but the MapId will
|
|
//be the same. This causes TransformComponent.ParentUid of a grid to be unsafe to
|
|
//use in transform states anytime before the state parent is properly set.
|
|
EntityManager.GetComponent<TransformComponent>(gridEnt).AttachParent(GetMapEntityIdOrThrow(currentMapId));
|
|
}
|
|
}
|
|
else
|
|
Logger.DebugS("map", $"Skipping entity binding for gridId {actualId}");
|
|
|
|
return grid;
|
|
}
|
|
}
|