2022-05-21 17:53:19 +02:00
|
|
|
import javax.swing.*;
|
|
|
|
import java.awt.*;
|
2022-05-21 18:41:24 +02:00
|
|
|
import java.awt.event.*;
|
2022-05-21 17:53:19 +02:00
|
|
|
|
|
|
|
public class Banniere extends JPanel {
|
|
|
|
// Définition du constructeur
|
|
|
|
public Banniere(int mines) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
// On défini un style à la bannière
|
|
|
|
this.setBackground( new Color(0, 236, 96));
|
2022-05-21 18:41:24 +02:00
|
|
|
|
2022-05-21 17:53:19 +02:00
|
|
|
// TODO : Bouton sauver et quitter
|
|
|
|
}
|
|
|
|
|
|
|
|
// Méthode pour afficher le nombre de mines restantes
|
|
|
|
public void setMinesLeft(int minesLeft){
|
|
|
|
this.removeAll();
|
|
|
|
this.add(new MineLeft(minesLeft,this.getSize()));
|
|
|
|
this.repaint();
|
2022-05-21 18:41:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Méthode pour indiquer au joueur sa Victoire
|
|
|
|
public void setVictoire(){
|
|
|
|
this.add(new Fin("Victoire !",this.getSize()));
|
|
|
|
this.repaint();
|
|
|
|
JButton menu = new JButton("Revenir au menu");
|
|
|
|
menu.addActionListener(new ActionListener(){
|
|
|
|
public void actionPerformed(ActionEvent e) {
|
|
|
|
new FrameMenu();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.add(menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Méthode pour indiquer au joueur sa Défaite
|
|
|
|
public void setDefaite(){
|
|
|
|
this.add(new Fin("Défaite !",this.getSize()));
|
|
|
|
this.repaint();
|
|
|
|
JButton menu = new JButton("Revenir au menu");
|
|
|
|
menu.addActionListener(new ActionListener(){
|
|
|
|
public void actionPerformed(ActionEvent e) {
|
|
|
|
new FrameMenu();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.add(menu);
|
2022-05-21 17:53:19 +02:00
|
|
|
}
|
|
|
|
}
|