feat: affichage de la grille colorée et vérification de tt les contraintes
This commit is contained in:
@@ -5,9 +5,13 @@ import java.util.List;
|
||||
|
||||
public class Bloc {
|
||||
private final List<Case> cases;
|
||||
private final String couleur;
|
||||
private final int couleurIndex;
|
||||
|
||||
public Bloc() {
|
||||
public Bloc(String couleur, int couleurIndex) {
|
||||
this.cases = new ArrayList<>();
|
||||
this.couleur = couleur;
|
||||
this.couleurIndex = couleurIndex;
|
||||
}
|
||||
|
||||
public void ajouterCase(Case c) {
|
||||
@@ -23,23 +27,17 @@ public class Bloc {
|
||||
return false;
|
||||
}
|
||||
|
||||
// TO MOVE TO FUTUR CONSTRAINTS
|
||||
// /**
|
||||
// * Check if the bloc is valid
|
||||
// * A bloc is valid if it contains no duplicate symbols
|
||||
// *
|
||||
// * @return
|
||||
// */
|
||||
// public boolean isValid() {
|
||||
// for (int i = 0; i < cases.size(); i++) {
|
||||
// for (int j = i + 1; j < cases.size(); j++) {
|
||||
// if (cases.get(i).getSymbole().equals(cases.get(j).getSymbole())) {
|
||||
// return false;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// return true;
|
||||
// }
|
||||
public String getCouleur() {
|
||||
return couleur;
|
||||
}
|
||||
|
||||
public int getCouleurIndex() {
|
||||
return couleurIndex;
|
||||
}
|
||||
|
||||
public List<Case> getCases() {
|
||||
return cases;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
|
||||
@@ -42,6 +42,48 @@ public class Grille {
|
||||
return cases[ligne][colonne];
|
||||
}
|
||||
|
||||
private static final String[] QUATRE_COULEURS = {
|
||||
"\u001B[31m", // Rouge
|
||||
"\u001B[32m", // Vert
|
||||
"\u001B[34m", // Bleu
|
||||
"\u001B[33m" // Jaune
|
||||
};
|
||||
|
||||
private int getCouleurDisponible(int blocRow, int blocCol) {
|
||||
List<Integer> couleursUtilisees = new ArrayList<>();
|
||||
int blocSize = (int) Math.sqrt(taille);
|
||||
|
||||
// Parcourir les voisins (haut, bas, gauche, droite, et diagonaux)
|
||||
for (int dRow = -1; dRow <= 1; dRow++) {
|
||||
for (int dCol = -1; dCol <= 1; dCol++) {
|
||||
if (dRow == 0 && dCol == 0)
|
||||
continue; // Ignorer le bloc courant
|
||||
|
||||
int voisinRow = blocRow + dRow;
|
||||
int voisinCol = blocCol + dCol;
|
||||
|
||||
// Vérifier si le voisin est dans les limites
|
||||
if (voisinRow >= 0 && voisinRow < taille / blocSize &&
|
||||
voisinCol >= 0 && voisinCol < taille / blocSize) {
|
||||
int blockIndex = voisinRow * (taille / blocSize) + voisinCol;
|
||||
if (blockIndex < blocs.size()) {
|
||||
couleursUtilisees.add(blocs.get(blockIndex).getCouleurIndex());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Trouver une couleur non utilisée
|
||||
for (int c = 0; c < QUATRE_COULEURS.length; c++) {
|
||||
if (!couleursUtilisees.contains(c)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
|
||||
// Retourner une couleur par défaut (ne devrait pas arriver avec 4 couleurs)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Crée un bloc à partir des positions spécifiées
|
||||
*
|
||||
@@ -61,7 +103,12 @@ public class Grille {
|
||||
* @return
|
||||
*/
|
||||
public Bloc creerBloc(List<int[]> positions) {
|
||||
Bloc bloc = new Bloc();
|
||||
int i = positions.get(0)[0];
|
||||
int j = positions.get(0)[1];
|
||||
int blocSize = (int) Math.sqrt(taille);
|
||||
int couleurIndex = getCouleurDisponible(i / blocSize, j / blocSize);
|
||||
|
||||
Bloc bloc = new Bloc(QUATRE_COULEURS[couleurIndex], couleurIndex);
|
||||
for (int[] pos : positions) {
|
||||
bloc.ajouterCase(cases[pos[0]][pos[1]]);
|
||||
}
|
||||
@@ -75,15 +122,29 @@ public class Grille {
|
||||
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) {
|
||||
|
||||
// Create blocks in 3x3 pattern
|
||||
for (int blocRow = 0; blocRow < blocSize; blocRow++) {
|
||||
for (int blocCol = 0; blocCol < blocSize; blocCol++) {
|
||||
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 });
|
||||
|
||||
// Add all positions for current block
|
||||
for (int i = 0; i < blocSize; i++) {
|
||||
for (int j = 0; j < blocSize; j++) {
|
||||
positions.add(new int[] {
|
||||
blocRow * blocSize + i,
|
||||
blocCol * blocSize + j
|
||||
});
|
||||
}
|
||||
}
|
||||
creerBloc(positions);
|
||||
|
||||
int couleurIndex = getCouleurDisponible(blocRow, blocCol);
|
||||
Bloc bloc = new Bloc(QUATRE_COULEURS[couleurIndex], couleurIndex);
|
||||
|
||||
for (int[] pos : positions) {
|
||||
bloc.ajouterCase(cases[pos[0]][pos[1]]);
|
||||
}
|
||||
blocs.add(bloc);
|
||||
}
|
||||
}
|
||||
} catch (IllegalArgumentException e) {
|
||||
@@ -91,16 +152,6 @@ public class Grille {
|
||||
}
|
||||
}
|
||||
|
||||
// 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());
|
||||
@@ -203,15 +254,62 @@ public class Grille {
|
||||
return taille;
|
||||
}
|
||||
|
||||
private Bloc findBlocForCase(Case target) {
|
||||
for (Bloc bloc : blocs) {
|
||||
if (bloc.getCases().contains(target)) {
|
||||
return bloc;
|
||||
}
|
||||
}
|
||||
return null; // Ne devrait jamais arriver si la grille est bien construite
|
||||
}
|
||||
|
||||
/**
|
||||
* Vérifie si toutes les contraintes sont respectées
|
||||
* S'arrête dès qu'une contrainte n'est pas respectée
|
||||
* @param contraintes
|
||||
* @return
|
||||
*/
|
||||
public boolean verifierToutesContraintes(List<Contrainte> contraintes) {
|
||||
// Vérifier chaque case de la grille
|
||||
for (int i = 0; i < taille; i++) {
|
||||
for (int j = 0; j < taille; j++) {
|
||||
Case currentCase = cases[i][j];
|
||||
// Ne vérifier que les cases qui ont un symbole
|
||||
if (currentCase.getSymbole() != null) {
|
||||
// Vérifier toutes les contraintes pour cette case
|
||||
for (Contrainte contrainte : contraintes) {
|
||||
if (!contrainte.estRespectee(this, currentCase)) {
|
||||
Console.errorln("Contrainte non respectée à la position : ligne=" + i + ", colonne=" + j);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
for (int i = 0; i < taille; i++) {
|
||||
for (int j = 0; j < taille; j++) {
|
||||
sb.append(cases[i][j].toString()).append(" ");
|
||||
Case currentCase = cases[i][j];
|
||||
Bloc bloc = findBlocForCase(currentCase);
|
||||
|
||||
if (bloc != null) {
|
||||
sb.append(bloc.getCouleur()) // Couleur du bloc
|
||||
.append(currentCase.toString()) // Contenu de la case
|
||||
.append("\u001B[0m ") // Réinitialiser la couleur
|
||||
.append(" ");
|
||||
} else {
|
||||
sb.append(currentCase.toString()).append(" ");
|
||||
}
|
||||
}
|
||||
sb.append("\n");
|
||||
}
|
||||
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,6 +29,10 @@ public class Sudoku {
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean verifierToutesContraintes() {
|
||||
return grille.verifierToutesContraintes(contraintes);
|
||||
}
|
||||
|
||||
public Grille getGrille() {
|
||||
return grille;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package sudoku.core;
|
||||
|
||||
/**
|
||||
* Console class to print messages in different colors
|
||||
* Console classe pour afficher des messages en couleur dans la console
|
||||
*/
|
||||
public class Console {
|
||||
private static final String ANSI_RESET = "\u001B[0m";
|
||||
|
||||
@@ -2,22 +2,28 @@ package sudoku;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import sudoku.core.Console;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
public class AppTest {
|
||||
|
||||
/**
|
||||
* Test the creation of a Sudoku grid with a size of 16
|
||||
*/
|
||||
@Test
|
||||
public void testExample() {
|
||||
// Simulate user input
|
||||
String simulatedInput = "1\n1\n2\n3\n4\n5\n6\n7\n8\n9\n";
|
||||
// Simulate user input with proper line endings
|
||||
// First 1 is to select the int type of Symboles and after, Symboles are entered (1 to 16)
|
||||
String simulatedInput = "1\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n";
|
||||
System.setIn(new ByteArrayInputStream(simulatedInput.getBytes()));
|
||||
|
||||
// Create a new Sudoku
|
||||
Sudoku sudoku = new Sudoku(9);
|
||||
Sudoku sudoku = new Sudoku(16);
|
||||
sudoku.getGrille().askSetSymbolesPossibles();
|
||||
|
||||
// Verify the symbols
|
||||
@@ -30,14 +36,24 @@ public class AppTest {
|
||||
Symbole.of(6),
|
||||
Symbole.of(7),
|
||||
Symbole.of(8),
|
||||
Symbole.of(9)));
|
||||
Symbole.of(9),
|
||||
Symbole.of(10),
|
||||
Symbole.of(11),
|
||||
Symbole.of(12),
|
||||
Symbole.of(13),
|
||||
Symbole.of(14),
|
||||
Symbole.of(15),
|
||||
Symbole.of(16)));
|
||||
assertEquals(expectedSymbols, sudoku.getGrille().getSymbolesPossibles());
|
||||
|
||||
// Cleanup
|
||||
System.setIn(System.in);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testContraintes() {
|
||||
// Create a new Sudoku
|
||||
Sudoku sudoku = new Sudoku(9);
|
||||
Sudoku sudoku = new Sudoku(16);
|
||||
sudoku.getGrille().setSymbolesPossibles(new ArrayList<>(Arrays.asList(
|
||||
Symbole.of(1),
|
||||
Symbole.of(2),
|
||||
@@ -47,12 +63,20 @@ public class AppTest {
|
||||
Symbole.of(6),
|
||||
Symbole.of(7),
|
||||
Symbole.of(8),
|
||||
Symbole.of(9))));
|
||||
Symbole.of(9),
|
||||
Symbole.of(10),
|
||||
Symbole.of(11),
|
||||
Symbole.of(11),
|
||||
Symbole.of(12),
|
||||
Symbole.of(13),
|
||||
Symbole.of(14),
|
||||
Symbole.of(15),
|
||||
Symbole.of(16))));
|
||||
|
||||
// Add constraints
|
||||
sudoku.ajouterContrainte(new ContrainteLigne());
|
||||
sudoku.ajouterContrainte(new ContrainteColonne());
|
||||
sudoku.ajouterContrainte(new ContrainteBloc());
|
||||
// sudoku.ajouterContrainte(new ContrainteBloc());
|
||||
|
||||
// Fill the grid with valid symbols
|
||||
sudoku.getGrille().setCase(0, 0, Symbole.of(1));
|
||||
@@ -64,6 +88,12 @@ public class AppTest {
|
||||
sudoku.getGrille().setCase(2, 0, Symbole.of(7));
|
||||
sudoku.getGrille().setCase(2, 1, Symbole.of(8));
|
||||
sudoku.getGrille().setCase(2, 2, Symbole.of(9));
|
||||
sudoku.getGrille().setCase(2, 8, Symbole.of(9));
|
||||
sudoku.getGrille().setCase(14, 2, Symbole.of(6));
|
||||
sudoku.getGrille().setCase(3, 3, Symbole.of(5));
|
||||
// sudoku.getGrille().setCase(2, 2, Symbole.of(13));
|
||||
// sudoku.getGrille().setCase(2, 2, Symbole.of(14));
|
||||
// sudoku.getGrille().setCase(2, 2, Symbole.of(15));
|
||||
|
||||
// Create square blocks
|
||||
sudoku.getGrille().creerBlocCarre();
|
||||
@@ -71,9 +101,15 @@ public class AppTest {
|
||||
System.out.println(sudoku.getGrille().toString());
|
||||
|
||||
// Verify that the constraints are respected
|
||||
assertTrue(sudoku.estValide(sudoku.getGrille().getCase(0, 0)));
|
||||
assertTrue(sudoku.estValide(sudoku.getGrille().getCase(1, 1)));
|
||||
assertTrue(sudoku.estValide(sudoku.getGrille().getCase(2, 2)));
|
||||
// assertTrue(sudoku.estValide(sudoku.getGrille().getCase(0, 0)));
|
||||
// assertTrue(sudoku.estValide(sudoku.getGrille().getCase(1, 1)));
|
||||
// assertTrue(sudoku.estValide(sudoku.getGrille().getCase(2, 2)));
|
||||
|
||||
if (sudoku.verifierToutesContraintes()) {
|
||||
Console.successln("Toutes les contraintes sont respectées !");
|
||||
} else {
|
||||
Console.errorln("Au moins une contrainte n'est pas respectée.");
|
||||
}
|
||||
|
||||
// Add a duplicate symbol in the same row
|
||||
// sudoku.getGrille().setCase(0, 3, Symbole.of(1));
|
||||
|
||||
Reference in New Issue
Block a user