Example #1
0
        private void HumanVsComputer()
        {
            SlowPrint Slow = new SlowPrint();



            //****************************************************************************
            //		Player enter the names
            Console.WriteLine("Please enter the name for player 1: ");
            playerName1 = Console.ReadLine();
            Console.WriteLine("Please enter the name for player 2: ");
            playerName2 = Console.ReadLine();
            Console.WriteLine("\n");
            //****************************************************************************
            // check the age of the player
            //	Change the credentials here
            //ageControl(playerName2, "test", "test");
            //****************************************************************************



            ShipBoard boardPlayer1 = new ShipBoard();



            //****************************************************************************
            Console.Clear();
            //****************************************************************************

            //****************************************************************************
            // creates player 1 and a ShipBoard for him.
            RandomStrategy pcStrategy = new RandomStrategy();
            ComputerPlayer player1    = new ComputerPlayer(playerName1);



            //****************************************************************************
            // creates player 2 and a ShipBoard for him.
            HumanPlayer player2      = new HumanPlayer(playerName2);
            ShipBoard   boardPlayer2 = new ShipBoard();

            //****************************************************************************
            //		player 1 places his ships
            Console.WriteLine("Place your ships player: " + playerName1);
            boardPlayer1.enterAllShipsRandomly();
            //****************************************************************************
            //		return the ship and strike board
            ShipBoardPlayer1   = boardPlayer1.returnBoard();
            StrikeBoardPlayer1 = player1.returnStrikeBoard();


            //****************************************************************************
            //		print the shipboard
            Console.WriteLine("The ship board for player: " + playerName1 + " is :\n");
            printBoard(ShipBoardPlayer1);
            //****************************************************************************
            Console.Clear();
            //****************************************************************************



            //****************************************************************************
            //		player 2 places his ships
            Console.WriteLine("Place your ships player: " + playerName2);
            boardPlayer2.enterAllShipsManually();
            //****************************************************************************
            //****************************************************************************
            //		return the ship and strike board of player 2
            ShipBoardPlayer2   = boardPlayer2.returnBoard();
            StrikeBoardPlayer2 = player2.returnStrikeBoard();
            //****************************************************************************


            //		print the ship board
            Console.Write("The ship board for player: " + playerName2 + " is :\n");
            printBoard(ShipBoardPlayer2);
            //****************************************************************************
            //	Creating 2 threads to run simultaneously with the main(Parallel prossesing)


            // We want to start just 2 threads at the same time, but let's control that
            // timing from the main thread. That's why we have 3 "parties" instead of 2.
            //            System.Threading.Barrier gate = new System.Threading.Barrier(3);


            //		Creating threads.

            SavePlayer1Progress();

            SavePlayer2Progress();



            bool allSank = false;

            while (!allSank)
            {
                //****************************************************************************
                //			Player1

                Console.WriteLine("Hit point for: " + playerName1);

                int[] coordinates = pcStrategy.nextStrike();
                //			System.out.println( coordinates[0]+" , "+coordinates[1]);
                bool isHit = boardPlayer1.getStrike(coordinates[0], coordinates[1]);
                //			System.out.print("Main isHit= "+isHit);
                int[,] strikeBoardPlayer1 = player1.update(coordinates, isHit);
                Console.WriteLine("The strike board for player: " + playerName1 + " is :\n");
                printBoard(strikeBoardPlayer1);
                bool allSank1 = boardPlayer1.allShipsSank();


                //			Check if All of Player 1 Ships have been Sank.

                if (allSank1)
                {
                    Console.WriteLine(playerName2 + " is the winner!!!");
                    allSank = allSank1;
                    break;
                }

                //			Delay for 1 second

                wait(1);
                //****************************************************************************
                //****************************************************************************
                //			Player2

                Console.WriteLine("Hit point for: " + playerName2);
                coordinates = player2.nextStrike();
                //			System.out.println( coordinates[0]+" , "+coordinates[1]);
                isHit = boardPlayer2.getStrike(coordinates[0], coordinates[1]);
                //			System.out.print("Main isHit= "+isHit);
                int[,] strikeBoardPlayer2 = player2.update(coordinates, isHit);
                Console.WriteLine("The strike board for player: " + playerName2 + " is :\n");
                printBoard(strikeBoardPlayer2);
                bool allSank2 = boardPlayer2.allShipsSank();
                //****************************************************************************
                //****************************************************************************
                if (allSank2)
                {
                    Console.WriteLine(playerName1 + " is the winner!!!");
                    allSank = allSank2;
                    break;
                }
                SavePlayer1Progress();

                SavePlayer2Progress();
            }
        }
