Exemplo n.º 1
0
        public static void NewPlayer()
        {
            string userInput;                   // To hold the user's input.
            bool   validAnswer = false;         // This will stay false until the user's answers yes or no.

            /**
             * This loop will stay going until a valid answer is recieved from
             * the user.
             */
            while (validAnswer == false)
            {
                Console.WriteLine("Are you a new Player?");
                Console.Write("> ");
                userInput = Console.ReadLine();

                if (userInput.ToLower() == "no")
                {
                    validAnswer = true;
                    Console.WriteLine("What is your name?");
                    userInput = CapWord.FirstCharToUpper(Console.ReadLine());
                    Load.LoadGameData(userInput.ToLower());         // Go to the Load class and exacute the LoadGame method.
                }
                else if (userInput.ToLower() == "yes")
                {
                    validAnswer = true;
                    CreatePlayer.CreatePlayerInst();                // Go to CreatePlayer and exacute the CreatePlayerInst method.
                }
                else
                {
                    Console.WriteLine("Not a valid answer.");
                }
            }
        }
Exemplo n.º 2
0
 private static bool CheckIfNPCIsInRoom(string npcName, out NPC namedNPC)
 {
     foreach (NPC npc in Player.CurrentLocation.RmNPC)
     {
         if (npc.NPCName.Equals(CapWord.FirstCharToUpper(npcName)))
         {
             namedNPC = npc;
             return(true);
         }
     }
     namedNPC = null;
     return(false);
 }
Exemplo n.º 3
0
 private static bool CheckIfMonsterIsInRoom(string monsterName, out Monster namedMonster)
 {
     foreach (Monster mob in Player.CurrentLocation.RoomMob)
     {
         if (mob.Name.Equals(CapWord.FirstCharToUpper(monsterName)))
         {
             namedMonster = mob;
             return(true);
         }
     }
     namedMonster = null;
     return(false);
 }
Exemplo n.º 4
0
        public static void CreatePlayerInst()
        {
            string   name;
            string   className    = "";
            string   raceName     = "";
            Factions faction      = Factions.Admin;
            int      alignment    = 0;
            int      gold         = 0;
            int      hp           = 0;
            bool     validRace    = false;
            bool     validClass   = false;
            bool     validFaction = false;


            Console.WriteLine("Give me your name.");
            Console.Write("> ");
            name = CapWord.FirstCharToUpper(Console.ReadLine());

            while (validClass == false)
            {
                Console.WriteLine("What class would you like to be?");
                Console.ForegroundColor = ConsoleColor.Yellow;
                Console.Write("Warrior, Mage, Thief > ");
                className = Console.ReadLine().ToLower();
                Console.ForegroundColor = ConsoleColor.White;

                if (className == "warrior")
                {
                    gold       = 100;
                    validClass = true;
                }
                else if (className == "mage")
                {
                    gold       = 150;
                    validClass = true;
                }
                else if (className == "thief")
                {
                    gold       = 200;
                    validClass = true;
                }
                else
                {
                    Console.WriteLine("Not a valid class");
                }
            }

            while (validRace == false)
            {
                Console.ForegroundColor = ConsoleColor.White;
                Console.WriteLine("What race would you like?");
                Console.ForegroundColor = ConsoleColor.Yellow;
                Console.Write("Human, Elf, Dwarf > ");
                raceName = Console.ReadLine().ToLower();

                if (raceName == "human")
                {
                    validRace = true;
                    hp        = 100;
                }
                else if (raceName == "elf")
                {
                    validRace = true;
                    hp        = 80;
                }
                else if (raceName == "dwarf")
                {
                    validRace = true;
                    hp        = 120;
                }
                else
                {
                    Console.WriteLine("Not a Valid entry.");
                }
            }

            while (validFaction == false)
            {
                Console.ForegroundColor = ConsoleColor.White;
                Console.WriteLine("To what faction do you belong?");
                Console.ForegroundColor = ConsoleColor.Yellow;
                Console.Write("Hero, Villion > ");
                string strFaction = CapWord.FirstCharToUpper(Console.ReadLine());

                if (strFaction == Factions.Hero.ToString() || strFaction == Factions.Villain.ToString() || strFaction == Factions.Admin.ToString())
                {
                    faction      = (Factions)Enum.Parse(typeof(Factions), strFaction, true);
                    validFaction = true;
                }
            }

            Console.ForegroundColor = ConsoleColor.White;
            Player._player          = new Player(name, CapWord.FirstCharToUpper(className), CapWord.FirstCharToUpper(raceName), gold, hp, hp, (Weapon)World.WeaponByID(103), false, true, faction, alignment);
            Console.WriteLine("Creating character data, please wait!");
            SaveData.SaveGameData(Player._player);
        }
Exemplo n.º 5
0
        public static void Looking(string noun)
        {
            string CapNoun = CapWord.FirstCharToUpper(noun);

            determineVerbType(CapNoun);
        }