Changements IHM
This commit is contained in:
parent
f1a46ada87
commit
fc94ebc99f
@ -17,6 +17,7 @@ public abstract class CarteEquipement extends CartePiochable{
|
||||
super(t, effet);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void utiliser(Joueur j) {
|
||||
if(!j.getEquipements().contains(this)) {
|
||||
j.ajouterEquipement(this);
|
||||
|
@ -46,10 +46,13 @@ public class MenuController implements Initializable{
|
||||
AnchorPane pane = fxmlLoader.load();
|
||||
Scene scene = new Scene(pane);
|
||||
Stage appStage = (Stage) ((Node) mouseEvent.getSource()).getScene().getWindow();
|
||||
|
||||
double width = appStage.getWidth();
|
||||
double height = appStage.getHeight();
|
||||
double X = appStage.getX();
|
||||
double Y = appStage.getY();
|
||||
|
||||
appStage.setScene(scene);
|
||||
appStage.show();
|
||||
|
||||
|
||||
}
|
||||
|
||||
@FXML
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
<AnchorPane fx:id="rootPane" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.PlayersController">
|
||||
<children>
|
||||
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="1280.0" styleClass="background" stylesheets="@style/menu.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||
<BorderPane styleClass="background" stylesheets="@style/menu.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||
<left>
|
||||
<VBox alignment="CENTER" prefHeight="688.0" prefWidth="240.0" BorderPane.alignment="CENTER">
|
||||
<children>
|
||||
@ -164,7 +164,7 @@
|
||||
<Insets top="20.0" />
|
||||
</VBox.margin>
|
||||
</Button>
|
||||
<Button layoutX="283.0" layoutY="379.0" mnemonicParsing="false" onMouseClicked="#retour" prefHeight="55.0" prefWidth="247.0" styleClass="bouton" stylesheets="@style/menu.css" text="retour">
|
||||
<Button layoutX="283.0" layoutY="379.0" mnemonicParsing="false" onMouseClicked="#retour" prefHeight="55.0" prefWidth="247.0" styleClass="bouton" stylesheets="@style/menu.css" text="Retour">
|
||||
<font>
|
||||
<Font size="24.0" />
|
||||
</font>
|
||||
|
@ -46,11 +46,6 @@ public class GestionnaireJeu {
|
||||
plateau.start();
|
||||
}
|
||||
|
||||
public Joueur choisirParmisListe(Joueur joueur, List<Joueur> joueurs) {
|
||||
return joueurs.get(0);
|
||||
|
||||
}
|
||||
|
||||
public Effet choisirEffet(Joueur joueur, Effet[] effets) {
|
||||
return effets[0];
|
||||
}
|
||||
|
@ -254,6 +254,10 @@ public class Joueur {
|
||||
return this.plateau.choisirAdjacents(this);
|
||||
}
|
||||
|
||||
public Joueur choisiParmisTous() {
|
||||
return this.plateau.choisirParmisTous(this);
|
||||
}
|
||||
|
||||
public void ajouterEquipementIHM(CarteEquipement e) {
|
||||
this.plateau.ajouterEquipementIHM(this,e);
|
||||
|
||||
@ -264,12 +268,6 @@ public class Joueur {
|
||||
|
||||
}
|
||||
|
||||
public Joueur choisiParmisTous() {
|
||||
return this.plateau.choisirParmisTous(this);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -441,8 +441,7 @@ public class Plateau extends Thread{
|
||||
joueurs.remove(joueur);
|
||||
joueurs.addAll(cl.getJoueursAdjacents());
|
||||
|
||||
return gj.choisirParmisListe(joueur, joueurs);
|
||||
|
||||
return (Joueur) gj.choisir(joueur, joueurs, Joueur.class);
|
||||
}
|
||||
|
||||
public Effet choisirEffet(Joueur joueur, Effet[] effets) {
|
||||
@ -451,7 +450,7 @@ public class Plateau extends Thread{
|
||||
|
||||
public Joueur choisirParmisTous(Joueur joueur) {
|
||||
List<Joueur> joueurs = this.getJoueurs();
|
||||
return gj.choisirParmisListe(joueur,joueurs);
|
||||
return (Joueur) gj.choisir(joueur, joueurs, Joueur.class);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user