-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBoard.java
253 lines (234 loc) · 6.39 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/** Kelas Board yang merepresentasikan board permainan.
* Board terdiri dari 42 kotak(Tiles) di mana masing-masing
* kotak menentukan posisi pemain dan bisa terdapat trap pada tiles
*/
import java.util.*;
import java.io.*;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import org.w3c.dom.Element;
public class Board {
//Constant
private final int BOARDX = 12;
private final int BOARDY = 7;
private static final int NBLOCK = 42;
private final String CLEARCELL = "99";
private final String TRAPCELL = "88";
private final String boardfilename = "circuit.xml";
//Attribute
private Cell cell[][];
boolean initialized = false;
int nplayer;
//Method
// Constructor
/** Constructor
*/
public Board()
{
cell = new Cell[BOARDY][BOARDX];
for(int i=0; i<BOARDY; i++)
for(int j=0; j<BOARDX; j++)
cell[i][j] = new Cell();
initialized = initRoad();
}
/**konstruktor dengan parameter
*/
public Board(int Nplayer)
{
cell = new Cell[BOARDY][BOARDX];
for(int i=0; i<BOARDY; i++)
for(int j=0; j<BOARDX; j++)
cell[i][j] = new Cell();
initialized = initRoad();
for(int i=1; i<=Nplayer; i++)
{
Integer in = new Integer(i);
cell[0][0].setPlayersIn(in.toString());
}
}
/**getter NBlock
*/
public static int getNBlock(){
return NBLOCK;
}
/** Scan dari file eksternal, membuat jalan
*/
public boolean initRoad()
{
try {
File file = new File(boardfilename);
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(file);
doc.getDocumentElement().normalize();
NodeList nList = doc.getElementsByTagName("tile");
int i=0; int j=0;
for (int temp = 0; temp < nList.getLength(); temp++){
Node nNode = nList.item(temp);
if (nNode.getNodeType() == Node.ELEMENT_NODE){
Element eElement = (Element) nNode;
String CellNum = eElement.getElementsByTagName("CellNum").item(0).getTextContent();
String CellP = eElement.getElementsByTagName("CellP").item(0).getTextContent();
cell[i][j].setCellNo(CellNum);
cell[i][j].setPlayersIn(CellP);
j++;
if(j==12)
{
i++;
j=0;
}
}
}
} catch (Exception e) {
return false;
}
return true;
}
/** menggambarkan board ke layar
*/
public void drawBoard()
{
if(initialized)
{
for(int i=0 ; i<BOARDY ; i++)
{
//cetak bagian atas cell, untuk player 1 dan 2
for(int j=0 ; j<BOARDX ; j++)
{
String sel = cell[i][j].getPlayersIn();
{/*
String num = cell[i][j].getCellNo();
if(num.equals(CLEARCELL)) System.out.print("\t");
else System.out.print(num +"\t");*/
}
if(sel.equals(CLEARCELL))
System.out.print(" ");
else
{
if(sel.contains(TRAPCELL))
System.out.print("\\");
else System.out.print("|");
if(sel.contains("1") && sel.contains("2"))
System.out.print("1|2");
else if(sel.contains("1"))
System.out.print("1|_");
else if(sel.contains("2"))
System.out.print("_|2");
else
System.out.print("_|_");
if(sel.contains(TRAPCELL))
System.out.print("/");
else System.out.print("|");
}
}
System.out.println();
//cetak bagian bawah cell, untuk player 3 dan 4
for(int j=0 ; j<BOARDX ; j++)
{
//System.out.print("\t");
String sel = cell[i][j].getPlayersIn();
if(sel.equals(CLEARCELL))
System.out.print(" ");
else
{
if(sel.contains(TRAPCELL))
System.out.print("/");
else System.out.print("|");
if(sel.contains("3") && sel.contains("4"))
System.out.print("3|4");
else if(sel.contains("3"))
System.out.print("3|_");
else if(sel.contains("4"))
System.out.print("_|4");
else
System.out.print("_|_");
if(sel.contains(TRAPCELL))
System.out.print("\\");
else System.out.print("|");
}
}
System.out.println();
}
System.out.println();
/*System.out.println("Kartu Aksi");
System.out.println(" ___ ");
System.out.println("| |");
System.out.println("| |");
System.out.println("|___|");
System.out.println();*/
}
}
/** mengembalikan 2 buah integer dalam array yang merupakan koordinat cell dengan nomor tertentu NoCell
*/
public int[] getCellCoor(String NoCell)
{
int baris = 0; int kolom = 0;
boolean breakloop = false;
int i=0; int j=0;
for (i=0 ; i<BOARDY && !breakloop ; i++)
{
for (j=0 ; j<BOARDX && !breakloop ; j++)
{
if (cell[i][j].getCellNo().equals(NoCell))
breakloop = true;
}
}
if(breakloop)
{
baris = i-1;
kolom = j-1;
}
int kembalian[] = new int[2];
kembalian[0] = baris;
kembalian[1] = kolom;
return kembalian;
}
/**memasang trap, mengubah status yang tadinya normal menjadi terkena trap
*/
public boolean setTrap(int NoCell)
{
Integer trap = new Integer(NoCell);
int koordinat[] = getCellCoor(trap.toString());
return cell[koordinat[0]][koordinat[1]].setTrap();
}
/**menghilangkan trap, mengubah status yang tadinya terkena tap menjadi trap
*/
public boolean unsetTrap(int NoCell)
{
Integer trap = new Integer (NoCell);
int koordinat[] = getCellCoor(trap.toString());
return cell[koordinat[0]][koordinat[1]].unsetTrap();
}
/** memindahkan player nomor playernumber sebesar increment
*/
public int move(Player pl, int playernumber, int increment)
{
System.out.println(increment);
if((pl.getPosition()==1||pl.getPosition()==0||pl.getPosition()==42)&&increment<0){
return 0;
}
else{
Integer pn = new Integer(playernumber);
int posnow = pl.getPosition();
//HAPUS di asal
Integer asal = new Integer(posnow);
int[] koordinat = getCellCoor(asal.toString());
cell[koordinat[0]][koordinat[1]].removePlayer(pn.toString());
//LETAKKAN di tujuan
Integer tujuan = new Integer(0);
if(posnow + increment <= 0)
tujuan = new Integer(1);
else
tujuan = new Integer((posnow + increment)%NBLOCK);
koordinat = getCellCoor(tujuan.toString());
cell[koordinat[0]][koordinat[1]].setPlayersIn(pn.toString());
String istrap = cell[koordinat[0]][koordinat[1]].getPlayersIn();
if(istrap.contains(TRAPCELL))
return 88;
else return 1;
}
}
}