Add InRangeUnoccluded verb (#2421)

This commit is contained in:
DrSmugleaf 2020-10-28 15:03:21 +01:00 committed by GitHub
parent 9b751fc079
commit 74fe2609f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,57 @@
using Content.Shared.GameObjects.Verbs;
using Content.Shared.Interfaces;
using Content.Shared.Utility;
using Robust.Server.Console;
using Robust.Server.Interfaces.GameObjects;
using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.IoC;
using Robust.Shared.Localization;
namespace Content.Server.GlobalVerbs
{
[GlobalVerb]
public class InRangeUnoccludedVerb : GlobalVerb
{
public override bool RequireInteractionRange => false;
public override void GetData(IEntity user, IEntity target, VerbData data)
{
data.Visibility = VerbVisibility.Invisible;
if (!user.TryGetComponent(out IActorComponent actor))
{
return;
}
var groupController = IoCManager.Resolve<IConGroupController>();
if (!groupController.CanCommand(actor.playerSession, "inrangeunoccluded"))
{
return;
}
data.Visibility = VerbVisibility.Visible;
data.Text = Loc.GetString("In Range Unoccluded");
data.CategoryData = VerbCategories.Debug;
}
public override void Activate(IEntity user, IEntity target)
{
if (!user.TryGetComponent(out IActorComponent actor))
{
return;
}
var groupController = IoCManager.Resolve<IConGroupController>();
if (!groupController.CanCommand(actor.playerSession, "inrangeunoccluded"))
{
return;
}
var message = user.InRangeUnOccluded(target)
? Loc.GetString("Not occluded")
: Loc.GetString("Occluded");
target.PopupMessage(user, message);
}
}
}

View File

@ -117,6 +117,7 @@
- attachtoself
- attachtogrid
- attachtograndparent
- inrangeunoccluded
CanViewVar: true
CanAdminPlace: true
CanAdminMenu: true
@ -227,6 +228,7 @@
- attachtoself
- attachtogrid
- attachtograndparent
- inrangeunoccluded
CanViewVar: true
CanAdminPlace: true
CanScript: true