Reference no: EM132883482
1. Create a Dice Roll Game with the following features:
a. Uses 2 dice (ensure that each die has a separate random seed)
b. Each die has face values from 1 to 6
c. Both dice are rolled at the same time when a button is clicked
d. A game consists of a maximum of 5 attempts per user, but a user can have as few as one attempts
e. The game will end for a user after the 5th attempt has been completed, or when the user uses the Exit button
f. The high scores for every game will be written to disk (appended, if records already exist): you will record the user's name, the date, and the score in a file called GameScores
i. Ensure that this happens before the game is closed.
g. At the start of the game
i. Ask for the User's First Name
ii. Save this name in a variable
iii. At each attempt, save the total sum of the 2 dice thrown as a single number
iv. As the user progresses through the attempts, keep only the highest score
h. When the game ends for a user
i. Write the results for the game to disk (append operation) to the GameScores file
1. Record the User's Name. the Date, and the Highest score.
2. Close the file
ii. Open again the GameScores file and Read the contents
iii. Sort the data, pick the top 5 scorers with their dates and names.
iv. Display the top 5 scorers Names, Date, and score in a box with the label Top 5 Scorers.
i. Ask the User if he/she wants to play again
1. If the user says Yes, start a new game
2. If the user says no. exit the application
2. Choose the necessary Control Items for your Form as well as their placement.
a. Remember to use your initial when naming the project or its sections
3. Make the Interface as fancy as you want.
4. What you need to send:
a. Flow Chart
b. Pseudocode
c. Complete Project Folder (not the *sln alone)
i. Components of the Project should start with your Initials.
ii. The contents of the folder and flowchart and pseudocode files should be in one zip file with your name in the file name.