2021-03-14 13:23:32 +00:00
|
|
|
#nullable enable
|
2021-02-17 01:54:21 +01:00
|
|
|
using Content.Shared.GameObjects.Verbs;
|
|
|
|
|
using Robust.Server.Console;
|
|
|
|
|
using Robust.Server.GameObjects;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.IoC;
|
|
|
|
|
using Robust.Shared.Localization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.GlobalVerbs
|
|
|
|
|
{
|
|
|
|
|
[GlobalVerb]
|
|
|
|
|
public class DeleteVerb : GlobalVerb
|
|
|
|
|
{
|
|
|
|
|
public override bool RequireInteractionRange => false;
|
|
|
|
|
public override bool BlockedByContainers => false;
|
|
|
|
|
|
|
|
|
|
public override void GetData(IEntity user, IEntity target, VerbData data)
|
|
|
|
|
{
|
|
|
|
|
data.Visibility = VerbVisibility.Invisible;
|
|
|
|
|
|
|
|
|
|
var groupController = IoCManager.Resolve<IConGroupController>();
|
|
|
|
|
|
2021-05-12 13:42:18 +02:00
|
|
|
if (!user.TryGetComponent(out ActorComponent? actor))
|
2021-02-17 01:54:21 +01:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-12 13:42:18 +02:00
|
|
|
if (!groupController.CanCommand(actor.PlayerSession, "deleteentity"))
|
2021-02-17 01:54:21 +01:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data.Text = Loc.GetString("Delete");
|
|
|
|
|
data.CategoryData = VerbCategories.Debug;
|
|
|
|
|
data.Visibility = VerbVisibility.Visible;
|
2021-03-14 14:40:01 +01:00
|
|
|
data.IconTexture = "/Textures/Interface/VerbIcons/delete.svg.192dpi.png";
|
2021-02-17 01:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Activate(IEntity user, IEntity target)
|
|
|
|
|
{
|
|
|
|
|
var groupController = IoCManager.Resolve<IConGroupController>();
|
|
|
|
|
|
2021-05-12 13:42:18 +02:00
|
|
|
if (!user.TryGetComponent(out ActorComponent? actor))
|
2021-02-17 01:54:21 +01:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-12 13:42:18 +02:00
|
|
|
if (!groupController.CanCommand(actor.PlayerSession, "deleteentity"))
|
2021-02-17 01:54:21 +01:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
target.Delete();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|