* Content.Client * Content.Benchmarks * Content.IntegrationTests * Content.Server * Content.Server.Database * Content.Shared * Content.Tests * Merge fixes Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
127 lines
3.5 KiB
C#
127 lines
3.5 KiB
C#
using System.Collections.Generic;
|
|
using Content.Server.GameObjects.Components.Mobs;
|
|
using Content.Shared.Alert;
|
|
using Content.Shared.GameObjects.Components.Mobs;
|
|
using Content.Shared.GameObjects.EntitySystemMessages.Gravity;
|
|
using Content.Shared.GameTicking;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects.Components.Map;
|
|
using Robust.Shared.GameObjects.EntitySystemMessages;
|
|
using Robust.Shared.GameObjects.Systems;
|
|
using Robust.Shared.Interfaces.Map;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server.GameObjects.EntitySystems
|
|
{
|
|
[UsedImplicitly]
|
|
public class WeightlessSystem : EntitySystem, IResettingEntitySystem
|
|
{
|
|
[Dependency] private readonly IMapManager _mapManager = default!;
|
|
|
|
private readonly Dictionary<GridId, List<ServerAlertsComponent>> _alerts = new();
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<GravityChangedMessage>(GravityChanged);
|
|
SubscribeLocalEvent<EntParentChangedMessage>(EntParentChanged);
|
|
}
|
|
|
|
public void Reset()
|
|
{
|
|
_alerts.Clear();
|
|
}
|
|
|
|
public void AddAlert(ServerAlertsComponent status)
|
|
{
|
|
var gridId = status.Owner.Transform.GridID;
|
|
var alerts = _alerts.GetOrNew(gridId);
|
|
|
|
alerts.Add(status);
|
|
|
|
if (_mapManager.TryGetGrid(status.Owner.Transform.GridID, out var grid))
|
|
{
|
|
if (grid.HasGravity)
|
|
{
|
|
RemoveWeightless(status);
|
|
}
|
|
else
|
|
{
|
|
AddWeightless(status);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void RemoveAlert(ServerAlertsComponent status)
|
|
{
|
|
var grid = status.Owner.Transform.GridID;
|
|
if (!_alerts.TryGetValue(grid, out var statuses))
|
|
{
|
|
return;
|
|
}
|
|
|
|
statuses.Remove(status);
|
|
}
|
|
|
|
private void GravityChanged(GravityChangedMessage ev)
|
|
{
|
|
if (!_alerts.TryGetValue(ev.Grid.Index, out var statuses))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (ev.HasGravity)
|
|
{
|
|
foreach (var status in statuses)
|
|
{
|
|
RemoveWeightless(status);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (var status in statuses)
|
|
{
|
|
AddWeightless(status);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void AddWeightless(ServerAlertsComponent status)
|
|
{
|
|
status.ShowAlert(AlertType.Weightless);
|
|
}
|
|
|
|
private void RemoveWeightless(ServerAlertsComponent status)
|
|
{
|
|
status.ClearAlert(AlertType.Weightless);
|
|
}
|
|
|
|
private void EntParentChanged(EntParentChangedMessage ev)
|
|
{
|
|
if (!ev.Entity.TryGetComponent(out ServerAlertsComponent status))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (ev.OldParent != null &&
|
|
ev.OldParent.TryGetComponent(out IMapGridComponent mapGrid))
|
|
{
|
|
var oldGrid = mapGrid.GridIndex;
|
|
|
|
if (_alerts.TryGetValue(oldGrid, out var oldStatuses))
|
|
{
|
|
oldStatuses.Remove(status);
|
|
}
|
|
}
|
|
|
|
var newGrid = ev.Entity.Transform.GridID;
|
|
var newStatuses = _alerts.GetOrNew(newGrid);
|
|
|
|
newStatuses.Add(status);
|
|
}
|
|
}
|
|
}
|