private static ICommandReader InitializeCommandReader(
            int numRobots,
            ICommandParser commandParser)
        {
            var commandHandlers = new ICommandHandler[numRobots];

            for (var i = 0; i < numRobots; i++)
            {
                var initialRobotState = new NotPlacedRobotState();
                var toyRobot          = new ToyRobot.ToyRobot(initialRobotState);
                commandHandlers[i] = new CommandHandler(toyRobot, commandParser);
            }

            return(new CommandReader(commandHandlers));
        }
Exemple #2
0
        public ToyRobotAssembly(ITextInputter textInputter, ITextOutputter textOutputter, ITableDimensions tableDimensions)
        {
            var initialRobotState        = new NotPlacedRobotState();
            var toyRobot                 = new ToyRobot.ToyRobot(initialRobotState);
            var robotStateFactory        = new RobotStateFactory();
            var robotStateBuilderFactory = new RobotStateBuilderFactory();
            var leftOrientationTurner    =
                new LeftOrientationTurner(robotStateBuilderFactory);
            var rightOrientationTurner =
                new RightOrientationTurner(robotStateBuilderFactory);
            var moveStateTransformer =
                new MoveStateTransformer(robotStateBuilderFactory);
            var moveAttempter           = new MoveAttempter(moveStateTransformer, tableDimensions);
            var commandPerformerFactory = new CommandPerformerFactory(
                robotStateFactory,
                leftOrientationTurner,
                rightOrientationTurner,
                moveAttempter,
                tableDimensions,
                textOutputter);
            var orientationFactory  = new OrientationParser();
            var reportCommandParser = new ReportCommandParser(commandPerformerFactory);
            var moveCommandParser   = new MoveCommandParser(commandPerformerFactory);
            var leftCommandParser   = new LeftCommandParser(commandPerformerFactory);
            var rightCommandParser  = new RightCommandParser(commandPerformerFactory);
            var placeCommandParser  = new PlaceCommandParser(
                commandPerformerFactory, orientationFactory);
            var commandParsers = new ICommandParser[]
            {
                reportCommandParser,
                moveCommandParser,
                leftCommandParser,
                rightCommandParser,
                placeCommandParser
            };
            var masterCommandParser = new MasterCommandParser(commandParsers);
            var commandHandler      = new CommandHandler(toyRobot, masterCommandParser);
            var commandReader       = new CommandReader(commandHandler);

            this.ToyRobotDriver = new ToyRobotDriver(textInputter, commandReader);
        }