-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tour.java
58 lines (48 loc) · 1.03 KB
/
Tour.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
import java.awt.Image;
import java.io.*;
public class Tour extends Piece implements Serializable
{
private static final long serialVersionUID = 7L;
public Tour(){} //constructeur vide
public Tour(boolean etat,int couleur,int x,int y,Image img,String loc_img)
{
super(etat,couleur,x,y,img,loc_img);
}
public Tour(Tour tour)
{
super(tour);
}
public String toString()
{
return "T"+this.get_couleur();
}
public boolean mouv_possible(int x,int y)
{
//la tour bouge en ligne droite et sur un axe à la fois.
int mouv_x=x-this.get_x(); //de combien de case il bouge sur l'axe x
int mouv_y=y-this.get_y(); //de combien de case il bouge sur l'axe y
if (mouv_x==0 && mouv_y==0)
{
return false;
}
if(mouv_x==0 && mouv_y!=0)
{
return true;
}
if(mouv_x!=0 && mouv_y==0)
{
return true;
}
return false;
}
public boolean roque_possible_tour()
{
if(!this.get_etat())
{
return true;
}else
{
return false;
}
}
}