From e5a28a1a4d4db43916441fb0d70dbf10ed392a9f Mon Sep 17 00:00:00 2001 From: Chiara Date: Tue, 5 May 2020 14:49:38 +0200 Subject: [PATCH] =?UTF-8?q?cr=C3=A9ation=20classe=20pour=20choix=20joueur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ihm/controller/ChoisirJoueur.java | 67 +++++++++++++++ ...aquer.fxml => Jouer_tour(3a)attaquer.fxml} | 0 src/ihm/ressources/choisirJoueur.fxml | 85 +++++++++++++++++++ 3 files changed, 152 insertions(+) create mode 100644 src/ihm/controller/ChoisirJoueur.java rename src/ihm/ressources/{Jouer_tour(3)attaquer.fxml => Jouer_tour(3a)attaquer.fxml} (100%) create mode 100644 src/ihm/ressources/choisirJoueur.fxml diff --git a/src/ihm/controller/ChoisirJoueur.java b/src/ihm/controller/ChoisirJoueur.java new file mode 100644 index 0000000..4d2e971 --- /dev/null +++ b/src/ihm/controller/ChoisirJoueur.java @@ -0,0 +1,67 @@ +package ihm.controller; + +import java.net.URL; +import java.util.ResourceBundle; + +import javafx.fxml.FXML; +import javafx.fxml.Initializable; +import javafx.scene.control.Label; +import javafx.scene.layout.HBox; + +public class ChoisirJoueur implements Initializable{ + @FXML private HBox joueurHaut; + @FXML private HBox joueurBas; + @FXML private Label titre; + + private int joueurSelected; + + @Override + public void initialize(URL arg0, ResourceBundle arg1) { + for (int i=0; i { + this.joueurSelected = numJoueur; + }); + } + + for (int i=0; i { + this.joueurSelected = numJoueur; + }); + } + } + + //GETTERS AND SETTERS + public HBox getJoueurHaut() { + return joueurHaut; + } + + public void setJoueurHaut(HBox joueurHaut) { + this.joueurHaut = joueurHaut; + } + + public HBox getJoueurBas() { + return joueurBas; + } + + public void setJoueurBas(HBox joueurBas) { + this.joueurBas = joueurBas; + } + + public Label getTitre() { + return titre; + } + + public void setTitre(Label titre) { + this.titre = titre; + } + + public int getJoueurSelected() { + return joueurSelected; + } + + public void setJoueurSelected(int joueurSelected) { + this.joueurSelected = joueurSelected; + } +} diff --git a/src/ihm/ressources/Jouer_tour(3)attaquer.fxml b/src/ihm/ressources/Jouer_tour(3a)attaquer.fxml similarity index 100% rename from src/ihm/ressources/Jouer_tour(3)attaquer.fxml rename to src/ihm/ressources/Jouer_tour(3a)attaquer.fxml diff --git a/src/ihm/ressources/choisirJoueur.fxml b/src/ihm/ressources/choisirJoueur.fxml new file mode 100644 index 0000000..05f086a --- /dev/null +++ b/src/ihm/ressources/choisirJoueur.fxml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +