程序代写代做代考 data structure Java Hive game C Instructions

Instructions
CSCI 1933 Project 2 Battleboats Game
Due Date: October 28th, 2020
Please read and understand these expectations thoroughly. Failure to follow these instructions could negatively impact your grade. Rules detailed in the course syllabus also apply but will not necessarily be repeated here.
• Identification: Place you and your partner’s x500 in a comment in all files you submit. For example, //Written by park1623.
• Submission: Submit a zip or tar archive on Canvas containing all your java files. You are allowed to change or modify your submission, so submit early and often, and verify that all your files are in the submission.
Failure to submit the correct files will result in a score of zero for all missing parts. Late submissions and submissions in an abnormal format (such as .rar or .jar) will be penalized. Only submissions made via Canvas are acceptable.
• Partners: You may work alone or with one partner. Failure to tell us who is your partner is indistinguishable from cheating and you will both receive a zero. Ensure all code shared with your partner is private.
• Code: We will not be using unit tests to grade this project. You are free to make any design decisions you want, but your code must be reasonably clean, well-designed, and commented thoroughly. Your code may receive a penalty if it is confusing or demonstrates poor knowl- edge of Java. Code that doesn’t compile will receive a significant penalty. Code should be compatible with Java 11, which is installed on the CSE Labs computers.
• Extra Work: If you enjoy this project and want to add extra features, please document the extra features thoroughly and allow them to be disabled for grading purposes. Mystery features we don’t understand could cause grading issues. Extra work will not result in extra credit, but the TAs will be impressed!
• Questions: Questions related to the project can be discussed on Piazza in abstract. This relates to programming in Java, understanding the writeup, and topics covered in lecture and labs. Do not post any code or solutions on the forum. Do not e-mail the TAs your questions when they can be asked on Piazza.
• Grading: Grading will be done by the TAs, so please address grading problems to them privately.
Introduction
Battleboats is a probability-based board game that challenges the user to locate enemy boats hidden on a rectangular grid. The purpose of the game is to locate and destroy every enemy boat in the
1

CSCI 1933 PROJECT 2 1. BOARD
least number of guesses.
You will be modelling this game in Java. There are no requirements for the actual classes and functions you design, but you must implement every part of the description below. Your code may also be judged based on style. This should not be a stressful requirement – it simply means that you must create logically organized, well-named and well-commented code so the TAs can grade it.
You are required to specify which main method we should run in a comment in the file. This is because there may be multiple main methods. A good way to make this obvious is to make a Main.java class that contains only a main method.
IMPORTANT: You cannot import anything to help you complete this project. The only exception is importing Scanner to handle the I/O. Note that you do not have to explicitly import Math because Java already does it for you. In other words, you can use Math methods without importing Math
Note: You are not required to write tests for your code; however, you will find it useful to write your own tests to prove to yourself that your code works. Please include any test classes you write with your submission.
1 Board
The computer will simulate a square n × n board. You are required to use a 2-dimensional array of cells to represent the board.
The user will select whether they want to play the game on Standard or Expert mode when the program starts. If Standard mode is selected, the program should create a board of 8 rows by 8 columns. If Expert mode is selected, the program should create a board of 12 rows by 12 columns. Assume that the points in the normal mode board range from (0,0) to (7,7) inclusive, and from (0, 0) to (11, 11) inclusive in the hard mode.
2 Cells
The Battleboats game board is composed of cells. The cell class should contain the following attributes :
Hint: You may find it useful to make your own BattleboatsBoard class that contains a constructor to set up the array and all the methods for setting up boats.
2

CSCI 1933 PROJECT 2 3. BOATS
• public int row: Indicates the row value of the cell
• public int col: Indicates the column value of the cell
• public char status: Character indicating the status of the Cell. There are three different possibilities for this field, as shown it Table 1
The following functions should also be implemented:
• public • public • public
char get_status(): Getter method for status attribute
void set_status(char c): Setter method for status attribute Cell(int row, int col, char status): Cell class constructor
Table 1: Cell States
’-’
Has not been guessed, no boat present
’B’
Has not been guessed, boat present
’H’
Has been guessed, boat present
’M’
Has been guessed, no boat present
3 Boats
Each boat is represented by a line of consecutive cells on the board. Boats may not overlap other boats, extend outside the game board, or be placed diagonally. They may be horizontal or vertical. A boat is considered “sunk” when all the squares of the boat have been “hit” by the user. Each boat should use some data structure (ex. array of cells) to store its corresponding cells on the board.
Examples: Valid coordinates for a boat of size 3 are {(0, 0), (0, 1), (0, 2)} and {(1, 1), (2, 1), (3, 1)}. Examples of invalid coordinates are {(0, 0), (0, 1)}, which is invalid because there are not enough points. {(0,0),(0,2),(0,3)} is invalid because the points are not consecutive. {(−1, 0), (0, 0), (1, 0)} is invalid because the first coordinate is out of bounds. Finally, two boats cannot contain the same point because they cannot overlap.
After the game mode has been chosen and the game board has been correctly sized, the program should place boats randomly on the board. This requires randomly generating a coordinate (x,y) where the boat will be placed as well as randomly choosing whether the boat should be horizontal or vertical. The quantity of boats is defined by the width and height of the game board.
For the Standard game mode you will place 5 boats on the board. These boats will have the following lengths:
• 1 boat of length 5
3

