Test de la selection des joueurs
This commit is contained in:
parent
b319b27ab1
commit
0f0dc65d3e
@ -18,7 +18,7 @@ public class ChoisirJoueur implements Initializable{
|
||||
@FXML private HBox joueurHaut;
|
||||
@FXML private HBox joueurBas;
|
||||
@FXML private Label titre;
|
||||
/* @FXML private Button btn1;
|
||||
@FXML private Button btn1;
|
||||
@FXML private Button btn2;
|
||||
@FXML private Button btn3;
|
||||
@FXML private Button btn4;
|
||||
@ -26,16 +26,27 @@ public class ChoisirJoueur implements Initializable{
|
||||
@FXML private Button btn6;
|
||||
@FXML private Button btn7;
|
||||
@FXML private Button btn8;
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
private int joueurSelected;
|
||||
private List<Joueur> joueurs = Plateau.jselectionne;
|
||||
//private List<Joueur> joueurs = new ArrayList();
|
||||
|
||||
|
||||
@Override
|
||||
public void initialize(URL arg0, ResourceBundle arg1) {
|
||||
/* List<Button> buttons = new ArrayList();
|
||||
/* Joueur j1= new Joueur("Belthield");
|
||||
Joueur j2= new Joueur("test2");
|
||||
Joueur j3= new Joueur("test3");
|
||||
|
||||
|
||||
joueurs.add(j1);
|
||||
joueurs.add(j2);
|
||||
joueurs.add(j3);*/
|
||||
|
||||
List<Button> buttons = new ArrayList();
|
||||
buttons.add(btn1);
|
||||
buttons.add(btn2);
|
||||
buttons.add(btn3);
|
||||
@ -51,11 +62,11 @@ public class ChoisirJoueur implements Initializable{
|
||||
for(int i=0;i<joueurs.size();i++) {
|
||||
buttons.get(i).setText(joueurs.get(i).getNom());
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
|
||||
|
||||
for (int i=0; i<joueurHaut.getChildren().size(); i++) {
|
||||
/* for (int i=0; i<joueurHaut.getChildren().size(); i++) {
|
||||
int numJoueur = i;
|
||||
joueurHaut.getChildren().get(i).setOnMouseClicked(e -> {
|
||||
System.out.println("Vous avez choisi le joueur " + (numJoueur+1));
|
||||
@ -69,7 +80,7 @@ public class ChoisirJoueur implements Initializable{
|
||||
System.out.println("Vous avez choisi le joueur " + (numJoueur+1));
|
||||
this.joueurSelected = numJoueur;
|
||||
});
|
||||
}
|
||||
} */
|
||||
}
|
||||
|
||||
//GETTERS AND SETTERS
|
||||
|
@ -31,7 +31,16 @@ public class Plateau extends Thread{
|
||||
private GestionnaireJeu gj;
|
||||
private List<Joueur> joueurs;
|
||||
private List<CarteLieu> lieux;
|
||||
public static List<Joueur> jselectionne;
|
||||
public static ArrayList<Joueur> jselectionne=new ArrayList<Joueur>() {/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
{
|
||||
add(new Joueur("Joueur1"));
|
||||
add(new Joueur("Joueur2"));
|
||||
add(new Joueur("Joueur3"));}};
|
||||
|
||||
|
||||
|
||||
public static final String NB_HUNTERS = "nb_hunters";
|
||||
|
Loading…
x
Reference in New Issue
Block a user