-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPiece.java
More file actions
97 lines (88 loc) · 1.98 KB
/
Copy pathPiece.java
File metadata and controls
97 lines (88 loc) · 1.98 KB
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
/**
* Characteristics and location of pieces in the Connect Four game
*
* @author Sean DeZurik
*/
public class Piece {
/** Color of the piece */
private String color;
/** Whether a spot on the board is occupied by a piece or not */
private boolean filled;
/** Rows on the board */
private int row;
/** Columns on the board */
private int column;
/**
* Constructor for Piece
*/
public Piece() {
color = "";
filled = false;
}
/**
* Get color of a piece
*
* @return String with color of the piece
*/
public String getColor() {
return color;
}
/**
* Set the color of the piece
*
* @param color a String with the name of a color
*/
public void setColor(String color) {
this.color = color;
}
/**
* Find out if piece is filling a spot on the board
*
* @return boolean true if piece is filling the spot on the board
* and false if it is not
*/
public boolean getFilled() {
return filled;
}
/**
* Mark a spot on the board as occupied by a piece
*
* @param filled a boolean that is true if the spot is filled
* and false if it is not
*/
public void setFilled(boolean filled) {
this.filled = filled;
}
/**
* Set the row the piece is in
*
* @param row the row number
*/
public void setRow(int row) {
this.row = row;
}
/**
* Set the column the piece is in
*
* @param column the column number
*/
public void setColumn(int column) {
this.column = column;
}
/**
* Get the row the piece is in
*
* @return int with row number
*/
public int getRow() {
return row;
}
/**
* Get the column the piece is in
*
* @return int with column number
*/
public int getColumn() {
return column;
}
}