52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
using Content.Shared.Administration;
|
|
using Robust.Shared.Console;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Server.Administration.Commands
|
|
{
|
|
[AdminCommand(AdminFlags.VarEdit)]
|
|
public class DeleteComponent : IConsoleCommand
|
|
{
|
|
public string Command => "deletecomponent";
|
|
public string Description => "Deletes all instances of the specified component.";
|
|
public string Help => $"Usage: {Command} <name>";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
switch (args.Length)
|
|
{
|
|
case 0:
|
|
shell.WriteLine($"Not enough arguments.\n{Help}");
|
|
break;
|
|
default:
|
|
var name = string.Join(" ", args);
|
|
var componentFactory = IoCManager.Resolve<IComponentFactory>();
|
|
var entityManager = IoCManager.Resolve<IEntityManager>();
|
|
|
|
if (!componentFactory.TryGetRegistration(name, out var registration))
|
|
{
|
|
shell.WriteLine($"No component exists with name {name}.");
|
|
break;
|
|
}
|
|
|
|
var componentType = registration.Type;
|
|
var components = entityManager.GetAllComponents(componentType, true);
|
|
|
|
var i = 0;
|
|
|
|
foreach (var component in components)
|
|
{
|
|
var uid = component.Owner;
|
|
entityManager.RemoveComponent(uid, component);
|
|
i++;
|
|
}
|
|
|
|
shell.WriteLine($"Removed {i} components with name {name}.");
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|