Question
In c++ language: You will create a simulation of the Beetle dice game. > Beetle is a British party game in which one draws a
In c++ language:
You will create a simulation of the "Beetle" dice game.
> Beetle is a British party game in which one draws a beetle in parts. The game may be played solely with pen, paper and a die or using a commercial game set, some of which contain custom scorepads and dice and others which contain pieces which snap together to make a beetle/bug. It is sometimes called Cooties or Bugs. The game is entirely based on random die rolls, with no skill involved.
> ### Playing
> The part drawn is decided by the roll of a die. The traditional rolls are:
> * 6 is for the body, of which there is one.
> * 5 is for the head, of which there is one.
> * 4 is for the wings, of which there are two.
> * 3 is for a leg, of which there are six.
> * 2 is for an antenna, of which there are two.
> * 1 is for an eye, of which there are two.
> It is necessary to roll the correct number for the body before any other part may be drawn. To the body, one may attach the head, legs or wings, but the head must precede the antenna and eyes. The first player to draw all the requisite parts is the winner.
Your program will simulate a game by creating a dice and some players, rolling the dice once for each player in turn, adding a body part to the beetle if appropriate, checking to see if the beetle is complete, and reporting a winner when someone has a complete beetle.
## Solution Specifications
Your solution should strive to meet the standards specified below as they form the basis on which it will be graded.
0. Your program will simulate the actions by all players in an entire game, from start to finish, and report the game's outcome to the console.
0. Your program must be divided into classes and functions which perform well-defined and logical sub-tasks for the problem. You may check with your professor or TA about your choice of functions and the parameters and/or return types that they will require.
0. Define a Dice class and instantiate one instance to be shared by all players. Use private member variables and appropriate public functions. Ask the user for a "seed" and use `srand()` in a constructor. Use `rand()` to simulate a dice roll to be returned.
0. Define a Beetle class with private member variables and appropriate public functions. Create one instance of Beetle for each of four players and ask the user for player names.
1. Separate the class definition file from the function implementation file.
1. Create a CPP file with a main() that tests your classes, verifying that the functionality is correct.
0. Create a CPP file to simulate the game. Give each player a turn (one roll) and move on to the next player if the game is not over. When the game ends, report which player won (by name) and how many turns it took to finish the game.
1. A stretch goal: use a vector to allow for a variable number of players (text, section 5.1).
## Time-Saving Suggestions
The following suggestions should save you a lot of time.
* Make sure that each of your functions really encapsulates one particular well-defined task. If your function is more than 10-15 lines long, think carefully about if it makes sense to break it up into separate subfunctions.
* Use descriptive function and variable names. A function name like ``rollDice`` is far more descriptive than ``rd`` and similarly for variables.
* For each function, include a comment that explains the input and output of the function and the task that it is responsible for completing.
* Think carefully about your code before you write it. It is worth programming a little slower in order to make sure that the code you write is clear, simple, and easy to read and modify.
* Start writing your functions one-by-one and test them as you write them. Make sure that each function behaves correctly before moving on to the next function. This will potentially save you a huge amount of time and frustration when debugging.
* The expected output is quite simple, just a player's name and the number of turns it took to win. You aren't required to report each roll or its result (though some output to clog might be helpful for debugging). And you certainly aren't expected to draw a beetle!
* The use of a seed allows us to have repeatable "pseudo-random" sequences. If you have four players, then you should get the following results:
Seed | Player | Turns
-----|--------|------
0 | 3 | 26
42 | 1 | 31
999 | 2 | 33
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started