SAE21_2021/Fond.java
2022-05-18 14:42:02 +02:00

48 lines
1.3 KiB
Java

import javax.swing.*;
import java.awt.*;
public class Fond extends JPanel{
public Fond(JFrame fenetre) {
// On créer un damier aux couleurs du démineur pour le fond
// Découpage de la fenêtre pour la mise en place du damier
Dimension damierSize = fenetre.getSize();
Dimension gridSize = new Dimension(damierSize.width/75, damierSize.height/75);
GridLayout layoutDamier = new GridLayout(gridSize.height, gridSize.width);
this.setLayout(layoutDamier);
this.setSize(damierSize);
// Création des couleurs
Color gray1 = new Color(70,70,70);
Color gray2 = new Color(60,60,60);
// Réalisation du damier et ajout d'éléments graphiques
for (int line=0; line<gridSize.height; line++){
for(int cases = 0; cases < gridSize.width; cases++){
if (line%2==0){
if (cases%2==0){
JPanel dark = new JPanel();
dark.setBackground(gray2);
this.add(dark);
} else {
JPanel light = new JPanel();
light.setBackground(gray1);
this.add(light);
}
} else {
if (cases%2==0){
JPanel light = new JPanel();
light.setBackground(gray1);
this.add(light);
} else {
JPanel dark = new JPanel();
dark.setBackground(gray2);
this.add(dark);
}
}
}
}
}
}