#region Arthea License
/***********************************************************************
* Arthea MUD by R. Jennings (2007) http://arthea.googlecode.com/ *
* By using this code you comply with the Artistic and GPLv2 Licenses. *
***********************************************************************/
#endregion
using Arthea.Connections.Players;
namespace Arthea.Commands.PlayerCommands
{
/// <summary>
/// implements a prompt command.
/// </summary>
public class PromptCommand : Command
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="PromptCommand"/> class.
/// </summary>
public PromptCommand() : base("prompt", "sets your prompt (see help prompt)")
{
}
#endregion [rgn]
#region [rgn] Methods (1)
// [rgn] Public Methods (1)
/// <summary>
/// Processes the command for a player.
/// </summary>
/// <param name="player">The player.</param>
/// <param name="argument">The argument.</param>
public override void Process(Player player, String argument)
{
if (!argument || argument == "clear")
{
player.Prompt = "";
player.WriteLine("Prompt cleared.");
}
else
{
player.Prompt = argument;
player.WriteLine("Prompt set.");
}
}
#endregion [rgn]
}
}