affichage d'écran de victoire à la fin de la partie
This commit is contained in:
parent
25205bf874
commit
0558d127e4
@ -65,6 +65,7 @@ public class PlateauController implements Initializable {
|
||||
private ChoisirJoueur cj;
|
||||
private PiocherCarte pc;
|
||||
private LancerDes ld;
|
||||
private FinDePartieControlleur fdpc;
|
||||
|
||||
private static Map<Carte, BufferedImage> mapRessourcesCartes;
|
||||
private static Map<String, BufferedImage> mapRessourcesDosCartes;
|
||||
@ -631,4 +632,14 @@ public class PlateauController implements Initializable {
|
||||
jihm.getRevealButton().fire();
|
||||
}
|
||||
|
||||
public void afficherVictoire(List<Joueur> gagnants) throws IOException {
|
||||
final URL fxmlURL = PlateauController.class.getResource("/ihm/ressources/Fin_De_Partie.fxml");
|
||||
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", ParametreController.LaLangue);
|
||||
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
|
||||
Pane pane = fxmlLoader.load();
|
||||
this.fdpc = fxmlLoader.getController();
|
||||
fdpc.setListeWinner(gagnants);
|
||||
rootPane.getChildren().setAll(pane);
|
||||
}
|
||||
|
||||
}
|
@ -380,4 +380,14 @@ public class GestionnaireJeu {
|
||||
pc.utiliserCapacite(joueur);
|
||||
});
|
||||
}
|
||||
|
||||
public void afficherVictoire(List<Joueur> gagnants) {
|
||||
Platform.runLater(() -> {
|
||||
try {
|
||||
pc.afficherVictoire(gagnants);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -317,10 +317,16 @@ public class Plateau extends Thread {
|
||||
if (j.victoire()) {
|
||||
gagnants.add(j);
|
||||
System.out.println("CartePersonnage " + j.getCartePersonnage() + " Stats " + j.getStats());
|
||||
afficherVictoire(gagnants);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void afficherVictoire(List<Joueur> gagnants) {
|
||||
gj.afficherVictoire(gagnants);
|
||||
|
||||
}
|
||||
|
||||
private boolean checkrevealIAtour(JoueurVirtuel jIA) {
|
||||
ControleurIA cIA = new ControleurIA();
|
||||
switch (jIA.getCartePersonnage().getNom()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user