-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoard.java
151 lines (128 loc) · 3.3 KB
/
Board.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
/**
* Aggregates Tiles into playing board.
*
* @author Chae Jubb
* @version 1.0
*
*/
@SuppressWarnings("serial")
public class Board implements java.io.Serializable {
private Tile[][] tiles;
private int horizontal, vertical;
/**
* Constructor: Creates board of supplied dimensions out of Tile Objects
*
* @param horizontal
* Width of Board
* @param vertical
* Height of Board
*/
public Board(int horizontal, int vertical) {
this.horizontal = horizontal;
this.vertical = vertical;
this.tiles = new Tile[this.horizontal][this.vertical];
for (int i = 0; i < horizontal; i++) {
for (int j = 0; j < vertical; j++) {
this.tiles[i][j] = new Tile(i, j);
}
}
}
/**
* Set up board for initial play, with 4 pieces in appropriate starting
* positions on 8 x 8 board
*/
public void setUpBoard() {
this.tiles[3][3].setColor(1);
this.tiles[4][4].setColor(1);
this.tiles[3][4].setColor(2);
this.tiles[4][3].setColor(2);
}
/**
* Access Tile object by coordinate
*
* @param horizontal
* Horizontal coordinate of tile to be accessed
* @param vertical
* Vertical coordinate of tile to be accessed
* @return Tile object accessed
*/
public Tile getTile(int horizontal, int vertical) {
return this.tiles[horizontal][vertical];
}
/**
* Setter of individual tile color value
*
* @param horizontal
* Horizontal coordinate of tile to be altered
* @param vertical
* Vertical coordinate of tile to be altered
* @param identifier
* New color value of accessed tile
*/
public void setTileColor(int horizontal, int vertical, int identifier) {
this.tiles[horizontal][vertical].setColor(identifier);
}
/**
* Represents Board object as a String, with X, O, blanks for board
* positions
*
* @return Stringified Board object
*/
public String toString() {
String response = " ";
int color;
// header row
for (int i = 0; i < this.horizontal; i++) {
response += (i + " ");
}
response += "\n";
for (int i = 0; i < this.vertical; i++) {
response += (i + " ");
for (int j = 0; j < this.horizontal; j++) {
color = this.tiles[j][i].getColor();
switch (color) {
case 0:
response += " ";
break;
case 1:
response += "X ";
break;
case 2:
response += "O ";
break;
default:
System.out.println("Error in board coloring");
break;
}
}
response += "\n";
}
return response;
}
public static Board copy(Board orig) {
Board obj = null;
try {
// Write the object out to a byte array
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream(bos);
out.writeObject(orig);
out.flush();
out.close();
// Make an input stream from the byte array and read
// a copy of the object back in.
ObjectInputStream in = new ObjectInputStream(
new ByteArrayInputStream(bos.toByteArray()));
obj = (Board) in.readObject();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException cnfe) {
cnfe.printStackTrace();
}
return obj;
}
}