Question: MATLAB or C++ code only please (MATLAB preferred) In this project you will create a program (script) that simulates a game of Darts. The program
MATLAB or C++ code only please (MATLAB preferred)
In this project you will create a program (script) that simulates a game of Darts. The program should display what each player hit with their darts each round and the current score until the game is completed.
Background:
A standard dart board has several scoring areas as displayed in the figure below. There are many types of games that can be played with a dartboard. You need to simulate one of the games that requires at least two players. Details about different dart games and how they are scored are available here: http://www.darting.com/Darts-Rules/. Different games have very different scoring, it is up to you to decide which game you want to implement. All games will be graded equally based on how accurately they simulate a game,
If you are completely unfamiliar with the game of darts, there are several videos available on YouTube by
searching How to Play Darts.
using the rules on the above website. NOTE: You will not get any points for the
project if you simulate your own version of darts, you MUST choose a game from the website listed.
Program Structure:
You will be provided with two 512x512 matrices that represent a dart board. The first includes the value for each wedge around the board, the value in the matrix is the wedge value (or zero if you are off the board). For instance, if you select a number in the upper middle of the board (i.e. location 100,256) the resulting value will be 20. The second matrix indicates where the rings are for single, double or triple. In this case, each location has a value of 1 for single rings, 2 for double ring, 3 for triple ring, and zero if you are off the board.
You should use a random number generator to select one place on the dartboard, by row and column, which represents a dart throw. This location will be the same for both data matrices. Your code must display (i.e. triple 14) where each dart hits (this can be done with text, it does not require a visual representation) for each round. Then display the current score for all players.
This process should continue until the game is successfully completed. Since you are using random number generators and not incorporating any skill into the throws the game simulation will likely take many rounds. When developing your code it might work better to start with small goals before trying to let the simulation run for an entire game.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
