--- /dev/null
+using System.Linq;
+using Content.Server.Administration;
+using Content.Shared.Actions;
+using Content.Shared.Actions.Components;
+using Content.Shared.Administration;
+using Content.Shared.Prototypes;
+using Robust.Shared.Console;
+using Robust.Shared.Prototypes;
+
+namespace Content.Server.Actions.Commands;
+
+[AdminCommand(AdminFlags.Debug)]
+public sealed class AddActionCommand : LocalizedEntityCommands
+{
+ [Dependency] private readonly IPrototypeManager _prototypes = default!;
+ [Dependency] private readonly SharedActionsSystem _actions = default!;
+ [Dependency] private readonly IPrototypeManager _prototypeManager = default!;
+
+ public override string Command => "addaction";
+
+ public override void Execute(IConsoleShell shell, string argStr, string[] args)
+ {
+ if (args.Length != 2)
+ {
+ shell.WriteError(Loc.GetString(Loc.GetString("cmd-addaction-invalid-args")));
+ return;
+ }
+
+ if (!NetEntity.TryParse(args[0], out var targetUidNet) || !EntityManager.TryGetEntity(targetUidNet, out var targetEntity))
+ {
+ shell.WriteLine(Loc.GetString("shell-entity-uid-must-be-number"));
+ return;
+ }
+
+ if (!EntityManager.HasComponent<ActionsComponent>(targetEntity))
+ {
+ shell.WriteError(Loc.GetString("cmd-addaction-actions-not-found"));
+ return;
+ }
+
+ if (!_prototypes.TryIndex<EntityPrototype>(args[1], out var proto) ||
+ !proto.HasComponent<ActionComponent>())
+ {
+ shell.WriteError(Loc.GetString("cmd-addaction-action-not-found", ("action", args[1])));
+ return;
+ }
+
+ if (_actions.AddAction(targetEntity.Value, args[1]) == null)
+ {
+ shell.WriteError(Loc.GetString("cmd-addaction-adding-failed"));
+ }
+ }
+
+ public override CompletionResult GetCompletion(IConsoleShell shell, string[] args)
+ {
+ if (args.Length == 1)
+ {
+ return CompletionResult.FromHintOptions(
+ CompletionHelper.Components<ActionsComponent>(args[0]),
+ Loc.GetString("cmd-addaction-player-completion"));
+ }
+
+ if (args.Length != 2)
+ return CompletionResult.Empty;
+
+ var actionPrototypes = _prototypeManager.EnumeratePrototypes<EntityPrototype>()
+ .Where(p => p.HasComponent<ActionComponent>())
+ .Select(p => p.ID)
+ .Order();
+
+ return CompletionResult.FromHintOptions(
+ actionPrototypes,
+ Loc.GetString("cmd-addaction-action-completion"));
+ }
+}
--- /dev/null
+using Content.Server.Administration;
+using Content.Shared.Actions;
+using Content.Shared.Actions.Components;
+using Content.Shared.Administration;
+using Robust.Shared.Console;
+
+namespace Content.Server.Actions.Commands;
+
+[AdminCommand(AdminFlags.Debug)]
+public sealed class RemoveActionCommand : LocalizedEntityCommands
+{
+ [Dependency] private readonly SharedActionsSystem _actions = default!;
+
+ public override string Command => "rmaction";
+
+ public override void Execute(IConsoleShell shell, string argStr, string[] args)
+ {
+ if (args.Length != 2)
+ {
+ shell.WriteError(Loc.GetString(Loc.GetString("cmd-rmaction-invalid-args")));
+ return;
+ }
+
+ if (!NetEntity.TryParse(args[0], out var targetUidNet) || !EntityManager.TryGetEntity(targetUidNet, out var targetEntity))
+ {
+ shell.WriteLine(Loc.GetString("shell-could-not-find-entity-with-uid", ("uid", args[0])));
+ return;
+ }
+
+ if (!NetEntity.TryParse(args[1], out var targetActionUidNet) || !EntityManager.TryGetEntity(targetActionUidNet, out var targetActionEntity))
+ {
+ shell.WriteLine(Loc.GetString("shell-could-not-find-entity-with-uid", ("uid", args[1])));
+ return;
+ }
+
+ if (!EntityManager.HasComponent<ActionsComponent>(targetEntity))
+ {
+ shell.WriteError(Loc.GetString("cmd-rmaction-actions-not-found"));
+ return;
+ }
+
+ if (_actions.GetAction(targetActionEntity) is not { } ent)
+ {
+ shell.WriteError(Loc.GetString("cmd-rmaction-not-an-action"));
+ return;
+ }
+
+ _actions.SetTemporary(ent.Owner, true);
+
+ _actions.RemoveAction(ent.Owner);
+ }
+
+ public override CompletionResult GetCompletion(IConsoleShell shell, string[] args)
+ {
+ if (args.Length == 1)
+ {
+ return CompletionResult.FromHintOptions(
+ CompletionHelper.Components<ActionsComponent>(args[0]),
+ Loc.GetString("cmd-rmaction-player-completion"));
+ }
+
+ if (args.Length == 2)
+ {
+ if (!NetEntity.TryParse(args[0], out var targetUidNet) || !EntityManager.TryGetEntity(targetUidNet, out var targetEntity))
+ return CompletionResult.Empty;
+
+ if (!EntityManager.HasComponent<ActionsComponent>(targetEntity))
+ return CompletionResult.Empty;
+
+ var actions = _actions.GetActions(targetEntity.Value);
+
+ var options = new List<CompletionOption>();
+ foreach (var action in actions)
+ {
+ var hint = Loc.GetString("cmd-rmaction-action-info", ("action", action));
+ options.Add(new CompletionOption(action.Owner.ToString(), hint));
+ }
+
+ return CompletionResult.FromHintOptions(options, Loc.GetString("cmd-rmaction-action-completion"));
+ }
+
+ return CompletionResult.Empty;
+ }
+}
// TODO: Check for charge recovery timer
return action.Cooldown.HasValue && action.Cooldown.Value.End > curTime;
}
+
+ /// <summary>
+ /// Marks the action as temporary.
+ /// Temporary actions get deleted upon being removed from an entity.
+ /// </summary>
+ public void SetTemporary(Entity<ActionComponent?> ent, bool temporary)
+ {
+ if (!Resolve(ent.Owner, ref ent.Comp, false))
+ return;
+
+ ent.Comp.Temporary = temporary;
+ Dirty(ent);
+ }
}
--- /dev/null
+# addaction
+cmd-addaction-desc = Adds an action to the target entity. The action will not work if the target requires an additional component on their entity (such as Dragon's Devour).
+cmd-addaction-help = addaction <EntityUid> <ActionPrototype>
+
+cmd-addaction-invalid-args = Expected exactly 2 arguments.
+cmd-addaction-actions-not-found = Target entity cannot use actions.
+cmd-addaction-action-not-found = Can't find matching action prototype {$action}.
+cmd-addaction-adding-failed = Failed to add the action.
+
+cmd-addaction-player-completion = <EntityUid>
+cmd-addaction-action-completion = <ActionProto>
--- /dev/null
+# rmaction
+cmd-rmaction-desc = Removes an action from an entity.
+cmd-rmaction-help = rmaction <EntityUid> <ActionUid>
+
+cmd-rmaction-invalid-args = Expected exactly 2 arguments.
+cmd-rmaction-actions-not-found = Target entity cannot use actions.
+cmd-rmaction-not-an-action = Target entity is not an action.
+
+cmd-rmaction-player-completion = <EntityUid>
+cmd-rmaction-action-completion = <ActionUid>
+
+cmd-rmaction-action-info = {$action}