Merge branch 'development' of https://github.com/PTE-SH/ShadowHunterGame into development
This commit is contained in:
commit
bdd1311851
@ -1,50 +1,111 @@
|
|||||||
package ihm.controller;
|
package ihm.controller;
|
||||||
|
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.ResourceBundle;
|
import java.util.ResourceBundle;
|
||||||
|
|
||||||
|
import ihm.EffetSonore;
|
||||||
import javafx.fxml.FXML;
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.fxml.FXMLLoader;
|
||||||
import javafx.fxml.Initializable;
|
import javafx.fxml.Initializable;
|
||||||
|
import javafx.geometry.Pos;
|
||||||
|
import javafx.scene.Node;
|
||||||
|
import javafx.scene.Scene;
|
||||||
import javafx.scene.control.Label;
|
import javafx.scene.control.Label;
|
||||||
|
import javafx.scene.input.MouseEvent;
|
||||||
|
import javafx.scene.layout.AnchorPane;
|
||||||
|
import javafx.scene.layout.HBox;
|
||||||
import javafx.scene.layout.Pane;
|
import javafx.scene.layout.Pane;
|
||||||
|
import javafx.scene.layout.VBox;
|
||||||
|
import javafx.scene.text.Font;
|
||||||
|
import javafx.stage.Stage;
|
||||||
import main.Joueur;
|
import main.Joueur;
|
||||||
|
|
||||||
public class FinDePartieControlleur implements Initializable {
|
public class FinDePartieControlleur implements Initializable {
|
||||||
|
|
||||||
@FXML private Pane rootPane;
|
@FXML private Pane rootPane;
|
||||||
@FXML private Label labelWinner;
|
@FXML private Label labelWinner;
|
||||||
|
@FXML private VBox vbListeWinner;
|
||||||
|
|
||||||
public static List<Joueur> listeWinner = new ArrayList<Joueur>();
|
public static List<Joueur> listeWinner = new ArrayList<Joueur>();
|
||||||
|
//public static List<Image> listeImageCarte = new ArrayList<Image>();
|
||||||
|
|
||||||
/* Pour faire des tests
|
|
||||||
private Joueur j1 = new Joueur("j1");
|
/*
|
||||||
private Joueur j2 = new Joueur("j2");
|
//initialise pour faire des test (a supprimer)
|
||||||
private Joueur j3 = new Joueur("j3");
|
private Joueur j1 = new Joueur("Joueur1");
|
||||||
|
private Joueur j2 = new Joueur("Joueur2");
|
||||||
|
private Joueur j3 = new Joueur("Joueur3");
|
||||||
|
private Joueur j4 = new Joueur("Joueur4");
|
||||||
|
private Joueur j5 = new Joueur("Joueur5");
|
||||||
|
private Joueur j6 = new Joueur("Joueur6");
|
||||||
*/
|
*/
|
||||||
String names;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize(URL arg0, ResourceBundle arg1) {
|
public void initialize(URL arg0, ResourceBundle arg1) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
//initialise pour faire des test (a supprimer)
|
||||||
listeWinner.add(j1);
|
listeWinner.add(j1);
|
||||||
listeWinner.add(j2);
|
listeWinner.add(j2);
|
||||||
listeWinner.add(j3);
|
listeWinner.add(j3);
|
||||||
|
listeWinner.add(j4);
|
||||||
|
listeWinner.add(j5);
|
||||||
|
listeWinner.add(j6);
|
||||||
|
|
||||||
|
|
||||||
|
listeImageCarte.add(PlateauController.getImageDosCarte(RessourceLoader.DOS_LUMIERE));
|
||||||
|
listeImageCarte.add(PlateauController.getImageDosCarte(RessourceLoader.CARTES_TENEBRE));
|
||||||
|
listeImageCarte.add(PlateauController.getImageDosCarte(RessourceLoader.DOS_VISION));
|
||||||
*/
|
*/
|
||||||
|
|
||||||
for (Joueur winner : listeWinner) {
|
|
||||||
if(names != null) {
|
for(int i = 0 ; i<listeWinner.size(); i++) {
|
||||||
names = names +"\n" + winner.getNom();
|
|
||||||
}
|
HBox JVainqueur = new HBox();
|
||||||
else {
|
JVainqueur.setAlignment(Pos.CENTER);
|
||||||
names = winner.getNom();
|
|
||||||
|
/*
|
||||||
|
//pour mettre une image de la carte perso du joueur :
|
||||||
|
ImageView ivJoueur = new ImageView();
|
||||||
|
Image im = listeImageCarte.get(i);
|
||||||
|
ivJoueur.setImage(im);
|
||||||
|
JVainqueur.getChildren().add(ivJoueur);
|
||||||
|
*/
|
||||||
|
Label nomJoueurGagant = new Label();
|
||||||
|
nomJoueurGagant.setText(listeWinner.get(i).getNom() + "qui était "+ listeWinner.get(i).getCartePersonnage().getNom() + " ("+listeWinner.get(i).getCartePersonnage().getEquipe()+ ")");
|
||||||
|
nomJoueurGagant.setFont(new Font("Arial", 36));
|
||||||
|
nomJoueurGagant.setStyle("-fx-text-fill: white");
|
||||||
|
JVainqueur.getChildren().add(nomJoueurGagant);
|
||||||
|
|
||||||
|
vbListeWinner.getChildren().add(JVainqueur);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vbListeWinner.setSpacing(30);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public void retourMenu(MouseEvent mouseEvent) throws IOException {
|
||||||
|
|
||||||
|
InputStream fileSound1 = getClass().getResourceAsStream("/ihm/ressources/musique/BEEP1.wav");
|
||||||
|
|
||||||
|
EffetSonore.playSoundEffect(fileSound1);
|
||||||
|
System.out.println("Retour au Menu");
|
||||||
|
final URL fxmlURL = getClass().getResource("/ihm/ressources/Menu.fxml");
|
||||||
|
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", ParametreController.LaLangue);
|
||||||
|
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
|
||||||
|
AnchorPane pane = fxmlLoader.load();
|
||||||
|
Scene scene = new Scene(pane);
|
||||||
|
Stage appStage = (Stage) ((Node) mouseEvent.getSource()).getScene().getWindow();
|
||||||
|
appStage.setScene(scene);
|
||||||
|
appStage.show();
|
||||||
|
|
||||||
labelWinner.setText(names);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Joueur> getListeWinner() {
|
public List<Joueur> getListeWinner() {
|
||||||
@ -55,5 +116,18 @@ public class FinDePartieControlleur implements Initializable {
|
|||||||
FinDePartieControlleur.listeWinner = listeWinner;
|
FinDePartieControlleur.listeWinner = listeWinner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
public static List<Image> getListeImageCarte() {
|
||||||
|
return listeImageCarte;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setListeImageCarte(List<Image> listeImageCarte) {
|
||||||
|
FinDePartieControlleur.listeImageCarte = listeImageCarte;
|
||||||
|
}
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -410,7 +410,7 @@ public class PlateauController implements Initializable {
|
|||||||
jihm.setZoneJoueur(root);
|
jihm.setZoneJoueur(root);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void afficherFinDePartie(List<Joueur> listeJoueursGagnants) throws IOException {
|
public void afficherFinDePartie(List<Joueur> listeJoueursGagnants /*, List<Image> listeImagesGagnant*/) throws IOException {
|
||||||
|
|
||||||
final URL fxmlURL = getClass().getResource("/ihm/ressources/Fin_De_Partie.fxml");
|
final URL fxmlURL = getClass().getResource("/ihm/ressources/Fin_De_Partie.fxml");
|
||||||
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE);
|
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE);
|
||||||
@ -418,6 +418,7 @@ public class PlateauController implements Initializable {
|
|||||||
Pane root = (Pane)fxmlLoader.load();
|
Pane root = (Pane)fxmlLoader.load();
|
||||||
|
|
||||||
FinDePartieControlleur.listeWinner = listeJoueursGagnants;
|
FinDePartieControlleur.listeWinner = listeJoueursGagnants;
|
||||||
|
//FinDePartieControlleur.listeImageCarte = listeImagesGagnant;
|
||||||
}
|
}
|
||||||
|
|
||||||
public CarteEquipement getChoixEquipementVole(Joueur joueur) {
|
public CarteEquipement getChoixEquipementVole(Joueur joueur) {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<?import javafx.geometry.Insets?>
|
<?import javafx.geometry.Insets?>
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
<?import javafx.scene.control.Label?>
|
<?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?>
|
||||||
@ -23,17 +24,18 @@
|
|||||||
<Font size="36.0" />
|
<Font size="36.0" />
|
||||||
</font>
|
</font>
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="25.0" />
|
<Insets bottom="50.0" top="25.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
</Label>
|
||||||
<Label fx:id="labelWinner" alignment="CENTER" contentDisplay="CENTER" styleClass="titre" text="(nom des gagnants)" textAlignment="CENTER">
|
<VBox fx:id="vbListeWinner" alignment="CENTER" prefHeight="221.0" prefWidth="758.0" />
|
||||||
|
<Button mnemonicParsing="false" onMouseClicked="#retourMenu" prefHeight="47.0" prefWidth="108.0" styleClass="bouton" text="Menu">
|
||||||
<font>
|
<font>
|
||||||
<Font size="36.0" />
|
<Font size="18.0" />
|
||||||
</font>
|
</font>
|
||||||
<padding>
|
<VBox.margin>
|
||||||
<Insets top="40.0" />
|
<Insets top="50.0" />
|
||||||
</padding>
|
</VBox.margin>
|
||||||
</Label>
|
</Button>
|
||||||
</children>
|
</children>
|
||||||
</VBox>
|
</VBox>
|
||||||
</children>
|
</children>
|
||||||
|
@ -36,6 +36,7 @@ public class Allie extends Unique{
|
|||||||
Condition winCondition = new ConditionMultiple(conditions);
|
Condition winCondition = new ConditionMultiple(conditions);
|
||||||
|
|
||||||
this.setCondition(winCondition);
|
this.setCondition(winCondition);
|
||||||
|
|
||||||
this.setEquipe(CartePersonnage.Equipe.NEUTRE);
|
this.setEquipe(CartePersonnage.Equipe.NEUTRE);
|
||||||
this.setJoueur(joueur);
|
this.setJoueur(joueur);
|
||||||
joueur.setCartePersonnage(this);
|
joueur.setCartePersonnage(this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user