Example #1
0
        public void createStartUpAnimation()
        {
            Mail paul = new Mail();

            paul.info();
            SlowPrint Slow = new SlowPrint();

            Console.Clear();

            GetLocation test = new GetLocation();

            test.GetLocationProperty();


            wait(3000);

            try
            {
                Slow.Print("FANCY MODE ACTIVATED...");
            }
            catch (Exception)
            {
            }

            wait(3000);

            Console.Clear();

            wait(3000);

            try
            {
                Slow.Print("INITIATING BOOT SEQUENCE...");
            }
            catch (Exception)
            {
            }

            wait(3000);

            Console.Clear();

            wait(3000);

            foreach (String s in startUpText)
            {
                Console.Write(s);
                Console.Write("\n");
                wait(50);
            }



            wait(3000);

            Console.Clear();

            wait(3000);

            try
            {
                Slow.Print("LOADING COMPONENTS...");
            }
            catch (Exception)
            {
            }

            wait(3000);

            foreach (String s in loadingComponents)
            {
                Console.Write(s);
                Console.Write("\n");
                wait(50);
            }



            wait(3000);
            Console.Clear();

            Process[] processlist = Process.GetProcesses();
            Console.WriteLine("LOADING THE PROCESSES CURRENTLY RUNNING");
            wait(3000);
            foreach (Process theprocess in processlist)
            {
                Console.WriteLine("Process: {0} ID: {1}", theprocess.ProcessName, theprocess.Id);
                wait(50);
            }



            wait(3000);

            try
            {
                Slow.Print("BOOT SEQUENCE COMPLETE...");
                Console.Write("\n");
                Console.Write("STARTING THE BATTLESHIP...");
            }
            catch (Exception)
            {
            }

            wait(3000);



            Console.Clear();

            wait(3000);
        }    //    Console.Clear();