Ejemplo n.º 1
0
        public void IfEnemyFound(Player PlayerName, Location LeavingLocation, Location NewLocation, bool IsThereAnEnemy)
        {
            switch (IsThereAnEnemy)
            {
            case true:
                //in here need to get name of enemy from list, check what it is, do appropriate action
                Enemy Enemy = LeavingLocation.GetEnemy(NewLocation);
                if (Enemy.GetEnemyName() == "Zombie")
                {
                    ConsoleChanges.ConsoleDisplayZombie();
                    Console.WriteLine("There is a Zombie in the room");
                    Enemy Zombie = LeavingLocation.ReturnBasicZombie(NewLocation, "Zombie");
                    LetsFight(PlayerName, Zombie, NewLocation);
                    Game.PlayerPrompt();
                    Logic.LocationLogic(PlayerName, NewLocation);
                }
                if (Enemy.GetEnemyName() == "The Zombie King")
                {
                    ConsoleChanges.ConsoleDisplayZombieKing();
                    Console.WriteLine("The Zombie King is in the room");
                    Enemy ZKing = LeavingLocation.ReturnBasicZombie(NewLocation, "The Zombie King");
                    LetsFight(PlayerName, ZKing, NewLocation);
                }
                if (Enemy.GetEnemyName() == "Wise Old Mage")
                {
                    ConsoleChanges.ConsoleDisplayMage();
                    bool result = TicTacToe.TicTacToeLogic(PlayerName, Enemy, NewLocation);
                    Game.PlayerPrompt();
                    Logic.LocationLogic(PlayerName, NewLocation);
                }
                break;

            case false:
                Game.PlayerPrompt();
                Logic.LocationLogic(PlayerName, NewLocation);
                break;
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Game     Game      = new Game();
            Logic    Logic     = new Logic();
            Player   Player1   = Game.SetPlayer();
            Location Location0 = Game.SetLocation0(Player1);
            Location Location1 = Game.SetLocation1(Player1);
            Location Location2 = Game.SetLocation2(Player1);
            Location Location3 = Game.SetLocation3(Player1);
            Location Location4 = Game.SetLocation4(Player1);



            Location0.WhereAmI(Location0);
            Game.PlayerPrompt();
            Logic.LocationLogic(Player1, Location0);
        }
Ejemplo n.º 3
0
        public void LetsFight(Player name, Enemy EnemyName, Location location)
        {
            Logic   Logic   = new Logic();
            Game    Game    = new Game();
            Actions Actions = new Actions();

            Console.Write(name.GetPlayerName() + "'s Hit Power is " + name.PlayerHitPower + " per hit. ");
            Console.WriteLine(name.GetPlayerName() + "'s health is " + name.PlayerHealth);
            Console.Write(EnemyName.GetEnemyName() + " Hit Power is " + EnemyName.EnemyHitPower + " per hit. ");  //CURRENT PROBLEM - THIS IS WHERE IT'S SAYING THERE ISN'T A ZOMBIE KING BUT IT WOULDN'T HAVE GOT HERE IF THERE WASN'T!
            Console.WriteLine(EnemyName.GetEnemyName() + " health is " + EnemyName.EnemyHealth);
            Console.WriteLine("The Zombie lunges at you, you dodge out of the way");
            Game.FightPrompt();


            while (true)
            {
                string FightAction = Console.ReadLine();

                if (FightAction == "1") //View items.  Tried to use switches here but it broke out back to the logic code after every action or not at all.
                {
                    name.ViewPlayerItems();
                    Game.FightPrompt();
                }
                if (FightAction == "2") //use items
                {
                    name.ViewPlayerItems();
                    if (name.PlayerItems.Count >= 1)
                    {
                        Console.WriteLine("Please type the name of the Item would you like to use");
                        string Item1       = Console.ReadLine();
                        bool   Item1Result = name.DoesPlayerHaveItem(Item1); // check player has item

                        if (Item1Result == true)
                        {
                            Items ItemToUse = name.FindPlayerItem(Item1, name);
                            if (ItemToUse.GetItemAction() == "This item does nothing")
                            {
                                Console.WriteLine("Unlucky, that item does absolutely nothing");
                                name.PlayerItems.Remove(ItemToUse);
                                Game.PlayerPrompt();
                            }
                            else
                            {
                                Actions.UseItem(Item1, name, location);
                                Game.PlayerPrompt();
                            }
                        }
                        if (Item1Result == false)
                        {
                            Console.WriteLine("You have not picked up that item");
                            Game.FightPrompt();
                        }
                    }
                    else
                    {
                        Game.FightPrompt();
                    }
                }
                if (FightAction == "3")
                {
                    if (EnemyName.GetEnemyName() == "Zombie")
                    {
                        while (EnemyName.EnemyHealth >= 1 && name.PlayerHealth >= 1)
                        {
                            EnemyName.DecreaseEnemyHealth(name.PlayerHitPower, EnemyName);
                            Console.WriteLine(EnemyName.GetEnemyName() + " health is now " + EnemyName.EnemyHealth);
                            if (EnemyName.EnemyHealth <= 0)
                            {
                                Console.WriteLine("You killed the " + EnemyName.GetEnemyName());
                                //put in a remove the enemey from it's original location here?  or fight the zombie every time you go into the room?
                                location.LocationEnemies.Remove(EnemyName);
                                location.WhereAmI(location);
                                break;
                            }

                            name.DecreasePlayerHealth(EnemyName.EnemyHitPower, name);
                            Console.WriteLine(name.GetPlayerName() + "'s health is now " + name.PlayerHealth);
                            if (name.PlayerHealth <= 0)
                            {
                                Console.WriteLine(name.GetPlayerName() + " got killed in a brutal way.  Thanks for Playing");
                                break;
                            }
                        }
                        break;
                    }
                    if (EnemyName.GetEnemyName() == "The Zombie King")
                    {
                        while (EnemyName.EnemyHealth >= 0 && name.PlayerHealth >= 0)
                        {
                            EnemyName.DecreaseEnemyHealth(name.PlayerHitPower, EnemyName);
                            Console.WriteLine(EnemyName.GetEnemyName() + " health is now " + EnemyName.EnemyHealth);
                            if (EnemyName.EnemyHealth <= 0)
                            {
                                Console.WriteLine("You killed the " + EnemyName.GetEnemyName() + " and have won the game.  You run up the stairs and into the distance.");
                                break;
                            }

                            name.DecreasePlayerHealth(EnemyName.EnemyHitPower, name);
                            Console.WriteLine(name.GetPlayerName() + "'s health is now " + name.PlayerHealth);
                            if (name.PlayerHealth <= 0)
                            {
                                Console.WriteLine(name.GetPlayerName() + " got killed in a brutal way.  Thanks for Playing");
                                break;
                            }
                        }
                        break;
                    }
                }
                else
                {
                    Console.WriteLine("Please enter a number between 1 and 3");
                }
            }
        }
Ejemplo n.º 4
0
        public void LocationLogic(Player name, Location location)
        {
            Location   currentLocation = location;
            FightLogic FightLogic      = new FightLogic();
            Game       Game            = new Game();
            TicTacToe  TicTacToe       = new TicTacToe();
            Actions    Actions         = new Actions();



            while (true)
            {
                string Action = Console.ReadLine();

                switch (Action)
                {
                case "1":     //look around
                    Console.WriteLine("You can see the following items");
                    location.ViewLocationItems(location);
                    Game.PlayerPrompt();
                    break;

                case "2":     //search an item
                    Console.WriteLine("Please type the name of the Item would you like to search exactly as you see it in the list");
                    string ItemSearch  = Console.ReadLine();
                    Items  ItemSearch2 = location.FindLocationItem(ItemSearch, location);
                    if (ItemSearch2 == null)
                    {
                    }
                    else
                    {
                        location.ItemDescription(ItemSearch);
                    }
                    Game.PlayerPrompt();
                    break;

                case "3":     //pick up an item
                    Console.WriteLine("Please type the name of the Item would you like to pick up exactly as you see it in the list");
                    string ItemKeep  = Console.ReadLine();
                    Items  ItemKeep2 = location.FindLocationItem(ItemKeep, location);
                    if (ItemKeep2 != null)
                    {
                        name.PlayerPickUpItem(ItemKeep2, location, ItemKeep2.CanPickUp);
                    }
                    Game.PlayerPrompt();
                    break;

                case "4":     //use an item
                    name.ViewPlayerItems();
                    if (name.PlayerItems.Count >= 1)
                    {
                        Console.WriteLine("Please type the name of the Item would you like to use");
                        string Item1       = Console.ReadLine();
                        bool   Item1Result = name.DoesPlayerHaveItem(Item1);   // check player has item

                        if (Item1Result)
                        {
                            Items ItemToUse = name.FindPlayerItem(Item1, name);
                            if (ItemToUse.GetItemAction() == "This item does nothing")
                            {
                                Console.WriteLine("Unlucky, that item does absolutely nothing");
                                name.PlayerItems.Remove(ItemToUse);
                                Game.PlayerPrompt();
                            }
                            else
                            {
                                Actions.UseItem(Item1, name, location);
                                Game.PlayerPrompt();
                            }
                        }
                        if (!Item1Result)
                        {
                            Console.WriteLine("You have not picked up that item");
                            Game.PlayerPrompt();
                        }
                    }
                    else
                    {
                        Game.PlayerPrompt();
                    }

                    break;

                case "5":     //view my items
                    name.ViewPlayerItems();
                    Game.PlayerPrompt();
                    break;

                case "6":                                                                          //change location
                    name.ViewLocationOptions(location);                                            //list possible locations as doors
                    string LeavingLocation = location.LocationToString(location);
                    string NewLocation     = Console.ReadLine();                                   //ask for door to go through
                    string NewLocation2    = location.DoorDirection(NewLocation, LeavingLocation); //convert door to location string
                    if (NewLocation2 == null)
                    {
                        Console.WriteLine("That location does not exist, did you type it in the format 'Door 1'?");
                        Game.PlayerPrompt();
                    }
                    else
                    {
                        Location NewLocation3 = name.FindLocation(NewLocation2); //convert location string into Location
                        currentLocation = NewLocation3;                          //set currentLocation to the new location name.
                        NewLocation3.WhereAmI(NewLocation3);

                        //move to fight sequences here if there is an enemy in the new location.
                        bool IsThereAnEnemy = NewLocation3.IsThereAnEnemy(NewLocation3);

                        FightLogic.IfEnemyFound(name, location, NewLocation3, IsThereAnEnemy);
                    }
                    break;

                default:
                    Console.WriteLine("Please enter a number between 1 and 6");
                    break;
                }
            }
        }