fixed a bug that added extra characters in the word obfuscated

This commit is contained in:
Mylloon 2021-10-04 10:17:33 +02:00
parent 2267eda745
commit 6e1d65a638

21
main.c
View file

@ -48,28 +48,31 @@ char * recuperationMot(const char file[]) { // pour récupérer un mot aléaotoi
return mot; return mot;
} }
int caractereSpecial(char mot) { // vérification que la lettre n'est pas un caractere special int caractereSpecial(char lettre) { // vérification que la lettre n'est pas un caractere special
if(mot == ' ') return 1; if(lettre == ' ') return 1;
if(mot == '\'') return 1; if(lettre == '\'') return 1;
if(mot == '-') return 1; if(lettre == '-') return 1;
return 0; return 0;
} }
char * obfuscation(char mot[], int lettresValidees[], int taille) { // pour afficher les trous dans le mot char * obfuscation(char mot[], int lettresValidees[], int taille) { // pour afficher les trous dans le mot
int tailleMot = taille * 2; int tailleMotCache = taille * sizeof(char) * 2;
char * motCache = malloc(tailleMot * sizeof(char)); char * motCache = malloc(tailleMotCache); // x2 pour l'espace entre les "_"
int j = 0; int j = 0;
for(int i = 0; i < taille; i++) { for(int i = 0; i < taille; i++) {
if(lettresValidees[i] != 1) { if(lettresValidees[i] != 1) { // pas trouvé
if(caractereSpecial(mot[i]) == 0) motCache[j] = '_'; else { if(caractereSpecial(mot[i]) == 0) motCache[j] = '_'; // si c'est pas un caractère spéciale
else { // si c'en est un
motCache[j] = mot[i]; motCache[j] = mot[i];
lettresValidees[i] = 1; lettresValidees[i] = 1;
} }
} else motCache[j] = mot[i]; } else motCache[j] = mot[i]; // trouvé
motCache[j + 1] = ' '; // on rajoute un espace entre les underscores motCache[j + 1] = ' '; // on rajoute un espace entre les underscores
j = j + 2; j = j + 2;
} }
for(int i = 0; i < longueurMot(motCache); i++)
if(i >= tailleMotCache) motCache[i] = 0;
return motCache; return motCache;
} }