113 lines
1.8 KiB
Java
Raw Normal View History

2019-03-20 14:14:08 +01:00
package piecesEchiquier;
2019-05-09 11:08:09 +02:00
public class Piece {
2019-03-20 14:14:08 +01:00
2019-05-23 14:44:34 +02:00
//ATTRIBUTS
private String couleur = "";
private String nom = "..";
2019-03-20 14:14:08 +01:00
private boolean enVie = true;
private Position position;
private Position ini;
private boolean verif = false;
2019-03-20 14:14:08 +01:00
2019-05-23 14:44:34 +02:00
//CONSTRUCTEURS
2019-03-20 14:14:08 +01:00
public Piece()
{
}
public Piece(Position pos)
{
position = pos;
}
2019-03-20 14:14:08 +01:00
2019-05-03 23:53:45 +02:00
public Piece(String couleur,String l, Position pos)
2019-03-20 14:14:08 +01:00
{
2019-05-03 18:32:02 +02:00
this.couleur = couleur;
this.nom = l;
2019-05-03 18:32:02 +02:00
this.position = pos;
this.ini=pos;
2019-03-20 14:14:08 +01:00
}
2019-05-23 14:44:34 +02:00
//METHODES
public boolean aBouge() //voir si la piece a bouger pour certains deplacement
{
if(this.getIni() != this.getPosition())
{
verif=true;
}
if(this.getIni() == this.getPosition() && verif == false)
{
verif=false;
}
return verif;
}
2019-05-23 14:44:34 +02:00
//GETTERS AND SETTERS
2019-03-20 14:14:08 +01:00
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
2019-03-20 14:14:08 +01:00
////////////
public boolean isEnVie() {
return enVie;
}
public void setEnVie(boolean enVie) {
this.enVie = enVie;
}
///////////
2019-05-03 18:32:02 +02:00
public String getCouleur() {
2019-03-20 14:14:08 +01:00
return couleur;
}
2019-05-03 18:32:02 +02:00
public void setCouleur(String couleur) {
2019-03-20 14:14:08 +01:00
this.couleur = couleur;
}
2019-05-03 18:32:02 +02:00
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
public Position getIni() {
return ini;
}
public void setIni(Position ini) {
this.ini = ini;
}
public boolean deplacable(Echiquier e,Piece p)
2019-05-03 18:32:02 +02:00
{
2019-05-25 12:32:13 +02:00
if(p.getCouleur().equals(this.getCouleur())) {
return false;
}
2019-05-03 18:32:02 +02:00
return true;
}
public boolean metEnEchec(Echiquier e, Piece p)
{
if(this.deplacable(e,p) == true) //1er cas : la pièce se deplace une seconde fois (pas vraiment) et verifie qu'elle tombe sur la position du roi (soit noir, soit blanc selon la couleur de la pièce)
{
System.out.println("Le roi est en échec");
return true;
}
2019-05-25 01:09:51 +02:00
return false;
}
2019-03-20 14:14:08 +01:00
}