61 lines
2.1 KiB
C#
61 lines
2.1 KiB
C#
using Content.Server.DoAfter;
|
|
using Content.Server.Engineering.Components;
|
|
using Content.Server.Hands.Components;
|
|
using Content.Server.Items;
|
|
using Content.Shared.Interaction;
|
|
using Content.Shared.Interaction.Helpers;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Server.Engineering.EntitySystems
|
|
{
|
|
[UsedImplicitly]
|
|
public class DisassembleOnActivateSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<DisassembleOnActivateComponent, ActivateInWorldEvent>(HandleActivateInWorld);
|
|
}
|
|
|
|
private async void HandleActivateInWorld(EntityUid uid, DisassembleOnActivateComponent component, ActivateInWorldEvent args)
|
|
{
|
|
if (string.IsNullOrEmpty(component.Prototype))
|
|
return;
|
|
if (!args.User.InRangeUnobstructed(args.Target))
|
|
return;
|
|
|
|
if (component.DoAfterTime > 0 && TryGet<DoAfterSystem>(out var doAfterSystem))
|
|
{
|
|
var doAfterArgs = new DoAfterEventArgs(args.User, component.DoAfterTime, component.TokenSource.Token)
|
|
{
|
|
BreakOnUserMove = true,
|
|
BreakOnStun = true,
|
|
};
|
|
var result = await doAfterSystem.WaitDoAfter(doAfterArgs);
|
|
|
|
if (result != DoAfterStatus.Finished)
|
|
return;
|
|
component.TokenSource.Cancel();
|
|
}
|
|
|
|
if (component.Deleted || Deleted(component.Owner))
|
|
return;
|
|
|
|
var entity = EntityManager.SpawnEntity(component.Prototype, EntityManager.GetComponent<TransformComponent>(component.Owner).Coordinates);
|
|
|
|
if (EntityManager.TryGetComponent<HandsComponent?>(args.User, out var hands)
|
|
&& EntityManager.TryGetComponent<ItemComponent?>(entity, out var item))
|
|
{
|
|
hands.PutInHandOrDrop(item);
|
|
}
|
|
|
|
EntityManager.DeleteEntity(component.Owner);
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|