Sale!

COMP 10205 Assignment#6 Battleship Strategy Solution

Original price was: $35.00.Current price is: $30.00. $25.50

Category:

Description

5/5 - (4 votes)

Background
You are to write a program that will play a limited game of battleship where you will attempt to
sink all of the ships with a minimum number of shots. The game of battleship is typically played
with two players, each of which place 5 ships of various sizes on a 10 x 10 grid. Each player on a
turn by turn basis attempts to place a shot where the opponent has placed a ship. Of course,
your opponent can not see where you have placed your ships and you cannot see where the
opponent has placed their ships. You typically call out shots to try and find and sink each of the
ships. The player that can sink all the opponent ships. The first player to sink all the other ships
is the Winner. For a more complete description see Battleship.
In this instance of BattleShip the API you have been provided will randomly place 5 ships
(lengths 2,3,3,4,5) on the board. A total of 17 spaces on the board out of 100 will have a ship.
Once you obtain 17 hits you have solved the game. Your goal is to achieve the lowest average
number of shots when the game is played 10000 times. There are many different strategies
that can be used to solve this problem.
The starting project provided includes the BattleShip API. The public methods of the Battleship
API are described below:
• BattleShip() – you need to call the constructor once in your program to create an
instance of the battleship game.
• boolean shoot(Point shot) – you need to call this function to make each shot. See
the sample source code for an example use.
• int numberOfShipsSunk() – returns the total number of ships sunk at any point during
the game. It is a good idea to use this method to determine when a ship has been sunk.
• boolean allSunk() – returns a boolean value that indicates whether all the ships have
been sunk.
• int totalShotsTaken() – returns the total number of shots taken. Your code needs to
be responsible for ensuring the same shot is not taken more than once.
• int[] shipSizes() – returns an array of the ship sizes. The length of the array
indicates how many ships are present. This array is fixed for the game with ship sizes of
2,3,3,4,5. It does not update when a ship is sunk. You must write logic in your code to
determine which ship has been sunk.
• enum CellState – this enum object is very useful for marking cells has either Empty, Hit
or Miss. It also has a convenience toString method so that can be used for printing
purposes. You may also create your own Enum / Class for this in your code, but it is
suggested that you use this instead of integers / characters to mark a Cell state
Steps
1. Download the starting code for the project from the eLearn dropbox. Rename the
project to Assignment6
2. Create a class for your battleship Logic – A starter solution is provided in the dropbox.
The SampleBot class is where you need to place your solution logic.
3. Add some logic to your class to eliminate duplicate cell selection (i.e. – don’t fire on the
same cell twice)
4. Timing code is in the starting solution. You need to leave that code in your solution. It is
best to play 10000 games to get enough games in order to calculate the average. You
may wish to set this number to a lower value when you are debugging your solution.
When your code is evaluated the number of games will be set to 10000.
5. Some Ideas for solving the problem:
o Consider reducing the number of shots you need to fire to find a ship.
o Create a map that tracks where you have placed your shots so that you don’t fire
on a cell more than once.
o After you have hit a ship, you may want to change how you select your next
shot.
o The probability of a ship being on a particular square is not the same for each
square. This probability changes after each shot as well. This technique for shot
selection is a little more advanced but yields better ship targeting and when used
correctly can greatly reduce the number of shots required.
Useful classes for this lab
All of the data structures that have been covered in the course could be used to solve the
problem. Some classes are better suited than others so spend some time thinking about which
classes to use.
Best Scores (based on a run of 10000 games)
• Student best score 2014 class = 51.61
• Student best score 2015 class = 46.86
• Student best score 2016 class = 47.70
• Student best score 2017 class = 46.83
• Student best score 2019 class = 48.56
• Student best score 2020 class (so far) = 51.21
• Professor best score all time = 46.10
Marking Scheme (A 100% grade is 20/20 – A maximum grade is 25/20)
Code quality, modularity, documentation, comments, naming conventions – 25%(5 marks)
Appropriate Data Structures/Algorithms used – 30% (6 marks)
Efficiency (Only given if shot selection/mapping used) –
Bot must complete 10000 games in less than 5 s – 10% (2 marks)
Shot Performance Score – 35% (7 marks)
Performance Score (based on 10 x 10 grid) – 10000 games
• >= 97.0 (0)
• < 97.0 (1)
• < 90.0 (2)
• < 80.0 (3)
• < 73.0 (4)
• < 68.0 (5)
• < 62.0 (7)
• < 58 (9) (2 Bonus marks)
• < 53 (11)(5 Bonus Marks)

COMP 10205