Example #1
0
        static void Main(string[] args)
        {
            var commands = new ICommand[]
            {
                new CreateTrainingCommand(),
                new DetectCommand(),
                new TrainCommand()
            };
            var state = new State();

            Console.WriteLine("Type 'H' for help.");
            do
            {
                PrintPrompt();
                var action = Console.ReadLine().ToUpper();

                var couldAnybodyExecute = commands.Any(c => c.Execute(action, state));

                if (action == "Q")
                {
                    break;
                }
                if (action == "H")
                {
                    foreach (var h in commands.Select(c => c.GetHelp()))
                    {
                        Console.WriteLine(h);
                    }
                    continue;
                }
                if (!couldAnybodyExecute)
                {
                    Console.WriteLine("Unknown command");
                }
            } while (true);
        }