nom et faction inconnu au début du jeux

This commit is contained in:
Chiara 2020-04-20 16:31:59 +02:00
parent 7e59fc9c60
commit d2345b19af
2 changed files with 25 additions and 18 deletions

View File

@ -12,6 +12,7 @@ import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.control.Button; import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.Pane; import javafx.scene.layout.Pane;
import javafx.scene.layout.VBox; import javafx.scene.layout.VBox;
import javafx.scene.layout.HBox; import javafx.scene.layout.HBox;
@ -19,9 +20,12 @@ import main.Joueur;
public class PlateauController implements Initializable { public class PlateauController implements Initializable {
private List<Joueur> listJoueur = new ArrayList<Joueur>();
private List<VBox> vboxJoueur = new ArrayList<VBox>(); private List<VBox> vboxJoueur = new ArrayList<VBox>();
private List<Button> btnRevelation = new ArrayList<Button>(); private List<Button> btnRevelation = new ArrayList<Button>();
private List<Button> btnCartePerso = new ArrayList<Button>(); private List<Button> btnCartePerso = new ArrayList<Button>();
private List<Label> nomPerso = new ArrayList<Label>();
private List<Label> factionPerso = new ArrayList<Label>();
@FXML private VBox joueur1; @FXML private VBox joueur1;
@FXML private VBox joueur2; @FXML private VBox joueur2;
@ -40,7 +44,10 @@ public class PlateauController implements Initializable {
*/ */
@Override @Override
public void initialize(URL arg0, ResourceBundle arg1) { public void initialize(URL arg0, ResourceBundle arg1) {
//initialisation des joueurs // initialisation des joueurs
attribuerPerso(listJoueur);
//initialisation des attributs des joueurs
this.vboxJoueur.add(joueur1); this.vboxJoueur.add(joueur1);
this.vboxJoueur.add(joueur2); this.vboxJoueur.add(joueur2);
this.vboxJoueur.add(joueur3); this.vboxJoueur.add(joueur3);
@ -50,31 +57,27 @@ public class PlateauController implements Initializable {
this.vboxJoueur.add(joueur7); this.vboxJoueur.add(joueur7);
this.vboxJoueur.add(joueur8); this.vboxJoueur.add(joueur8);
for (VBox vbox : vboxJoueur) { for (VBox vbox : vboxJoueur) {
nomPerso.add((Label) vbox.getChildren().get(1));
factionPerso.add((Label) vbox.getChildren().get(0));
HBox enfant = (HBox) vbox.getChildren().get(3); HBox enfant = (HBox) vbox.getChildren().get(3);
btnCartePerso.add((Button) enfant.getChildren().get(0)); btnCartePerso.add((Button) enfant.getChildren().get(0));
btnRevelation.add((Button) enfant.getChildren().get(1)); btnRevelation.add((Button) enfant.getChildren().get(1));
} }
//initilaisation des boutons se reveler //initilaisation des boutons se reveler
for (Button b : btnRevelation) { for (Button b : btnRevelation) {
b.setOnAction(e -> { b.setOnAction(e -> {try {seReveler(null);} catch (IOException e1) {e1.printStackTrace();}});
try {
seReveler(null);
} catch (IOException e1) {
e1.printStackTrace();
} }
});
}
//initialisation des bouton carte personnage //initialisation des bouton carte personnage
for (Button b : btnCartePerso) { for (Button b : btnCartePerso) {
b.setOnAction(e -> { b.setOnAction(e -> {try {consulterSaCarte(null);} catch (IOException e1) {e1.printStackTrace();}});
try {
consulterSaCarte(null);
} catch (IOException e1) {
e1.printStackTrace();
} }
}); //initialisation nom personnage
for (Label l : nomPerso) {
l.setText("???");
}
//initialisation nom personnage
for (Label l : factionPerso) {
l.setText("???");
} }
} }
@ -103,4 +106,8 @@ public class PlateauController implements Initializable {
PopUp popup = new PopUp(pane, "Consulter sa carte"); PopUp popup = new PopUp(pane, "Consulter sa carte");
popup.display(); popup.display();
} }
public void attribuerPerso(List<Joueur> lj) {
}
} }

View File

@ -419,7 +419,7 @@
<HBox prefHeight="58.0" prefWidth="655.0"> <HBox prefHeight="58.0" prefWidth="655.0">
<children> <children>
<HBox prefHeight="100.0" prefWidth="0.0" /> <HBox prefHeight="100.0" prefWidth="0.0" />
<HBox alignment="CENTER" prefHeight="64.0" prefWidth="40.0" styleClass="barreDeVie" stylesheets="@style/plateau.css"> <HBox alignment="CENTER" prefHeight="64.0" prefWidth="50.0" styleClass="barreDeVie" stylesheets="@style/plateau.css">
<children> <children>
<VBox prefHeight="87.0" prefWidth="2.0"> <VBox prefHeight="87.0" prefWidth="2.0">
<children> <children>