CSCI 1933 PROJECT 2 4. TURNS
• 1 boat of length 4 • 2 boats of length 3 • 1 boat of length 2
For the Expert game mode you will place 10 boats on the board. These boats will have the following lengths:
• 2 boats of length 5 • 2 boats of length 4 • 4 boats of length 3 • 2 boat of length 2
The user should be told how many boats are on the board when the game begins.
Hint: To randomly place a boat, consider the coordinate in the upper left. If the upper left corner was (0, 0), consider how the boat looks if it is horizontal or vertical. What upper left corner coordinates are invalid? The placing of the boats may be the most challenging aspect of this project: see what assumptions you can make to simplify it.
Hint: To generate random numbers, the Math.random() method can be used. However, this method returns a double in the range 0 to 1. We will need to scale this and then round it to a whole. To do this, use the Math.floor(x) function, which takes a double x and rounds it down to the nearest integer. For example, Math.floor(2.9) is 2.
4 Turns
Each turn, the user will input a location x, y to attack on the board. You can assume that x and y are integers, but you will need to check if the pair x, y is a valid location on the game board later. For this game you can assume that x represents which row to fire on and y is which column to fire on, with the 0th coordinate representing the first column or row. For example, firing on coordinate (1,0) would fire on the spot in the second row and first column.
• If there is no boat at the location, print “miss”.
• If the user has already attacked that location or location is out of bounds, print “penalty”.
• If there is a boat, print “hit”. If the boat sinks, print “sunk”. Do not print “hit” again if the user has already “hit” this location.
If the user attacks the same spot twice or attacks a spot out of bounds, the user’s next turn will be skipped (meaning that an extra turn will be added to the turn counter. See the example below
4

CSCI 1933 PROJECT 2 4. TURNS
for clarification). The game ends when all the boats have been sunk. The game should report how many turns it took to sink all the boats, as well as the total number of cannon shots. Lower scores are better!
Example:
Suppose the user is playing on board of size 5×5 with one boat on it. While in the actual game there will be at least 5 boats on the board and a board size of at least 8×8, for this example let’s assume that just one 3-length boat is placed on the board with the coordinates (0, 0), (0, 1), (0, 2).
Turn 1: the user selects (1, 0) and “miss” is printed
Turn 2: the user selects (0, 0) and “hit” is printed
Turn 3: the user selects (0, 0) again and is penalized by losing turn 4. “penalty” is printed Turn 4: skipped
Turn 5: the user selects (0, 1) and “hit” is printed
Turn 6: The user selects (−1, 0) which is out of bounds. Penalty
Turn 7: skipped
Turn 8: the user selects (0, 2) and “sunk” is printed. The game ends because the last boat
has sunk
The total number of turns is 8, but the total number of cannon shots is only 6 (Turns 1, 2, 3, 5, 6, 8).
Before each turn, a visual representation of the current board should be printed to the screen. This allows the player to see which squares they have seen (meaning have fired on), while still obscuring the squares they have not. Printing the board involves printing the locations of the current hits and misses, as well as any locations that have been scanned by the drone. You can format output as a grid, or simply provide a list of information, but it should be easy to understand.
5

CSCI 1933 PROJECT 2 5. POWERS
Example:
In the example above this is how the board would might be printed out before these turns. You can choose any representation you want to display the board as long as it is readable and accurate.
Before Turn 2:
—–
O—-
—–
—–
—–
Before Turn 8: XXX– O—-
—– —– —–
5 Powers
There are two special powers that you will implement for this project. Each power can be used once a game if the game is in standard mode, and twice if the game is in expert mode. Each power will add one turn to the total turn count, but will not count as a shot fired. If the user attempts to use the power again a message will be printed notifying them that they have already used that power as many times as they can. There is no turn penalty for trying to use a power when you have already hit the limit.
Drone
At any point in the game, once the board is initialized and the mode has been chosen, the user can type in ”drone” (or whatever way you want them to signify to the program that they wish to use a drone).
The program will then ask the user if they want to scan a row or column. The user will re- spond, for example by typing in ”row”. If the user types in an invalid response, the program should alert them until they type in a valid response.
Next, the program will ask the user which row or column they wish to scan. The user will respond by typing in a number, for example 0. If the user types in a number that is out of boundaries, the program should alert them until they type in a valid number.
The program will then ”scan” that row or column, and determine how many spots are there that contain a boat. It will then print that information out to the user. For example in the above
6

CSCI 1933 PROJECT 2 5. POWERS
example where a user entered ”row” and 0, the program would scan the 0th (or first row) and return the number of boat spots in that row. The drone will count boat spots that have already been hit and sunk.
Example:
User: Types in drone
Terminal:
User: row
Terminal:
User: r
Terminal:
User: -1
Terminal:
User: 0
Terminal:
User: drone
Terminal: Drone has been used the max amount of times.
Would you like to scan a row or column? Type in r for row or c for column. Invalid input. Please type in r for row or c for column.
Which row or column would you like to scan?
Invalid Input. Please type in a number within the boundaries of the board. Drone has scanned 2 targets in the specified area.
Note: The above example is just a potential way that the drone would work during a game. However you wish to have the drone interaction work is fine, as long as it is clear what commands a user has to enter to select the necessary arguments, as well as call the drone.
Missile
At any point in the game, once the board is initialized and the mode has been chosen, the user can type in ”missile” (or whatever way you want them to signify to the program that they wish to use a missile).
The program will then ask the user for a coordinate. The user will type in two numbers (Ex- ample: 0 5). The program will then check if the coordinate (0,5) is valid for the board. If it is not, the program will continue to ask the user to type in valid coordinates until the user does so.
Next, the program will fire a missile in that spot, what that means is that it will fire at a 3×3 square, with the chosen spot being in the very center of the square. If the chosen spot is near the edge of the board, the missile will only hit the spots on the board.
In the above case, a missile will launch at coordinates (2,2). This will hit spots (1,1),(1,2),(1,3),(2,1),(2,2), 7
Example:
User: Types in missile
Terminal: Where would you like to launch your missile? User: 2 2

CSCI 1933 PROJECT 2 6. STANDARD AND EXPERT GAME MODES
(2,3),(3,1),(3,2), and (3,3).
Another example is if a user launches a missile at coordinates (0,0). In this case, because (0,0) is near the edge of the board, only the spots that are on the board will be hit. In this case spots (0,0) (0,1),(1,0) and (1,1) will be hit. Note: It is fine if the spot to launch the missile has already been fired upon, or even if all the spots the missile will be hit have already been fired upon. The only invalid missile use is firing outside of the board.
6 Standard and Expert Game Modes
At the beginning of the program, the terminal should prompt the user if they want to play the game in standard of expert mode.
Example:
Terminal: ”Hello welcome to BattleBoats! Please enter 1 to play in standard mode or 2 to play in expert”.
User: standard
Terminal: Invalid input. Please enter 1 to play in standard mode or 2 to play in expert. User: 2
To recap the differences between Standard and Expert Mode.
Standard Mode:
• 8×8 Board.
• 5 Boats.
• Each power can be used once
Expert Mode:
• 12×12 Board.
• 10 Boats.
• Each power can be used twice
7 Print
At any point when the user types in ”print” after the game begins and the board is set, the program should print the entire board to terminal, displaying spots that have been hit and missed, as well as where boats are. It is important that you differentiate the boats in some way. This will be useful for you to make sure that your board is being set up correctly.
8

CSCI 1933 PROJECT 2 8. GETTING STARTED
Example: After the user types in print the board is printed out XXX11
O2222
X33OO
5—- 54X4O
Note: Make sure that by looking at the board that you can tell which boats are which, meaning that the symbol to represent boats aren’t all the same, but that they are distinct per boat. (i.e. using 1s for boat 1, 2s for boat 2 etc., instead of using a 1 for every boat)
8 Getting Started
There is a lot to do in this project but we recommend starting by making a BattleBoatsBoard class that contains your 2D Array or board. You should first set up the functionality to correctly size the array depending on if the user selects a standard or expert game mode. Then, determine how to randomly place the ships on the board without having them overlap. Implement the print command to help you see the board and make sure that your ships are being correctly placed.
While again there is no strict requirements on what classes you have to implement and how to implement them, we have a possible class design below.
BattleBoatsBoard Class
• Contains a 2D Array of Cell objects
• Contains a 1D Array of boat objects
• Contains int variables to keep tracks of total shots, turns, and ships remaining.
• Constructor takes in an int size variable as argument (Will be 8 in case of standard mode, 12 in expert), and correctly sizes the array upon construction.
• Has placeBoats() function to randomly place boats on board.
• Has fire(int x, int y) function to handle firing on a coordinate.
• Has display() function to print out the player board state every turn.
• Has print() function to print out the fully revealed board if a player types in the print command (This would be used for debugging purposes)
• Has missile(int x, int y) function to fire a missile on a specified coordinate
• Has drone(int direction,int index) function to scan a specific row or column
BattleBoat Class
• Contains a size integer to indicate its length 9

CSCI 1933 PROJECT 2 9. README FILE
• Contains an orientation boolean to indicate whether the boat is horizontal or vertical • Contains an array of cells corresponding to where the boat is on the board
• Constructor initializing all of the necessary attributes
• Getters and setters for necessary attributes
BattleBoatsGame Class
9
• •
Main should be in here. Should create and initialize a BattleBoatsBoard object. Should use scanner to take in user input until game end.
Can also contain any helper functions that you may find helpful.
README file
Make sure to include a README.txt file in with your submission that contains the following information
• Group member’s names and x500s
• If in a group, what did each partner do.
• Any additional or special features your project has • How to run and compile their code
• Any known bugs or defects in the program
10