-
Notifications
You must be signed in to change notification settings - Fork 1
/
Knight.java
78 lines (68 loc) · 1.21 KB
/
Knight.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
package Knight_pack;
import java.io.*;
import Pieces_pack.*;
import Board_pack.*;
import java.util.*;
import Position_pack.*;
public class Knight extends Piece implements Serializable
{
public Knight(Position pos,String clr)
{
init_pos=pos;
team_clr=clr;
}
public boolean validmove(Position final_pos)
{
int sub_x=final_pos.x-init_pos.x;
int sub_y=final_pos.y-init_pos.y;
boolean res=false;
Piece temp;
Piece orig=Board.piece[init_pos.x][init_pos.y];
int i,c;
if(sub_x ==2 || sub_x==-2)
{
if(sub_y==1 || sub_y==-1)
{
temp=Board.piece[(init_pos.x)+sub_x][(init_pos.y)+sub_y];
if(temp!=null)
{
if(!orig.team_clr.equals(temp.team_clr))
{
res=true;
}
else
{
res=false;
}
}
else
{
res=true;
}
}
}
else if(sub_x==1 || sub_x==-1)
{
if(sub_y==2 || sub_y==-2)
{
temp=Board.piece[(init_pos.x)+sub_x][(init_pos.y)+sub_y];
if(temp!=null)
{
if(!orig.team_clr.equals(temp.team_clr))
{
res=true;
}
else
{
res=false;
}
}
else
{
res=true;
}
}
}
return res;
}
}