Creatures.Language.Parsers.Parser.ProcessCommand C# (CSharp) Method

ProcessCommand() public method

public ProcessCommand ( string command ) : ICommand
command string
return ICommand
        public ICommand ProcessCommand(string command)
        {
            var constructor = new Constructor();

            var handlers = new List<Func<string, ICommand>>
            {
                constructor.NewInt,
                constructor.NewArray,
                constructor.CloneValue,
                constructor.SetValue,
                constructor.Plus,
                constructor.Minus,
                constructor.Print,
                constructor.Condition,
                constructor.CloseCondition,
                constructor.GetState,
                constructor.GetRandom,
                constructor.Stop
            };

            foreach (var handler in handlers)
            {
                try
                {
                    return handler(command);
                }
                catch
                {
                }
            }

            throw new ArgumentException("No proper handler found for : " + command);
        }