Example #2
0
        private void HumanVsHuman()
        {
            SlowPrint Slow          = new SlowPrint();
            string    emailaddress1 = "";
            int       amount1       = 0;
            string    emailaddress2 = "";
            int       amount2       = 0;
            Paypalbet bet           = new Paypalbet();



            //****************************************************************************
            //		Player enter the names
            Console.WriteLine("Please enter the name for player 1: ");
            String playerName1 = Console.ReadLine();

            Console.WriteLine("Please enter the name for player 2: ");
            String playerName2 = Console.ReadLine();

            Console.WriteLine("\n");
            //****************************************************************************

            string answer = "";



            if (GetRegistryInfo())
            {
                Console.WriteLine("Do you wanna place a bet(Paypal will be used for this exact reason)?(yes/no)");
                answer = Console.ReadLine();
                while (answer != "yes" && answer != "no")
                {
                    Console.WriteLine("wrong input. Please try again.");
                    answer = Console.ReadLine();
                }

                if (answer == "yes")
                {
                    Console.WriteLine(playerName1 + " please enter your email address to receive your payment if you win");
                    emailaddress1 = Console.ReadLine();
                    Console.WriteLine("Now, please enter the amount of money you are willing to bet.");
                    string amount1AsString = Console.ReadLine();

                    while (true)
                    {
                        try
                        {
                            amount1 = Int32.Parse(amount1AsString);
                            break;
                        }
                        catch (Exception)
                        {
                            Console.WriteLine("wrong input. Please try again");
                            amount1AsString = Console.ReadLine();
                        }
                    }


                    Console.WriteLine(playerName2 + " please enter your email address to receive your payment if you win");
                    emailaddress2 = Console.ReadLine();
                    Console.WriteLine("Now, please enter the amount of money you are willing to bet.");
                    string amount2AsString = Console.ReadLine();

                    while (true)
                    {
                        try
                        {
                            amount2 = Int32.Parse(amount2AsString);
                            break;
                        }
                        catch (Exception)
                        {
                            Console.WriteLine("wrong input. Please try again");
                            amount2AsString = Console.ReadLine();
                        }
                    }
                }
            }



            //****************************************************************************
            ShipBoard boardPlayer1 = new ShipBoard();

            //****************************************************************************



            //****************************************************************************
            Console.Clear();


            //****************************************************************************
            // creates player 1 and a ShipBoard for him.
            HumanPlayer player1 = new HumanPlayer(playerName1);
            //****************************************************************************



            //****************************************************************************
            // creates player 2 and a ShipBoard for him.
            HumanPlayer player2      = new HumanPlayer(playerName2);
            ShipBoard   boardPlayer2 = new ShipBoard();

            //****************************************************************************
            //****************************************************************************
            //		player 2 places his ships
            Console.WriteLine("Place your ships player: " + playerName1);
            boardPlayer1.enterAllShipsManually();
            //****************************************************************************
            //****************************************************************************
            //		return the ship and strike board of player 2
            int[,] ShipBoardPlayer1   = boardPlayer1.returnBoard();
            int[,] StrikeBoardPlayer1 = player1.returnStrikeBoard();

            //****************************************************************************
            //****************************************************************************
            //		print the shipboard
            Console.WriteLine("The ship board for player: " + playerName1 + " is :\n");
            printBoard(ShipBoardPlayer1);
            //****************************************************************************
            Console.Clear();
            //****************************************************************************



            //****************************************************************************
            //		player 2 places his ships
            Console.WriteLine("Place your ships player: " + playerName2);
            boardPlayer2.enterAllShipsManually();

            //****************************************************************************
            //		return the ship and strike board of player 2
            int[,] ShipBoardPlayer2   = boardPlayer2.returnBoard();
            int[,] StrikeBoardPlayer2 = player2.returnStrikeBoard();


            //****************************************************************************
            //		print the ship board
            Console.WriteLine("The ship board for player: " + playerName2 + " is :\n");
            printBoard(ShipBoardPlayer2);
            //****************************************************************************
            Console.Clear();
            //****************************************************************************
            bool allSank = false;

            while (!allSank)
            {
                //****************************************************************************
                //			    Player1

                Console.WriteLine("Hit point for: " + playerName1);

                int[] coordinates = player1.nextStrike();
                //			System.out.println( coordinates[0]+" , "+coordinates[1]);
                bool isHit = boardPlayer1.getStrike(coordinates[0], coordinates[1]);
                //			System.out.print("Main isHit= "+isHit);
                int[,] strikeBoardPlayer1 = player1.update(coordinates, isHit);
                Console.WriteLine("The strike board for player: " + playerName1 + " is :\n");
                printBoard(strikeBoardPlayer1);
                bool allSank1 = boardPlayer1.allShipsSank();


//			Check if All of Player 1 Ships have been Sank.

                if (allSank1)
                {
                    if (GetRegistryInfo() == true)
                    {
                        if (answer == "yes")
                        {
                            bet.makePayment(emailaddress2, amount1);
                        }
                    }
                    allSank = allSank1;
                    Console.WriteLine(player2 + " is the winner!!!");
                    break;
                }

                //			Delay for 1 second

                wait(1);
                //****************************************************************************
                //****************************************************************************
                //			Player2

                Console.WriteLine("Hit point for: " + playerName2);
                coordinates = player2.nextStrike();
                //			System.out.println( coordinates[0]+" , "+coordinates[1]);
                isHit = boardPlayer2.getStrike(coordinates[0], coordinates[1]);
                //			System.out.print("Main isHit= "+isHit);
                int[,] strikeBoardPlayer2 = player2.update(coordinates, isHit);
                Console.WriteLine("The strike board for player: " + playerName2 + " is :\n");
                printBoard(strikeBoardPlayer2);
                bool allSank2 = boardPlayer2.allShipsSank();

                if (allSank2)
                {
                    if (GetRegistryInfo() == true)
                    {
                        if (answer == "yes")
                        {
                            bet.makePayment(emailaddress1, amount2);
                        }
                    }
                    allSank = allSank2;
                    Console.WriteLine(player1 + " is the winner!!!");
                    break;
                }
            }
            Console.WriteLine("Thanks for playing. That was a really nice game.");
        }
Example #3
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();