72 lines
2.0 KiB
C#
72 lines
2.0 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright (c) The OpenRA Developers and Contributors
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version. For more
|
|
* information, see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using OpenRA.Graphics;
|
|
using OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Common.Commands
|
|
{
|
|
[TraitLocation(SystemActors.World)]
|
|
[Desc("Shows a list of available commands in the chatbox. Attach this to the world actor.")]
|
|
public class HelpCommandInfo : TraitInfo<HelpCommand> { }
|
|
|
|
public class HelpCommand : IChatCommand, IWorldLoaded
|
|
{
|
|
[FluentReference]
|
|
const string AvailableCommands = "notification-available-commands";
|
|
|
|
[FluentReference]
|
|
const string NoDescription = "description-no-description";
|
|
|
|
[FluentReference]
|
|
const string HelpDescription = "description-help-description";
|
|
|
|
readonly Dictionary<string, string> helpDescriptions;
|
|
|
|
World world;
|
|
ChatCommands console;
|
|
|
|
public HelpCommand()
|
|
{
|
|
helpDescriptions = new Dictionary<string, string>();
|
|
}
|
|
|
|
public void WorldLoaded(World w, WorldRenderer wr)
|
|
{
|
|
world = w;
|
|
console = world.WorldActor.Trait<ChatCommands>();
|
|
|
|
console.RegisterCommand("help", this);
|
|
RegisterHelp("help", HelpDescription);
|
|
}
|
|
|
|
public void InvokeCommand(string name, string arg)
|
|
{
|
|
TextNotificationsManager.Debug(FluentProvider.GetMessage(AvailableCommands));
|
|
|
|
foreach (var key in console.Commands.Keys.OrderBy(k => k))
|
|
{
|
|
if (!helpDescriptions.TryGetValue(key, out var description))
|
|
description = FluentProvider.GetMessage(NoDescription);
|
|
|
|
TextNotificationsManager.Debug($"{key}: {description}");
|
|
}
|
|
}
|
|
|
|
public void RegisterHelp(string name, string description)
|
|
{
|
|
helpDescriptions[name] = FluentProvider.GetMessage(description);
|
|
}
|
|
}
|
|
}
|