using System.Linq; using Content.Shared.Station.Components; using JetBrains.Annotations; using Robust.Shared.Map; using Robust.Shared.Map.Components; namespace Content.Shared.Station; public abstract partial class SharedStationSystem : EntitySystem { [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly MetaDataSystem _meta = default!; private EntityQuery _xformQuery; private EntityQuery _stationMemberQuery; /// public override void Initialize() { base.Initialize(); InitializeTracker(); _xformQuery = GetEntityQuery(); _stationMemberQuery = GetEntityQuery(); } /// /// Gets the largest member grid from a station. /// public EntityUid? GetLargestGrid(Entity ent) { if (!Resolve(ent, ref ent.Comp)) return null; EntityUid? largestGrid = null; Box2 largestBounds = new Box2(); foreach (var gridUid in ent.Comp.Grids) { if (!TryComp(gridUid, out var grid) || grid.LocalAABB.Size.LengthSquared() < largestBounds.Size.LengthSquared()) continue; largestBounds = grid.LocalAABB; largestGrid = gridUid; } return largestGrid; } /// /// Returns the total number of tiles contained in the station's grids. /// public int GetTileCount(Entity ent) { if (!Resolve(ent, ref ent.Comp)) return 0; var count = 0; foreach (var gridUid in ent.Comp.Grids) { if (!TryComp(gridUid, out var grid)) continue; count += _map.GetAllTiles(gridUid, grid).Count(); } return count; } [PublicAPI] public EntityUid? GetOwningStation(EntityUid? entity, TransformComponent? xform = null) { if (entity == null) return null; return GetOwningStation(entity.Value, xform); } /// /// Gets the station that "owns" the given entity (essentially, the station the grid it's on is attached to) /// /// Entity to find the owner of. /// Resolve pattern, transform of the entity. /// The owning station, if any. /// /// This does not remember what station an entity started on, it simply checks where it is currently located. /// public EntityUid? GetOwningStation(EntityUid entity, TransformComponent? xform = null) { if (!Resolve(entity, ref xform)) throw new ArgumentException("Tried to use an abstract entity!", nameof(entity)); if (TryComp(entity, out var stationTracker)) { // We have a specific station we are tracking and are tethered to. return stationTracker.Station; } if (HasComp(entity)) { // We are the station, just return ourselves. return entity; } if (HasComp(entity)) { // We are the station, just check ourselves. return CompOrNull(entity)?.Station; } if (xform.GridUid == EntityUid.Invalid) { Log.Debug("Unable to get owning station - GridUid invalid."); return null; } return CompOrNull(xform.GridUid)?.Station; } public List GetStations() { var stations = new List(); var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _)) { stations.Add(uid); } return stations; } public HashSet GetStationsSet() { var stations = new HashSet(); var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _)) { stations.Add(uid); } return stations; } public List<(string Name, NetEntity Entity)> GetStationNames() { var stations = GetStationsSet(); var stats = new List<(string Name, NetEntity Station)>(); foreach (var weh in stations) { stats.Add((MetaData(weh).EntityName, GetNetEntity(weh))); } return stats; } /// /// Returns the first station that has a grid in a certain map. /// If the map has no stations, null is returned instead. /// /// /// If there are multiple stations on a map it is probably arbitrary which one is returned. /// public EntityUid? GetStationInMap(MapId map) { var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var data)) { foreach (var gridUid in data.Grids) { if (Transform(gridUid).MapID == map) { return uid; } } } return null; } }