76 lines
3.1 KiB
C#
76 lines
3.1 KiB
C#
using Content.Server.Coordinates.Helpers;
|
|
using Content.Server.DoAfter;
|
|
using Content.Server.Engineering.Components;
|
|
using Content.Server.Stack;
|
|
using Content.Shared.Interaction;
|
|
using Content.Shared.Interaction.Helpers;
|
|
using Content.Shared.Stacks;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Map;
|
|
|
|
namespace Content.Server.Engineering.EntitySystems
|
|
{
|
|
[UsedImplicitly]
|
|
public class SpawnAfterInteractSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly IMapManager _mapManager = default!;
|
|
[Dependency] private readonly DoAfterSystem _doAfterSystem = default!;
|
|
[Dependency] private readonly StackSystem _stackSystem = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<SpawnAfterInteractComponent, AfterInteractEvent>(HandleAfterInteract);
|
|
}
|
|
|
|
private async void HandleAfterInteract(EntityUid uid, SpawnAfterInteractComponent component, AfterInteractEvent args)
|
|
{
|
|
if (string.IsNullOrEmpty(component.Prototype))
|
|
return;
|
|
if (!_mapManager.TryGetGrid(args.ClickLocation.GetGridId(EntityManager), out var grid))
|
|
return;
|
|
if (!grid.TryGetTileRef(args.ClickLocation, out var tileRef))
|
|
return;
|
|
|
|
bool IsTileClear()
|
|
{
|
|
return tileRef.Tile.IsEmpty == false && args.User.InRangeUnobstructed(args.ClickLocation, popup: true);
|
|
}
|
|
|
|
if (!IsTileClear())
|
|
return;
|
|
|
|
if (component.DoAfterTime > 0)
|
|
{
|
|
var doAfterArgs = new DoAfterEventArgs(args.User, component.DoAfterTime)
|
|
{
|
|
BreakOnUserMove = true,
|
|
BreakOnStun = true,
|
|
PostCheck = IsTileClear,
|
|
};
|
|
var result = await _doAfterSystem.WaitDoAfter(doAfterArgs);
|
|
|
|
if (result != DoAfterStatus.Finished)
|
|
return;
|
|
}
|
|
|
|
if (component.Deleted || (!IoCManager.Resolve<IEntityManager>().EntityExists(component.Owner) ? EntityLifeStage.Deleted : IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(component.Owner).EntityLifeStage) >= EntityLifeStage.Deleted)
|
|
return;
|
|
|
|
if (IoCManager.Resolve<IEntityManager>().TryGetComponent<SharedStackComponent?>(component.Owner, out var stackComp)
|
|
&& component.RemoveOnInteract && !_stackSystem.Use(uid, 1, stackComp))
|
|
{
|
|
return;
|
|
}
|
|
|
|
EntityManager.SpawnEntity(component.Prototype, args.ClickLocation.SnapToGrid(grid));
|
|
|
|
if (component.RemoveOnInteract && stackComp == null && !((!IoCManager.Resolve<IEntityManager>().EntityExists(component.Owner) ? EntityLifeStage.Deleted : IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(component.Owner).EntityLifeStage) >= EntityLifeStage.Deleted))
|
|
IoCManager.Resolve<IEntityManager>().DeleteEntity(component.Owner);
|
|
}
|
|
}
|
|
}
|