static void Main(string[] args)
        {
            Application application = new Application();
            ICommand    openCommand = new OpenCommand(application);
            ICommand    pasteCommand;

            openCommand.Execute();
            pasteCommand = new PasteCommand(application.GetActiveDocument());
            pasteCommand.Execute();

            // will remember the sequence, could also reverse
            MacroCommand macroCommand = new MacroCommand();

            // open three documents and send them, later in macroCommand.Execute();
            for (int i = 0; i < 3; i++)
            {
                macroCommand.Add(new OpenCommand(application));
                macroCommand.Add(new SendCommand(application));
            }

            Console.WriteLine("\r\nCalling macroCommand.Execute()");
            macroCommand.Execute();

            Console.WriteLine("\r\n*****Done*****");

            Console.ReadKey();
        }
Ejemplo n.º 2
0
        private static void CommandsExamples()
        {
            // creating receivers
            var livingRoomLight      = new Light("Living Room");
            var kitchenLight         = new Light("Kitchen");
            var livingRoomCeilingFan = new CeilingFan("Living Room");
            var stereo = new Stereo("");

            // creating commands
            var livingRoomLightOnCommand  = new LightOnCommand(livingRoomLight);
            var livingRoomLightOffCommand = new LightOffCommand(livingRoomLight);
            var kitchenLightOnCommand     = new LightOnCommand(kitchenLight);
            var kitchenLightOffCommand    = new LightOffCommand(kitchenLight);
            var stereoOnCommand           = new StereoOnCommand(stereo);
            var stereoOffCommand          = new StereoOffCommand(stereo);

            // Macro Command
            var myCommand = new MacroCommand(new ICommand[]
            {
                kitchenLightOnCommand,
                stereoOnCommand,
                livingRoomLightOffCommand
            });

            // create remove control & assign commands
            var remoteControl = new RemoteControl();

            remoteControl.SetCommand(0, livingRoomLightOnCommand);
            remoteControl.SetCommand(1, livingRoomLightOffCommand);
            remoteControl.SetCommand(2, kitchenLightOnCommand);
            remoteControl.SetCommand(3, kitchenLightOffCommand);
            remoteControl.SetCommand(4, stereoOnCommand);
            remoteControl.SetCommand(5, stereoOffCommand);

            // run commands
            //for (int i = 0; i < 6; i++)
            //    remoteControl.Run(i);

            //remoteControl.Run(0);
            //remoteControl.Run(0);
            //remoteControl.Run(0);
            //remoteControl.Undo();
            //remoteControl.Undo();
            //remoteControl.Undo();
            //remoteControl.Undo();
            myCommand.Execute();
            Console.WriteLine("------------------");
            myCommand.Undo();

            //Console.WriteLine(remoteControl);
        }