-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBispo.java
68 lines (64 loc) · 1.63 KB
/
Bispo.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
public class Bispo extends Peca{
Bispo (String tipo, char cor) {
super(tipo, cor);
}
public boolean movimento (int xInicial, int xFinal, int yInicial, int yFinal, Peca[][] t) {
int horizontal = xFinal - xInicial;
int vertical = yFinal - yInicial;
if (vertical == horizontal) {
if (vertical > 0) {
for (int i = 1; i < vertical; i++) {
if (t[xInicial + i][yInicial + i].cor == '-')
;
else
return false;
}
return true;
}
else if (vertical < 0) {
for (int i = vertical; i < 0; i++) {
if (t[xInicial + i][yInicial + i].cor == '-')
;
else
return false;
}
return true;
}
}
else if (vertical == -horizontal) {
if (vertical > 0) {
for (int i = 1; i < vertical; i++) {
if (t[xInicial - i][yInicial + i].cor == '-')
;
else
return false;
}
return true;
}
else if (vertical < 0) {
for (int i = vertical; i < 0; i++) {
if (t[xInicial - i][yInicial + i].cor == '-')
;
else
return false;
}
return true;
}
}
return false;
}
public boolean podeMover (int xInicial, int xFinal, int yInicial, int yFinal, Peca[][] t) {
boolean p = super.podeMover(xInicial, xFinal, yInicial, yFinal, t);
if (p) {
p = movimento (xInicial, xFinal, yInicial, yFinal, t);
}
return p;
}
public boolean temCaptura (int xInicial, int xFinal, int yInicial, int yFinal, Peca[][] t) {
boolean p = super.temCaptura(xInicial, xFinal, yInicial, yFinal, t);
if (p) {
p = movimento(xInicial, xFinal, yInicial, yFinal, t);
}
return p;
}
}