示例#1
0
        public Application()
        {
            _api = new APIConnect();
            //call startup
            Startup();

            //run app while has not quit


            //Star Wars reference for the win
            Console.WriteLine("You have executed Order 66.  Have a great day!");
        }
示例#2
0
        public static void DisplayPilot(dynamic pilot)
        {
            //fetch the person's homeworld
            dynamic homeworld = APIConnect.GetHomeworld(pilot.homeworld.ToString());

            Console.Clear();

            //display all pilot data
            DisplayHeader($"{pilot.name}");
            Console.WriteLine($"Name: {pilot.name}");
            Console.WriteLine($"Gender: {pilot.gender}");
            Console.WriteLine($"Birth Year: {pilot.birth_year}");
            Console.WriteLine($"Hair Color: {pilot.hair_color}");
            Console.WriteLine($"Skin Color: {pilot.skin_color}");
            Console.WriteLine($"Eye Color: {pilot.eye_color}");
            Console.WriteLine($"Height: {pilot.height} Centimeters");
            Console.WriteLine($"Weight: {pilot.weight} Kilograms");
            Console.WriteLine($"\nHomeworld: {homeworld.name}");

            Console.Write($"\nWould you like to know more about {homeworld.name}?  yes/no >  ");

            string userChoice = Console.ReadLine();
            bool   validEntry = Validation.ValidateString(userChoice);

            //check if user wants to see homeworld info
            while (!validEntry || (userChoice.ToLower() != "yes" && userChoice.ToLower() != "no"))
            {
                Console.WriteLine("Invalid entry!");
                Console.Write($"\nWould you like to know more about {homeworld.name}?  yes/no >  ");
                userChoice = Console.ReadLine();
                validEntry = Validation.ValidateString(userChoice);
            }

            if (userChoice.ToLower() == "no")
            {
                MainLoop();
            }

            if (userChoice.ToLower() == "yes")
            {
                DisplayPlanet(homeworld);
            }
        }
示例#3
0
        public static void DisplayShipInfo(dynamic chosenItem)
        {
            //create an empty list for notable pilots
            List <dynamic> pilotsList = new List <dynamic>();
            dynamic        shipInfo   = APIConnect.GetShip(chosenItem);

            //if pilots appear in realtion to ship, fetch them
            //and add them to the list
            if (shipInfo.pilots.Count > 0)
            {
                foreach (dynamic pilot in shipInfo.pilots)
                {
                    pilotsList.Add(APIConnect.GetPilot(pilot.ToString()));
                }
            }

            //display all ship data
            DisplayHeader(shipInfo.model.ToString());

            Console.WriteLine($"Ship Name: {shipInfo.name.ToString()}");
            Console.WriteLine($"Ship Model: {shipInfo.model.ToString()}");
            Console.WriteLine($"Ship Class: {shipInfo.starship_class.ToString()}");
            Console.WriteLine($"Ship Manufacturer: {shipInfo.manufacturer.ToString()}");
            Console.WriteLine($"Hyperdrive Rating: {shipInfo.hyperdrive_rating.ToString()}");
            Console.WriteLine($"Crew: {shipInfo.crew.ToString()}");
            Console.WriteLine($"Passengers: {shipInfo.passengers.ToString()}");



            //if ship pilots exist, display their name
            if (shipInfo.pilots.Count > 0)
            {
                Console.WriteLine("\nKNOWN PILOTS:");
                int pilotListCount = pilotsList.Count - 1;
                int i = 1;

                //display all pilots who flew ship in records
                Menu.PilotList(pilotsList);

                //allow user to select a pilot to learn more about
                Console.Write("Please make a selection, or press 66 to return to the menu. >  ");
                string _userChoice = Console.ReadLine();

                bool isInt          = Validation.CheckInt(_userChoice);
                int  _userChoiceInt = isInt ? Int32.Parse(_userChoice) : 000;

                //exit to main menu
                if (_userChoiceInt == 66)
                {
                    MainLoop();
                }

                //validate the choice is in range of the menu
                bool isInRange = Validation.CheckRange(_userChoiceInt, pilotListCount + 1);

                while (!isInt || !isInRange)
                {
                    if (_userChoiceInt == 66)
                    {
                        MainLoop();
                    }

                    i = 1;

                    Menu.PilotList(pilotsList);

                    Console.Write("Please make a selection, or press 66 to return to the menu. >  ");
                    _userChoice = Console.ReadLine();

                    isInt          = Validation.CheckInt(_userChoice);
                    _userChoiceInt = isInt ? Int32.Parse(_userChoice) : 000;

                    if (_userChoiceInt == 66)
                    {
                        MainLoop();
                    }
                }

                //get pilot data
                dynamic chosenPilot = pilotsList[_userChoiceInt - 1];

                //display selected pilot
                DisplayPilot(chosenPilot);
            }
            else
            {
                Console.WriteLine("\nPress any key to return to the main menu...");
                Console.ReadKey();
            }
        }