| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- using System.Linq;
- using Content.Server.Administration;
- using Content.Shared.Administration;
- using Content.Shared.Verbs;
- using Robust.Shared.Console;
- namespace Content.Server.Verbs.Commands
- {
- [AdminCommand(AdminFlags.Admin)]
- public sealed class InvokeVerbCommand : IConsoleCommand
- {
- [Dependency] private readonly IEntityManager _entManager = default!;
- public string Command => "invokeverb";
- public string Description => Loc.GetString("invoke-verb-command-description");
- public string Help => Loc.GetString("invoke-verb-command-help");
- public void Execute(IConsoleShell shell, string argStr, string[] args)
- {
- if (args.Length != 3)
- {
- shell.WriteLine(Loc.GetString("invoke-verb-command-invalid-args"));
- return;
- }
- var verbSystem = _entManager.System<SharedVerbSystem>();
- // get the 'player' entity (defaulting to command user, otherwise uses a uid)
- EntityUid? playerEntity = null;
- if (!int.TryParse(args[0], out var intPlayerUid))
- {
- if (args[0] == "self" && shell.Player?.AttachedEntity != null)
- {
- playerEntity = shell.Player.AttachedEntity.Value;
- }
- else
- {
- shell.WriteError(Loc.GetString("invoke-verb-command-invalid-player-uid"));
- return;
- }
- }
- else
- {
- _entManager.TryGetEntity(new NetEntity(intPlayerUid), out playerEntity);
- }
- // gets the target entity
- if (!int.TryParse(args[1], out var intUid))
- {
- shell.WriteError(Loc.GetString("invoke-verb-command-invalid-target-uid"));
- return;
- }
- if (playerEntity == null)
- {
- shell.WriteError(Loc.GetString("invoke-verb-command-invalid-player-entity"));
- return;
- }
- var targetNet = new NetEntity(intUid);
- if (!_entManager.TryGetEntity(targetNet, out var target))
- {
- shell.WriteError(Loc.GetString("invoke-verb-command-invalid-target-entity"));
- return;
- }
- var verbName = args[2].ToLowerInvariant();
- var verbs = verbSystem.GetLocalVerbs(target.Value, playerEntity.Value, Verb.VerbTypes, true);
- // if the "verb name" is actually a verb-type, try run any verb of that type.
- var verbType = Verb.VerbTypes.FirstOrDefault(x => x.Name == verbName);
- if (verbType != null)
- {
- var verb = verbs.FirstOrDefault(v => v.GetType() == verbType);
- if (verb != null)
- {
- verbSystem.ExecuteVerb(verb, playerEntity.Value, target.Value, forced: true);
- shell.WriteLine(Loc.GetString("invoke-verb-command-success", ("verb", verbName), ("target", target), ("player", playerEntity)));
- return;
- }
- }
- foreach (var verb in verbs)
- {
- if (verb.Text.ToLowerInvariant() == verbName)
- {
- verbSystem.ExecuteVerb(verb, playerEntity.Value, target.Value, forced: true);
- shell.WriteLine(Loc.GetString("invoke-verb-command-success", ("verb", verb.Text), ("target", target), ("player", playerEntity)));
- return;
- }
- }
- // found nothing
- shell.WriteError(Loc.GetString("invoke-verb-command-verb-not-found", ("verb", verbName), ("target", target)));
- }
- }
- }
|