Design a game of Yahtzee using C++ using a header.h file, main.c file, and a equ
ID: 3673476 • Letter: D
Question
Design a game of Yahtzee using C++ using a header.h file, main.c file, and a equations.c file.
You may design the Yahtzee game with functions that you see fit. I recommend that you start with a structure chart and determine sub-problems and functions accordingly. You must also take advantage of applying pointers, output parameters, and/or arrays! Your Yahtzee game must also implement the following algorithm:
(1) (5 pts) Print a game menu for Yahtzee with the following options:
1. Print game rules
2. Start a game of Yahtzee
3. Exit
(2) (5 pts) Get a menu option from the user; clear the screen
(3) (10 pts) If option 1 is entered, then print the game rules stated above and repeat step (1)
otherwise if option 2 is entered, then continue on to step (4); player 1 starts the game
otherwise if option 3 is entered, then print a goodbye message and quit the program
otherwise repeat step (1)
(4) (5 pts) Ask the player to hit any key to continue on to roll the five dice
(5) (5 pts) Roll the five dice and display the face values of each die; enumerate each die with
a number 1 - 5; add 1 to the total number of rolls for this round
(6) (10 pts) If the total number of rolls for this round is less than three,
then ask the player (Y/N) if he/she wants to use the roll for one of the game combinations
otherwise a combination must be selected.
1. Sum of 1's 7. Three-of-a-kind
2. Sum of 2's 8. Four-of-a-kind
3. Sum of 3's 9. Full house
4. Sum of 4's 10. Small straight
5. Sum of 5's 11. Large straight
6. Sum of 6's 12. Yahtzee
13. Chance
(7) (15 pts) If the number of rolls is three or "yes" is entered, then save the combination and it may not be selected again in the future
(Note: The selection of the combination must be verified. If the user selects full house, but does not have one, then your
must assign 0 points for the combination);
continue on to step (8); clear the screen
otherwise if "no" is entered, ask the user which dice to re-roll (1 - 5); re-roll the selected die or dice; clear the screen;
repeat step (6)
otherwise repeat step (6)
(8) (5 pts) Alternate players
(9) (10 pts) If each player has rolled for the round, then increment the round number
if the round number is equal to 14, then continue on to step (10)
otherwise repeat step (4)
otherwise repeat step (4)
(10) (5 pts) If the total score in the upper section is greater than or equal to 63 for a player, then add 35 points to the total score
(11) (5 pts) Print the scores for both players and print the winner
(12) (5 pts) Repeat step (1)
Explanation / Answer
#include "functions.h"
#define RULES 1
#define GAME 2
#define EXIT 3
int main (void)
{
int option = 0;
char character;
do {
printf("Yahtzee ");
printf("1. Print Game Rules. ");
printf("2. Play Game. ");
printf("3. Exit ");
scanf("%d", &option);
}
while ((option < 1) || (option > 3)); //(option!= 3 && option != 2 && option != 1)
return option;
}
switch (main_menu)
{
case RULES:
printf("The scorecard used for Yahtzee is composed of two sections. A upper section and a lower section. ");
printf("A total of thirteen boxes or thirteen scoring combinations are divided amongst the sections. ");
printf("The upper section consists of boxes that are scored by summing the value of the dice matching the faces of the box. ");
printf("If a player rolls four 3's, then the score placed in the 3's box is the sum of the dice which is 12. ");
printf("Once a player has chosen to score a box, it may not be changed and the combination is no longer in play for future rounds. ");
printf("If the sum of the scores in the upper section is greater than or equal to 63, then 35 more points are added to the players overall score as a bonus. ");
printf("The lower section contains a number of poker like combinations. See the table provided below: ");
printf("******Name***********************Combination************************************Score*************** ");
printf("Three-of-a-kind Three dice with the same face Sum of all face values on the 5 dice ");
printf(" Four-of-a-kind Four dice with the same face Sum of all face values on the 5 dice ");
printf(" Full house One pair and a three-of-a-kind 25 ");
printf(" straight A sequence of four dice 30 ");
printf(" Large straight A sequence of five dice 40 ");
printf(" Yahtzee Five dice with the same face 50 ");
printf(" Chance May be used for any sequence of dice; Sum of all face values on the 5 dice ");
printf(" this is the catch all combination ");
break;
case GAME:
break;
case EXIT: case_inventory_iron_city = case_inventory;
break;
default: printf ("Error: Illegal option. Ignoring! ");
break;
}
do {
menu_choice = main_menu ();
switch (menu_choice)
{
case :
case RULES:
void print_game_rules (void)
else if (menu_choice == PLAY)
}
break;
/* Exit the program. */
case EXIT:
break;
}
while (menu_choice != EXIT);
}
return 0;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.