* Remove unused IChatCommand. * Lots of refactoring into a shared context. * Removed ICommonSession from server concmd Execute. * Added argStr parameter to concmd execute. * The execute function of client concmds now returns void, use the new shell.RemoteExecuteCommand function to forward commands. * Finally move shells and commands into shared. * Console commands can now be registered directly without a class in a shared context. * Engine API Changes. * Repair rebase damage. * Update Submodule.
59 lines
1.8 KiB
C#
59 lines
1.8 KiB
C#
#nullable enable
|
|
using System.Linq;
|
|
using Content.Server.Administration;
|
|
using Content.Server.GameObjects.Components;
|
|
using Content.Shared.Administration;
|
|
using Robust.Server.Interfaces.GameObjects;
|
|
using Robust.Server.Interfaces.Player;
|
|
using Robust.Shared.Console;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Server.Commands.Interactable
|
|
{
|
|
[AdminCommand(AdminFlags.Debug)]
|
|
class AnchorCommand : IConsoleCommand
|
|
{
|
|
public string Command => "anchor";
|
|
public string Description => "Anchors all entities in a radius around the user";
|
|
public string Help => $"Usage: {Command} <radius>";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
var player = shell.Player as IPlayerSession;
|
|
if (player?.AttachedEntity == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (args.Length != 1)
|
|
{
|
|
shell.WriteLine(Help);
|
|
return;
|
|
}
|
|
|
|
if (!int.TryParse(args[0], out var radius))
|
|
{
|
|
shell.WriteLine($"{args[0]} isn't a valid integer.");
|
|
return;
|
|
}
|
|
|
|
if (radius < 0)
|
|
{
|
|
shell.WriteLine("Radius must be positive.");
|
|
return;
|
|
}
|
|
|
|
var serverEntityManager = IoCManager.Resolve<IServerEntityManager>();
|
|
var entities = serverEntityManager.GetEntitiesInRange(player.AttachedEntity, radius).ToList();
|
|
|
|
foreach (var entity in entities)
|
|
{
|
|
if (entity.TryGetComponent(out AnchorableComponent? anchorable))
|
|
{
|
|
_ = anchorable.TryAnchor(player.AttachedEntity, force: true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|