89 lines
2.2 KiB
C#
89 lines
2.2 KiB
C#
using Content.Client.Actions;
|
|
using Content.Client.Mapping;
|
|
using Content.Shared.Administration;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Client.Commands;
|
|
|
|
// Disabled until sandoxing issues are resolved. In the meantime, if you want to create an acttions preset, just disable
|
|
// sandboxing and uncomment this code (and the SaveActionAssignments() function).
|
|
/*
|
|
[AnyCommand]
|
|
public sealed class SaveActionsCommand : IConsoleCommand
|
|
{
|
|
public string Command => "saveacts";
|
|
|
|
public string Description => "Saves the current action toolbar assignments to a file";
|
|
|
|
public string Help => $"Usage: {Command} <user resource path>";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
if (args.Length != 1)
|
|
{
|
|
shell.WriteLine(Help);
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
EntitySystem.Get<ActionsSystem>().SaveActionAssignments(args[0]);
|
|
}
|
|
catch
|
|
{
|
|
shell.WriteLine("Failed to save action assignments");
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
|
|
[AnyCommand]
|
|
public sealed class LoadActionsCommand : IConsoleCommand
|
|
{
|
|
public string Command => "loadacts";
|
|
|
|
public string Description => "Loads action toolbar assignments from a user-file.";
|
|
|
|
public string Help => $"Usage: {Command} <user resource path>";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
if (args.Length != 1)
|
|
{
|
|
shell.WriteLine(Help);
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
EntitySystem.Get<ActionsSystem>().LoadActionAssignments(args[0], true);
|
|
}
|
|
catch
|
|
{
|
|
shell.WriteLine("Failed to load action assignments");
|
|
}
|
|
}
|
|
}
|
|
|
|
[AnyCommand]
|
|
public sealed class LoadMappingActionsCommand : IConsoleCommand
|
|
{
|
|
public string Command => "loadmapacts";
|
|
|
|
public string Description => "Loads the mapping preset action toolbar assignments.";
|
|
|
|
public string Help => $"Usage: {Command}";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
try
|
|
{
|
|
EntitySystem.Get<MappingSystem>().LoadMappingActions();
|
|
}
|
|
catch
|
|
{
|
|
shell.WriteLine("Failed to load action assignments");
|
|
}
|
|
}
|
|
}
|