Gwendal in main : add test on futur constraints and enhance input symbol method (#1)

Co-authored-by: ROGER <gwendal.roger@etu.univ-lyon1.fr>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2025-01-04 15:56:23 +00:00
parent 0c03f07345
commit 22e88a899f
9 changed files with 366 additions and 147 deletions

View File

@@ -11,162 +11,184 @@ public class Grille {
private final Case[][] cases;
private final ArrayList<Bloc> blocs;
private ArrayList<Symbole> symbolesPossibles;
public Grille(int taille) {
this.taille = taille;
this.cases = new Case[taille][taille];
this.blocs = new ArrayList<>();
this.symbolesPossibles = new ArrayList<>();
// Initialiser les cases
for (int i = 0; i < taille; i++) {
for (int j = 0; j < taille; j++) {
cases[i][j] = new Case(i, j, null);
}
public Grille(int taille) {
this.taille = taille;
this.cases = new Case[taille][taille];
this.blocs = new ArrayList<>();
this.symbolesPossibles = new ArrayList<>();
// Initialiser les cases
for (int i = 0; i < taille; i++) {
for (int j = 0; j < taille; j++) {
cases[i][j] = new Case(i, j, null);
}
}
public void setCase(int ligne, int colonne, Symbole symbole) {
try {
if (symbole != null && !symbolesPossibles.contains(symbole)) {
throw new IllegalArgumentException("Symbole non autorisé : " + symbole);
}
cases[ligne][colonne].setSymbole(symbole);
} catch (Exception e) {
Console.errorln(e.getMessage());
}
public void setCase(int ligne, int colonne, Symbole symbole) {
try {
if (symbole != null && !symbolesPossibles.contains(symbole)) {
throw new IllegalArgumentException("Symbole non autorisé : " + symbole);
}
cases[ligne][colonne].setSymbole(symbole);
} catch (Exception e) {
Console.errorln(e.getMessage());
}
public Case getCase(int ligne, int colonne) {
return cases[ligne][colonne];
}
public Case getCase(int ligne, int colonne) {
return cases[ligne][colonne];
}
/**
* Crée un bloc à partir des positions spécifiées
*
* Exemple :
* sudoku.getGrille().createBloc(Arrays.asList(
* new int[] { 0, 0 },
* new int[] { 0, 1 },
* new int[] { 0, 2 },
* new int[] { 1, 0 },
* new int[] { 1, 1 },
* new int[] { 1, 2 },
* new int[] { 2, 0 },
* new int[] { 2, 1 },
* new int[] { 2, 2 }));
*
* @param positions
* @return
*/
public Bloc createBloc(List<int[]> positions) {
Bloc bloc = new Bloc();
for (int[] pos : positions) {
bloc.addCase(cases[pos[0]][pos[1]]);
}
/**
* Crée un bloc à partir des positions spécifiées
Exemple :
sudoku.getGrille().createBloc(Arrays.asList(
new int[] { 0, 0 },
new int[] { 0, 1 },
new int[] { 0, 2 },
new int[] { 1, 0 },
new int[] { 1, 1 },
new int[] { 1, 2 },
new int[] { 2, 0 },
new int[] { 2, 1 },
new int[] { 2, 2 }));
* @param positions
* @return
*/
public Bloc createBloc(List<int[]> positions) {
Bloc bloc = new Bloc();
for (int[] pos : positions) {
bloc.addCase(cases[pos[0]][pos[1]]);
blocs.add(bloc);
return bloc;
}
public void createSquareBlocs() {
try {
int blocSize = (int) Math.sqrt(taille);
if (blocSize * blocSize != taille) {
throw new IllegalArgumentException("La taille de la grille doit être un carré parfait.");
}
blocs.add(bloc);
return bloc;
}
public void createSquareBlocs() {
try {
int blocSize = (int) Math.sqrt(taille);
if (blocSize * blocSize != taille) {
throw new IllegalArgumentException("La taille de la grille doit être un carré parfait.");
}
for (int i = 0; i < taille; i += blocSize) {
for (int j = 0; j < taille; j += blocSize) {
List<int[]> positions = new ArrayList<>();
for (int k = 0; k < blocSize; k++) {
for (int l = 0; l < blocSize; l++) {
positions.add(new int[] { i + k, j + l });
}
for (int i = 0; i < taille; i += blocSize) {
for (int j = 0; j < taille; j += blocSize) {
List<int[]> positions = new ArrayList<>();
for (int k = 0; k < blocSize; k++) {
for (int l = 0; l < blocSize; l++) {
positions.add(new int[] { i + k, j + l });
}
createBloc(positions);
}
createBloc(positions);
}
} catch (IllegalArgumentException e) {
Console.errorln(e.getMessage());
}
} catch (IllegalArgumentException e) {
Console.errorln(e.getMessage());
}
// TO MOVE TO FUTUR CONSTRAINTS
// public boolean isValid() {
// for (Bloc bloc : blocs) {
// if (!bloc.isValid()) {
// return false;
// }
// }
// return true;
// }
public void printBlocs() {
for (Bloc bloc : blocs) {
System.out.println(bloc.toString());
}
}
// TO MOVE TO FUTUR CONSTRAINTS
// public boolean isValid() {
// for (Bloc bloc : blocs) {
// if (!bloc.isValid()) {
// return false;
// }
// }
// return true;
// }
public void printBlocs() {
for (Bloc bloc : blocs) {
System.out.println(bloc.toString());
}
public void askSetSymbolesPossibles() {
try (Scanner scanner = new Scanner(System.in)) {
System.out.println(("Choisissez le type de symboles :"));
System.out.println(("1. Nombres"));
System.out.println(("2. Caractères"));
System.out.println(("3. Texte/Emoji"));
int choix = 0;
try {
choix = Integer.parseInt(scanner.nextLine());
} catch (NumberFormatException e) {
Console.errorln("Choix invalide");
return;
}
public void askSetSymbolesPossibles() {
Scanner scanner = new Scanner(System.in);
try {
Console.infoln("Choisissez le type de symboles :");
Console.infoln("1. Nombres");
Console.infoln("2. Lettres");
Console.infoln("3. Texte/Emoji");
int choix = 0;
try {
choix = Integer.parseInt(scanner.nextLine());
if (choix < 1 || choix > 3) {
throw new NumberFormatException("Choix invalide");
}
for (int i = 0; i < taille; i++) {
System.out.println(("Entrez le symbole " + (i + 1) + "/" + taille + " :"));
String input = scanner.nextLine();
switch (choix) {
case 1: // Nombres
try {
symbolesPossibles.add(Symbole.of(Integer.parseInt(input)));
} catch (NumberFormatException e) {
Console.errorln("Veuillez entrer un nombre valide");
} catch (NumberFormatException e) {
Console.errorln("Choix invalide");
return;
}
for (int i = 0; i < taille; i++) {
System.out.println(("Entrez le symbole " + (i + 1) + "/" + taille + " :"));
String input = scanner.nextLine();
switch (choix) {
case 1: // Nombres
Symbole intTemp = Symbole.of(input);
if (intTemp.isInt()) {
if (symbolesPossibles.contains(intTemp)) {
Console.errorln("Ce symbole existe déjà, veuillez entrer un autre symbole");
i--;
}
break;
case 2: // Caractères
if (input.length() == 1) {
symbolesPossibles.add(Symbole.of(input.charAt(0)));
} else {
Console.errorln("Veuillez entrer un seul caractère");
i--;
symbolesPossibles.add(intTemp);
}
break;
case 3: // Texte/Emoji
if (!input.isEmpty()) {
symbolesPossibles.add(Symbole.of(input));
} else {
Console.errorln("Veuillez entrer un nombre valide");
i--;
}
break;
case 2: // Lettres
if (input.length() == 1 && Symbole.of(input.charAt(0)).isLetter()) {
Symbole charTemp = Symbole.of(input.charAt(0));
if (symbolesPossibles.contains(charTemp)) {
Console.errorln("Ce symbole existe déjà, veuillez entrer un autre symbole");
i--;
} else {
Console.errorln("Le symbole ne peut pas être vide");
i--;
symbolesPossibles.add(charTemp);
}
break;
default:
Console.errorln("Type non supporté");
return;
}
} else {
Console.errorln("Veuillez entrer une lettre valide");
i--;
}
break;
case 3: // Texte/Emoji
Symbole stringTemp = Symbole.of(input);
if (symbolesPossibles.contains(stringTemp)) {
Console.errorln("Ce symbole existe déjà, veuillez entrer un autre symbole");
i--;
} else {
symbolesPossibles.add(stringTemp);
}
break;
default:
Console.errorln("Type non supporté");
return;
}
}
} catch (Exception e) {
System.out.println("Une erreur est survenue : " + e.getMessage());
} finally {
scanner.close();
}
public List<Symbole> getSymbolesPossibles() {
return symbolesPossibles;
}
public void setSymbolesPossibles(ArrayList<Symbole> symbolesPossibles) {
this.symbolesPossibles = symbolesPossibles;
}
public List<Symbole> getSymbolesPossibles() {
return symbolesPossibles;
}
public void setSymbolesPossibles(ArrayList<Symbole> symbolesPossibles) {
this.symbolesPossibles = symbolesPossibles;
}
public void printSymbolesPossibles() {