voir sa carte perso quand on emet une pression dessus
This commit is contained in:
parent
697a35679c
commit
d8df8f3833
@ -53,6 +53,11 @@ public class CarteLieu extends CarteEffet{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public CarteLieu getVoisin() {
|
||||||
|
return voisin;
|
||||||
|
}
|
||||||
|
|
||||||
public void setVoisin(CarteLieu cl) {
|
public void setVoisin(CarteLieu cl) {
|
||||||
this.voisin = cl;
|
this.voisin = cl;
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,7 @@ public class GestionnaireDePions {
|
|||||||
|
|
||||||
translate.setByX(x);
|
translate.setByX(x);
|
||||||
translate.setByY(y);
|
translate.setByY(y);
|
||||||
translate.setDuration(Duration.millis(2000));
|
translate.setDuration(Duration.millis(20000));
|
||||||
translate.setNode(p);
|
translate.setNode(p);
|
||||||
translate.play();
|
translate.play();
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package ihm.controller;
|
package ihm.controller;
|
||||||
|
|
||||||
import carte.CarteEquipement;
|
import carte.CarteEquipement;
|
||||||
|
import database.RessourceLoader;
|
||||||
import ihm.ImageViewEquipement;
|
import ihm.ImageViewEquipement;
|
||||||
import javafx.scene.Node;
|
import javafx.scene.Node;
|
||||||
import javafx.scene.control.Button;
|
import javafx.scene.control.Button;
|
||||||
@ -28,21 +29,25 @@ public class JoueurIHM {
|
|||||||
private GestionnaireDePions gestionnaireDePions;
|
private GestionnaireDePions gestionnaireDePions;
|
||||||
private Color color;
|
private Color color;
|
||||||
private PlateauController pc;
|
private PlateauController pc;
|
||||||
|
private boolean estRevele = false;
|
||||||
|
|
||||||
public JoueurIHM(int i, Joueur joueur, Pane zoneJoueur, Color color, GridPane gridPaneVie, GridPane gridPaneLieux, PlateauController pc) {
|
public JoueurIHM(int i, Joueur joueur, Pane zoneJoueur, Color color, GridPane gridPaneVie, GridPane gridPaneLieux,
|
||||||
|
PlateauController pc /* , boolean carteVisible */ ) {
|
||||||
|
|
||||||
this.setPosition(i);
|
this.setPosition(i);
|
||||||
this.setJoueur(joueur);
|
this.setJoueur(joueur);
|
||||||
this.zoneJoueur = zoneJoueur;
|
this.zoneJoueur = zoneJoueur;
|
||||||
this.color = color;
|
this.color = color;
|
||||||
this.gestionnaireDePions = new GestionnaireDePions(this.color,gridPaneVie, gridPaneLieux);
|
this.gestionnaireDePions = new GestionnaireDePions(this.color, gridPaneVie, gridPaneLieux);
|
||||||
this.pc = pc;
|
this.pc = pc;
|
||||||
|
|
||||||
zoneJoueur.setBorder(new Border(new BorderStroke(color, BorderStrokeStyle.SOLID, CornerRadii.EMPTY, new BorderWidths(5))));
|
zoneJoueur.setBorder(
|
||||||
|
new Border(new BorderStroke(color, BorderStrokeStyle.SOLID, CornerRadii.EMPTY, new BorderWidths(5))));
|
||||||
|
|
||||||
String name = joueur.getNom();
|
String name = joueur.getNom();
|
||||||
setLabelJoueur(name);
|
setLabelJoueur(name);
|
||||||
initRevealButton();
|
initRevealButton();
|
||||||
|
initCheckIdentity();
|
||||||
initZoneEquipement();
|
initZoneEquipement();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,7 +67,10 @@ public class JoueurIHM {
|
|||||||
GridPane gp = (GridPane) iv.getParent();
|
GridPane gp = (GridPane) iv.getParent();
|
||||||
iv.setImage(im);
|
iv.setImage(im);
|
||||||
iv.fitHeightProperty().bind(gp.heightProperty());
|
iv.fitHeightProperty().bind(gp.heightProperty());
|
||||||
|
// initButtonEffect(btn);
|
||||||
btn.setDisable(true);
|
btn.setDisable(true);
|
||||||
|
btn.setText("Utiliser Effet");
|
||||||
|
estRevele = true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,11 +79,52 @@ public class JoueurIHM {
|
|||||||
return (Button) p.getChildren().get(1);
|
return (Button) p.getChildren().get(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void initCheckIdentity() {
|
||||||
|
ImageView iv = getCartePersonnage();
|
||||||
|
|
||||||
|
iv.setOnMousePressed(press -> {
|
||||||
|
|
||||||
|
if (estRevele == false) {
|
||||||
|
|
||||||
|
Image im = this.pc.getImageCarte(this.joueur.getCartePersonnage());
|
||||||
|
GridPane gp = (GridPane) iv.getParent();
|
||||||
|
iv.setImage(im);
|
||||||
|
iv.fitHeightProperty().bind(gp.heightProperty());
|
||||||
|
iv.fitHeightProperty().bind(gp.heightProperty());
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
iv.setOnMouseReleased(release -> {
|
||||||
|
|
||||||
|
if (estRevele == false) {
|
||||||
|
|
||||||
|
Image im = this.pc.getImageDosCarte(RessourceLoader.DOS_PERSONNAGE);
|
||||||
|
GridPane gp = (GridPane) iv.getParent();
|
||||||
|
iv.setImage(im);
|
||||||
|
iv.fitHeightProperty().bind(gp.heightProperty());
|
||||||
|
iv.fitHeightProperty().bind(gp.heightProperty());
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public ImageView getCartePersonnage() {
|
public ImageView getCartePersonnage() {
|
||||||
Pane p = (Pane) zoneJoueur.getChildren().get(2);
|
Pane p = (Pane) zoneJoueur.getChildren().get(2);
|
||||||
return (ImageView) p.getChildren().get(0);
|
return (ImageView) p.getChildren().get(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void initButtonEffect(Button btn) {
|
||||||
|
|
||||||
|
btn.setOnAction(click -> {
|
||||||
|
System.out.println(this.joueur.getCartePersonnage().getNom() + " va user de son pouvoir");
|
||||||
|
this.joueur.getCartePersonnage().utiliser();
|
||||||
|
System.out.println(this.joueur.getCartePersonnage().getNom() + " a réussi à utiliser son pouvoir");
|
||||||
|
btn.setDisable(true);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
public AnchorPane getZoneJoueur() {
|
public AnchorPane getZoneJoueur() {
|
||||||
return (AnchorPane) zoneJoueur.getChildren().get(1);
|
return (AnchorPane) zoneJoueur.getChildren().get(1);
|
||||||
}
|
}
|
||||||
@ -85,13 +134,13 @@ public class JoueurIHM {
|
|||||||
AnchorPane ap = (AnchorPane) zoneJoueur.getChildren().get(1);
|
AnchorPane ap = (AnchorPane) zoneJoueur.getChildren().get(1);
|
||||||
ap.getChildren().setAll(p);
|
ap.getChildren().setAll(p);
|
||||||
|
|
||||||
//ap.prefWidthProperty().bind(ap.widthProperty());
|
// ap.prefWidthProperty().bind(ap.widthProperty());
|
||||||
//ap.prefHeightProperty().bind(ap.heightProperty());
|
// ap.prefHeightProperty().bind(ap.heightProperty());
|
||||||
|
|
||||||
AnchorPane.setBottomAnchor(p,0.0);
|
AnchorPane.setBottomAnchor(p, 0.0);
|
||||||
AnchorPane.setLeftAnchor(p,0.0);
|
AnchorPane.setLeftAnchor(p, 0.0);
|
||||||
AnchorPane.setRightAnchor(p,0.0);
|
AnchorPane.setRightAnchor(p, 0.0);
|
||||||
AnchorPane.setTopAnchor(p,0.0);
|
AnchorPane.setTopAnchor(p, 0.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Label getLabelJoueur() {
|
public Label getLabelJoueur() {
|
||||||
@ -129,14 +178,13 @@ public class JoueurIHM {
|
|||||||
|
|
||||||
public void choisir() {
|
public void choisir() {
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void resetZoneJoueur() {
|
public void resetZoneJoueur() {
|
||||||
this.getZoneJoueur().getChildren().setAll();
|
this.getZoneJoueur().getChildren().setAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
public HBox getPaneEquipement(){
|
public HBox getPaneEquipement() {
|
||||||
ScrollPane sp = (ScrollPane) this.zoneJoueur.getChildren().get(3);
|
ScrollPane sp = (ScrollPane) this.zoneJoueur.getChildren().get(3);
|
||||||
AnchorPane p = (AnchorPane) sp.getContent();
|
AnchorPane p = (AnchorPane) sp.getContent();
|
||||||
return (HBox) p.getChildren().get(0);
|
return (HBox) p.getChildren().get(0);
|
||||||
@ -152,16 +200,15 @@ public class JoueurIHM {
|
|||||||
|
|
||||||
public void retirerEquipement(CarteEquipement e) {
|
public void retirerEquipement(CarteEquipement e) {
|
||||||
HBox hb = getPaneEquipement();
|
HBox hb = getPaneEquipement();
|
||||||
for(Node n : hb.getChildren()) {
|
for (Node n : hb.getChildren()) {
|
||||||
if(n instanceof ImageViewEquipement) {
|
if (n instanceof ImageViewEquipement) {
|
||||||
ImageViewEquipement ive = (ImageViewEquipement) n;
|
ImageViewEquipement ive = (ImageViewEquipement) n;
|
||||||
if(ive.contains(e)) {
|
if (ive.contains(e)) {
|
||||||
hb.getChildren().remove(ive);
|
hb.getChildren().remove(ive);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getNom() {
|
public String getNom() {
|
||||||
|
@ -475,6 +475,11 @@ public class PlateauController implements Initializable {
|
|||||||
return RessourceLoader.toJavaFX(bi);
|
return RessourceLoader.toJavaFX(bi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Image getImageDosCarte(String s) {
|
||||||
|
BufferedImage bi = this.mapRessourcesDosCartes.get(s);
|
||||||
|
return RessourceLoader.toJavaFX(bi);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public void ajouterEquipement(Joueur j, CarteEquipement e) {
|
public void ajouterEquipement(Joueur j, CarteEquipement e) {
|
||||||
JoueurIHM jihm = getJoueurIHM(j);
|
JoueurIHM jihm = getJoueurIHM(j);
|
||||||
|
@ -41,5 +41,11 @@ public class Charles extends CartePersonnage{
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void utiliser() {
|
public void utiliser() {
|
||||||
|
|
||||||
|
/*
|
||||||
|
System.out.println("vie avant : " + this.getJoueur().getCartePersonnage().getPv());
|
||||||
|
this.getJoueur().setStat("HP", this.getJoueur().getStat("HP") - 2);
|
||||||
|
System.out.println("vie apres : " + this.getJoueur().getCartePersonnage().getPv());
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,16 +27,13 @@ public class Emi extends CartePersonnage{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void deplacer() {
|
public void deplacer() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void utiliser() {
|
public void utiliser() {
|
||||||
|
|
||||||
|
this.getJoueur().deplacer(this.getJoueur().getCarteLieu().getVoisin());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user