ajout d'une musique
This commit is contained in:
commit
628e14095e
@ -12,7 +12,11 @@ public class Main extends Application{
|
|||||||
@Override
|
@Override
|
||||||
public void start(Stage primaryStage) throws Exception{
|
public void start(Stage primaryStage) throws Exception{
|
||||||
System.out.println("Lancement de l'application");
|
System.out.println("Lancement de l'application");
|
||||||
|
<<<<<<< HEAD
|
||||||
Pane root = FXMLLoader.load(getClass().getResource("ressources/Menu.fxml")); // "ressources/Jouer_tour(1)lancer_des.fxml"
|
Pane root = FXMLLoader.load(getClass().getResource("ressources/Menu.fxml")); // "ressources/Jouer_tour(1)lancer_des.fxml"
|
||||||
|
=======
|
||||||
|
Pane root = FXMLLoader.load(getClass().getResource("ressources/Menu.fxml"));
|
||||||
|
>>>>>>> 962e4e4abd757404ab08839e67817494b857931a
|
||||||
primaryStage.setTitle("Shadow Hunters");
|
primaryStage.setTitle("Shadow Hunters");
|
||||||
primaryStage.setScene(new Scene(root));
|
primaryStage.setScene(new Scene(root));
|
||||||
primaryStage.centerOnScreen();
|
primaryStage.centerOnScreen();
|
||||||
|
@ -41,16 +41,12 @@ public class PlateauController implements Initializable {
|
|||||||
@FXML private VBox joueur8;
|
@FXML private VBox joueur8;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* initialise les données du plateau
|
* initialise les donn<EFBFBD>es du plateau
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void initialize(URL arg0, ResourceBundle arg1) {
|
public void initialize(URL arg0, ResourceBundle arg1) {
|
||||||
//initialisation des attributs des joueurs
|
//initialisation des attributs des joueurs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
this.vboxJoueur.add(joueur1);
|
this.vboxJoueur.add(joueur1);
|
||||||
this.vboxJoueur.add(joueur2);
|
this.vboxJoueur.add(joueur2);
|
||||||
this.vboxJoueur.add(joueur3);
|
this.vboxJoueur.add(joueur3);
|
||||||
@ -125,7 +121,7 @@ public class PlateauController implements Initializable {
|
|||||||
/**
|
/**
|
||||||
* Permet de consulter sa carte perssonage en cas d'oublie
|
* Permet de consulter sa carte perssonage en cas d'oublie
|
||||||
*
|
*
|
||||||
* @param j : Le joueur sur lequel on a cliqué
|
* @param j : Le joueur sur lequel on a cliqu<EFBFBD>
|
||||||
*/
|
*/
|
||||||
public void consulterSaCarte(int numJoueur) throws IOException {
|
public void consulterSaCarte(int numJoueur) throws IOException {
|
||||||
System.out.println(listJoueur.get(numJoueur).getNom() + " consulte sa carte");
|
System.out.println(listJoueur.get(numJoueur).getNom() + " consulte sa carte");
|
||||||
|
@ -31,6 +31,7 @@ import main.Joueur;
|
|||||||
public class PlayersController implements Initializable{
|
public class PlayersController implements Initializable{
|
||||||
|
|
||||||
@FXML private AnchorPane rootPane;
|
@FXML private AnchorPane rootPane;
|
||||||
|
@FXML private Button btnCommencer;
|
||||||
|
|
||||||
@FXML private HBox hb1;
|
@FXML private HBox hb1;
|
||||||
@FXML private HBox hb2;
|
@FXML private HBox hb2;
|
||||||
@ -46,9 +47,11 @@ public class PlayersController implements Initializable{
|
|||||||
private List<TextField> txt = new ArrayList<TextField>();
|
private List<TextField> txt = new ArrayList<TextField>();
|
||||||
private List<CheckBox> ia = new ArrayList<CheckBox>();
|
private List<CheckBox> ia = new ArrayList<CheckBox>();
|
||||||
|
|
||||||
//private List<Joueur> joueurs = new ArrayList<Joueur>();
|
|
||||||
private HashMap<Integer, Couple> joueurs = new HashMap<Integer, Couple>();
|
private HashMap<Integer, Couple> joueurs = new HashMap<Integer, Couple>();
|
||||||
|
|
||||||
|
private int nbJoueursH = 0;
|
||||||
|
private int nbJoueursV = 0;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* recup<EFBFBD>re chaque bouton textField et Checkebox a partir des hbox
|
* recup<EFBFBD>re chaque bouton textField et Checkebox a partir des hbox
|
||||||
@ -80,14 +83,22 @@ public class PlayersController implements Initializable{
|
|||||||
tf.setEditable(false);
|
tf.setEditable(false);
|
||||||
tf.setStyle("-fx-background-color: silver;");
|
tf.setStyle("-fx-background-color: silver;");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int j=0;
|
||||||
|
for (CheckBox cb : ia) {
|
||||||
|
int compteur = j;
|
||||||
|
cb.setOnAction(e -> {mettreNomDefaut(compteur);});
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
|
||||||
|
btnCommencer.setStyle("-fx-background-color: gray; -fx-text-fill: black;");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public void commencerJeux(MouseEvent mouseEvent) throws IOException{
|
public void commencerJeux(MouseEvent mouseEvent) throws IOException{
|
||||||
|
if (nbJoueursH + nbJoueursV >= 4) {
|
||||||
//ajout des joueurs finalement selectionner
|
//ajout des joueurs finalement selectionner
|
||||||
int nbJoueursH = 0;
|
|
||||||
int nbJoueursV = 0;
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (HBox hb : ligne) {
|
for (HBox hb : ligne) {
|
||||||
TextField tf = (TextField) hb.getChildren().get(0);
|
TextField tf = (TextField) hb.getChildren().get(0);
|
||||||
@ -95,23 +106,13 @@ public class PlayersController implements Initializable{
|
|||||||
if (tf.isEditable()) {
|
if (tf.isEditable()) {
|
||||||
if(cb.isSelected()) {
|
if(cb.isSelected()) {
|
||||||
joueurs.put(i, new Couple(tf.getText(), true));
|
joueurs.put(i, new Couple(tf.getText(), true));
|
||||||
nbJoueursV++;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
joueurs.put(i, new Couple(tf.getText(), false));
|
joueurs.put(i, new Couple(tf.getText(), false));
|
||||||
nbJoueursH++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nbJoueursH + nbJoueursV < 4) {
|
|
||||||
Alert alert = new Alert(AlertType.WARNING, "Il faut au moins de 4 joueurs !");
|
|
||||||
alert.showAndWait();
|
|
||||||
}else {
|
|
||||||
System.out.println("Lancement du jeu...");
|
|
||||||
|
|
||||||
// Creer une configuration
|
// Creer une configuration
|
||||||
//View.applyConfiguration(new Configuration(joueurs, nbJoueursV, nbJoueursH));
|
//View.applyConfiguration(new Configuration(joueurs, nbJoueursV, nbJoueursH));
|
||||||
|
|
||||||
@ -147,6 +148,15 @@ public class PlayersController implements Initializable{
|
|||||||
txt.get(indice).setEditable(true);
|
txt.get(indice).setEditable(true);
|
||||||
txt.get(indice).setStyle("-fx-background-color: white;");
|
txt.get(indice).setStyle("-fx-background-color: white;");
|
||||||
plus.get(indice).setOnAction(e -> {enleverJoueur(indice);});
|
plus.get(indice).setOnAction(e -> {enleverJoueur(indice);});
|
||||||
|
|
||||||
|
if (ia.get(indice).isSelected()) {
|
||||||
|
nbJoueursV++;
|
||||||
|
}else
|
||||||
|
nbJoueursH++;
|
||||||
|
|
||||||
|
if (nbJoueursH + nbJoueursV >= 4) {
|
||||||
|
btnCommencer.setStyle("-fx-background-color: #1d1d1d; -fx-text-fill: #d8d8d8;");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -161,5 +171,22 @@ public class PlayersController implements Initializable{
|
|||||||
txt.get(indice).setText("");
|
txt.get(indice).setText("");
|
||||||
txt.get(indice).setStyle("-fx-background-color: silver;");
|
txt.get(indice).setStyle("-fx-background-color: silver;");
|
||||||
plus.get(indice).setOnAction(e -> {ajoutJoueur(indice);});
|
plus.get(indice).setOnAction(e -> {ajoutJoueur(indice);});
|
||||||
|
|
||||||
|
if (ia.get(indice).isSelected())
|
||||||
|
nbJoueursV--;
|
||||||
|
else
|
||||||
|
nbJoueursH--;
|
||||||
|
|
||||||
|
if (nbJoueursH + nbJoueursV < 4) {
|
||||||
|
btnCommencer.setStyle("-fx-background-color: gray; -fx-text-fill: black;");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void mettreNomDefaut(int indice) {
|
||||||
|
if (ia.get(indice).isSelected()) {
|
||||||
|
ajoutJoueur(indice);
|
||||||
|
txt.get(indice).setText("Joueur" + indice);
|
||||||
|
}else
|
||||||
|
enleverJoueur(indice);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,16 +2,11 @@ package main;
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import com.sun.tools.javac.Main;
|
|
||||||
|
|
||||||
import effet.Effet;
|
import effet.Effet;
|
||||||
import ihm.controller.PlateauController;
|
import ihm.controller.PlateauController;
|
||||||
import ihm.controller.PlayersController;
|
|
||||||
|
|
||||||
public class GestionnaireJeu {
|
public class GestionnaireJeu {
|
||||||
|
|
||||||
@ -31,15 +26,6 @@ public class GestionnaireJeu {
|
|||||||
return gj;
|
return gj;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
|
||||||
|
|
||||||
try {
|
|
||||||
Main.main(null);
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public Plateau getPlateau() {
|
public Plateau getPlateau() {
|
||||||
return plateau;
|
return plateau;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user