From f977a55c5fa98d270175f61ec0a450818b0283b5 Mon Sep 17 00:00:00 2001 From: Yessine-iut Date: Mon, 11 May 2020 15:19:17 +0200 Subject: [PATCH] Afficher choisir joueur --- src/ihm/controller/PlateauController.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/ihm/controller/PlateauController.java b/src/ihm/controller/PlateauController.java index fe1e80d..1717d2e 100644 --- a/src/ihm/controller/PlateauController.java +++ b/src/ihm/controller/PlateauController.java @@ -369,6 +369,17 @@ public class PlateauController implements Initializable { } + public void afficherChoisirJoueur(Joueur j) throws IOException { + final URL fxmlURL = getClass().getResource("/ihm/ressources/choixJoueurAttq.fxml"); + + final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE); + final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle); + Pane root = (Pane)fxmlLoader.load(); + this.cj = fxmlLoader.getController(); + + JoueurIHM jihm = getJoueurIHM(j); + jihm.setZoneJoueur(root); + } public CarteEquipement getChoixEquipementVole(Joueur joueur) { JoueurIHM jihm = getJoueurIHM(joueur);