-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ship.java
129 lines (114 loc) · 2.22 KB
/
Ship.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
* Write a description of class Ship here.
*
* @author Jerrett Fowler
* @version 1.0 (August 2013)
*/
public class Ship
{
// instance variables
private int hitPoints;
private int size;
private int orientation;
private int row;
private int column;
private String shipID;
/**
* Constructor for objects of class Ship
*/
public Ship(String id, int size, int direction, int row, int column)
{
this.hitPoints = size;
this.size = size;
this.orientation = direction;
//check if valid row
this.row = row;
//check if valid column
this.column = column;
this.shipID = id;
}
/**
* An example of a method - replace this comment with your own
*
* @param y a sample parameter for a method
* @return the sum of x and y
*/
public int getSize()
{
return size;
}
/**
* Insert a ship at a certain coordinate
*
* @param y a sample parameter for a method
* @return the sum of x and y
*/
public void placeShip(Ship s)
{
//
}
/**
* Returns number of hit points
*/
public int numberOfHitpoints()
{
return hitPoints;
}
/**
* Remove hitpoints from ship
*/
public void hit()
{
if(isDestroyed() == true)
{
System.out.println("Ship is destroyed, you cannot hit again.");
//Remove from fleet
}
else
{
hitPoints -= 1;
}
}
/**
* Constructor for objects of class Ship
*/
public boolean isDestroyed()
{
return hitPoints == 0;
}
/**
* Orientation
*/
public int getOrientation()
{
return orientation;
}
/**
* Row
*/
public int getRow()
{
return row;
}
/**
* Column
*/
public int getColumn()
{
return column;
}
/**
* Get ID
*/
public String getShipID()
{
return shipID;
}
/**
* Set ID
*/
public void setShipID(String s)
{
this.shipID = s;
}
}