96 lines
2.2 KiB
Java
96 lines
2.2 KiB
Java
import java.util.*;
|
|
import java.awt.event.*;
|
|
|
|
public class plateau{
|
|
public static void setAllBombe(int nombre, int ligne, int collonne, Case[][] tableau0){
|
|
Random rand = new Random();
|
|
for(int i=0; i<nombre; i++){
|
|
int x=rand.nextInt(ligne);
|
|
int y=rand.nextInt(collonne);
|
|
if(tableau0[x][y].getBombe()==false){
|
|
tableau0[x][y].setBombe();
|
|
}else{
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
public static void setAllVoisin(Case[][] tableau0){
|
|
for(int i=0; i<tableau0.length; i++){
|
|
for(int t=0; t<tableau0[i].length; t++){
|
|
int voisin=0;
|
|
if(i>0){
|
|
if(tableau0[i-1][t].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
if(t>0){
|
|
if(tableau0[i-1][t-1].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
}
|
|
if(t<tableau0[i].length-1){
|
|
if(tableau0[i-1][t+1].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
}
|
|
}
|
|
if(i<tableau0.length-1){
|
|
if(tableau0[i+1][t].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
if(t>0){
|
|
if(tableau0[i+1][t-1].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
}
|
|
if(t<tableau0[i].length-1){
|
|
if(tableau0[i+1][t+1].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
}
|
|
}
|
|
if(t>0){
|
|
if(tableau0[i][t-1].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
}
|
|
if(t<tableau0[i].length-1){
|
|
if(tableau0[i][t+1].getBombe()==true){
|
|
voisin++;
|
|
}
|
|
}
|
|
tableau0[i][t].setVoisin(voisin);
|
|
}
|
|
}
|
|
}
|
|
public static int etatDeVictoire(Case[][] tableau0){
|
|
int condition=0;
|
|
for(int i=0; i<tableau0.length; i++){
|
|
for(int t=0; t<tableau0[i].length; t++){
|
|
if(tableau0[i][t].getVisibiliter()==false && tableau0[i][t].getBombe()==false){
|
|
condition++;
|
|
}
|
|
if(tableau0[i][t].getVisibiliter()==true && tableau0[i][t].getBombe()==true){
|
|
return -1;
|
|
}
|
|
if(tableau0[i][t].getSuspition2()==false && tableau0[i][t].getBombe()==true){
|
|
condition++;
|
|
}
|
|
}
|
|
}
|
|
if(condition>0){
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
public static void perduGagner(Case[][] tableau0){
|
|
for(int i=0; i<tableau0.length; i++){
|
|
for(int t=0; t<tableau0[i].length; t++){
|
|
MouseListener[] tabListener;
|
|
tabListener=tableau0[i][t].getMouseListeners();
|
|
for(int longeur=0; longeur<=tabListener.length-1; longeur++){
|
|
tableau0[i][t].removeMouseListener(tabListener[longeur]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |