100 lines
3.4 KiB
Java
100 lines
3.4 KiB
Java
import java.awt.*;
|
|
import java.util.Random;
|
|
|
|
public class FenetreRndmGrille extends Fenetre{
|
|
public static final int RANDOM=1;
|
|
|
|
private int taille;
|
|
private int ValeurEntre;
|
|
private int ValeurSortie;
|
|
|
|
private int[] tabCouleur;
|
|
private boolean[][] grille;
|
|
private Cellules[][] grilleCellules;
|
|
|
|
private Modifications modif;
|
|
|
|
public FenetreRndmGrille(int taille){
|
|
super();
|
|
this.taille = taille;
|
|
this.grille = new boolean[this.taille][this.taille];
|
|
this.grilleCellules = new Cellules[this.taille][this.taille];
|
|
this.tabCouleur = new int[] {1, 1};
|
|
}
|
|
|
|
public void randomGrille(){
|
|
|
|
this.fenetre.setSize(600, 600);
|
|
this.fenetre.setLocation(300, 150);
|
|
|
|
GridLayout gestionnaire = new GridLayout(this.taille,this.taille);
|
|
this.fenetre.setLayout(gestionnaire);
|
|
|
|
PanneauModification interfacePanel = new PanneauModification(this.grille, this.taille, this.grilleCellules, this.fenetre);
|
|
interfacePanel.SetUp();
|
|
|
|
/* ======= Valeurs aléatoire pour l'entre et la sortie ========== */
|
|
|
|
Random rand = new Random();
|
|
ValeurEntre = rand.nextInt(this.taille*this.taille);
|
|
ValeurSortie = rand.nextInt(this.taille*this.taille);
|
|
|
|
if(ValeurEntre == ValeurSortie){
|
|
while(ValeurEntre == ValeurSortie){
|
|
ValeurSortie = rand.nextInt(this.taille*this.taille);
|
|
}
|
|
}
|
|
|
|
int compteur=0;
|
|
|
|
for(int i=0; i<taille; i++){
|
|
for(int j=0; j<taille; j++){
|
|
int nombreAleatoire = rand.nextInt(2); // génère un nombre entre 0 et 2
|
|
|
|
if(nombreAleatoire == 0){
|
|
grille[i][j] = Cellules.LIBRE; //true
|
|
} else {
|
|
grille[i][j] = Cellules.OCCUPE; //false
|
|
}
|
|
|
|
this.modif = new Modifications(interfacePanel, grille,this.tabCouleur);
|
|
|
|
if(compteur == ValeurEntre)
|
|
{
|
|
Cellules cellules = new Cellules(i,j, Cellules.ENTREE);
|
|
this.fenetre.add(cellules);
|
|
cellules.addMouseListener(modif);
|
|
grilleCellules[i][j] = cellules;
|
|
grille[i][j] = Cellules.LIBRE;
|
|
}
|
|
else if(compteur == ValeurSortie)
|
|
{
|
|
Cellules cellules = new Cellules(i, j, Cellules.SORTIE);
|
|
this.fenetre.add(cellules);
|
|
cellules.addMouseListener(modif);
|
|
grilleCellules[i][j] = cellules;
|
|
grille[i][j] = Cellules.LIBRE;
|
|
}
|
|
else if(grille[i][j] == Cellules.LIBRE)
|
|
{
|
|
Cellules cellules = new Cellules(i, j, Cellules.COULOIR);
|
|
this.fenetre.add(cellules);
|
|
cellules.addMouseListener(modif);
|
|
grilleCellules[i][j] = cellules;
|
|
}
|
|
else
|
|
{
|
|
Cellules cellules = new Cellules(i, j, Cellules.MUR);
|
|
this.fenetre.add(cellules);
|
|
cellules.addMouseListener(modif);
|
|
grilleCellules[i][j] = cellules;
|
|
}
|
|
|
|
this.tabCouleur = modif.getGateState();
|
|
compteur++;
|
|
}
|
|
}
|
|
this.fenetre.setVisible(true);
|
|
}
|
|
}
|