SetAnchor debug command and verb (#2972)
This commit is contained in:
committed by
GitHub
parent
ad5192695f
commit
8def38aed4
56
Content.Server/GlobalVerbs/SetAnchorVerb.cs
Normal file
56
Content.Server/GlobalVerbs/SetAnchorVerb.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
#nullable enable
|
||||
using Content.Server.GameObjects.Components.Nutrition;
|
||||
using Content.Shared.GameObjects.Components.Damage;
|
||||
using Content.Shared.GameObjects.Verbs;
|
||||
using Robust.Server.Console;
|
||||
using Robust.Server.Interfaces.GameObjects;
|
||||
using Robust.Shared.GameObjects.Components;
|
||||
using Robust.Shared.Interfaces.GameObjects;
|
||||
using Robust.Shared.IoC;
|
||||
|
||||
namespace Content.Server.GlobalVerbs
|
||||
{
|
||||
[GlobalVerb]
|
||||
public class SetAnchorVerb : GlobalVerb
|
||||
{
|
||||
public override bool RequireInteractionRange => false;
|
||||
public override bool BlockedByContainers => false;
|
||||
|
||||
public override void GetData(IEntity user, IEntity target, VerbData data)
|
||||
{
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
|
||||
var groupController = IoCManager.Resolve<IConGroupController>();
|
||||
|
||||
if (user.TryGetComponent<IActorComponent>(out var player))
|
||||
{
|
||||
if (!target.TryGetComponent(out PhysicsComponent? physics))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (groupController.CanCommand(player.playerSession, "setanchor"))
|
||||
{
|
||||
data.Text = physics.Anchored ? "Unanchor" : "Anchor";
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override void Activate(IEntity user, IEntity target)
|
||||
{
|
||||
if (user.TryGetComponent<IActorComponent>(out var player))
|
||||
{
|
||||
var groupController = IoCManager.Resolve<IConGroupController>();
|
||||
if (!groupController.CanCommand(player.playerSession, "setanchor"))
|
||||
return;
|
||||
|
||||
if (target.TryGetComponent(out PhysicsComponent? physics))
|
||||
{
|
||||
physics.Anchored = !physics.Anchored;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user