Compare commits

...

18 Commits

Author SHA1 Message Date
1f4e333317 Actualiser Readme.md 2024-10-25 17:27:16 +02:00
2ee8e0bbf5 Supprimer a.out 2024-10-25 16:52:17 +02:00
6dabbf4aea Merge pull request 'HugoBG' (#3) from HugoBG into master
Reviewed-on: branco-g/TD3_DEV51_branco-g_nelet#3
2024-10-25 16:51:56 +02:00
967494d328 mis a jour 2024-10-25 16:19:50 +02:00
da54858009 Merge branch 'master' into HugoBG 2024-10-25 16:15:35 +02:00
245f56be9c faire la mr 2024-10-25 15:48:43 +02:00
f4de9cf8bd optimisation et commentaires 2024-10-25 15:45:38 +02:00
0ac6119bb3 main - 50 lignes 2024-10-25 15:39:23 +02:00
912354e062 réduire taille du main 2024-10-24 15:57:21 +02:00
d545e145a8 Actualiser Readme.md 2024-10-15 16:31:55 +02:00
0457b82c4a gitingore 2024-10-15 12:01:47 +02:00
e8d7984053 Actualiser Readme.md 2024-10-15 11:59:32 +02:00
7f42d5e060 Actualiser Readme.md 2024-10-15 11:58:55 +02:00
bf8b626de8 Ajouter Readme.md 2024-10-15 11:58:35 +02:00
d2fd7716ea Merge pull request 'branch_JL' (#1) from branch_JL into master
Reviewed-on: branco-g/TD3_DEV51_branco-g_nelet#1
2024-10-15 11:47:31 +02:00
75239aa50b premiere fonctionnalite 2024-10-15 11:34:40 +02:00
abd9623930 ajout score 2024-10-15 11:19:32 +02:00
8309e24cc7 chrono 2024-10-15 10:36:25 +02:00
3 changed files with 168 additions and 31 deletions

42
Readme.md Normal file
View File

@ -0,0 +1,42 @@
# Compte rendu TD3
Groupe composé de Hugo Branco Gomes et Jean-Luc Nelet
# 14/10/2024
### Exercice 3
### Revue de code
**Revue du code de Jean-Luc par Hugo**
Merge Request accepté, aucun problème détecté. Les conditions de l'ex3 ont bien été respectées.
**Revue du code de Hugo par Jean-Luc**
Merge Request refusé, le code compile mais ne retourne pas ce qui est demandé (lorsque qu'on trouve le résultat du pendu pour 2 mots ou plus, le jeu renvoie un message d'erreur)
### Exercice 4
### Profiler avec gprof
Nous n'avons pas trouvé l'utilité de gprof étant donné que le programme éxécuté est en tour par tour donc il n'y a pas de métrique mesurable telle que le temps, le nombre d'appel de fonctions etc. Il en est de même pour l'arbre d'appel du programme.
### Complexité cyclomatique des fonctions
* display_hangman : 7
* alarm_handler : 1
* calculate_score : 1
* apply_bonus : 2
* main : 9
# 25/10/2024
### Exercice 3
### Revue de code
**Revue du code de Hugo par Jean-Luc**
Merge Request accepté, aucun problème détecté. Confilts gérés lors du Merge.
### Exercice 4
### Complexité cyclomatique des fonctions
* display_hangman : 7
* alarm_handler : 1
* calculate_score : 2
* apply_bonus : 2
* choose_words : 6
* play_game : 8
* main : 3
### Qualité du code
Le code possède une complexité cyclomatique inférieure à 10 pour chaque fontion grâce à l'usage de fonction simple. De plus, chaque ligne importante est commentée, ainsi que chaque fontion.

157
pendu.c
View File

@ -2,27 +2,32 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
// Define constants for the maximum number of words and tries
#define MAX_WORDS 14
#define MAX_TRIES 6
// Array of words used in the game
const char *words[MAX_WORDS] = {
"programmation",
"ordinateur",
"langage",
"jeu",
"algorithmique",
"fontainebleau",
"koala",
"anticonstitutionnellement",
"code",
"canard",
"gyroscope",
"periclitation",
"susurrer",
"programmation",
"ordinateur",
"langage",
"jeu",
"algorithmique",
"fontainebleau",
"koala",
"anticonstitutionnellement",
"code",
"canard",
"gyroscope",
"periclitation",
"susurrer",
"eclesiastique"
};
// Function to display the hangman figure based on the number of tries
void display_hangman(int tries) {
switch (tries) {
case 0: printf(" ----\n | |\n |\n |\n |\n |\n--------\n"); break;
@ -34,49 +39,139 @@ void display_hangman(int tries) {
case 6: printf(" ----\n | |\n | O\n | /|\\\n | / \\\n |\n--------\n"); break;
}
}
// Fct qui fait sortir du prog après avoir passé 30sec
void alarm_handler(int sig) {
printf("\nTrop tard ! Vous avez dépassé les 30 secondes.\n");
exit(1);
}
int main() {
srand(time(NULL));
const char *word = words[rand() % MAX_WORDS];
int word_length = strlen(word);
char guessed[word_length];
int tries = 0;
int guessed_correctly = 0;
//FCT pour calculer le score en fonction du temps mis et des erreurs obtenus
int calculate_score(int mistakes, time_t start_time) {
time_t end_time = time(NULL);
int time_taken = (int)difftime(end_time, start_time);
int base_score = 1000 - (mistakes * 100) - time_taken;
return (base_score < 0) ? 0 : base_score;
}
for (int i = 0; i < word_length; i++) {
guessed[i] = '_';
//FCT pour ajouter un bonus si le joueur trouve en moins de 3 essais
void apply_bonus(int *score, int tries) {
if (tries <= 3) {
*score += 500;
}
}
// Function to randomly choose words and concatenate them to create a puzzle word
void choose_words(char *chosen_word, int max_length) {
int total_length = 0, used[MAX_WORDS] = {0}, word_index;
chosen_word[0] = '\0';
// Select words until the maximum word length is reached or exceeded
while (total_length < max_length) {
word_index = rand() % MAX_WORDS;
if (!used[word_index] && total_length + strlen(words[word_index]) + (total_length > 0 ? 1 : 0) <= max_length) {
if (total_length > 0) { strcat(chosen_word, " ");
total_length++;
}
strcat(chosen_word, words[word_index]);
total_length += strlen(words[word_index]);
used[word_index] = 1;
if (total_length == max_length)
break;
}
// Check if all words that could fit are used
int all_used = 1;
for (int i = 0; i < MAX_WORDS; i++) {
if (!used[i] && total_length + strlen(words[i]) + 1 <= max_length) { all_used = 0;
break; }
}
if (all_used)
break;
}
}
// Function to play the hangman game
void play_game(const char *chosen_word, int word_length, int letters_to_guess) {
char guessed[word_length + 1];
int tries = 0, guessed_correctly = 0, score = 0, mistakes = 0;
// Initialize guessed word display with underscores
for (int i = 0; i < word_length; i++)
guessed[i] = (chosen_word[i] == ' ') ? ' ' : '_';
guessed[word_length] = '\0';
while (tries < MAX_TRIES && guessed_correctly < word_length) {
signal(SIGALRM, alarm_handler);
time_t start_time = time(NULL); // Début du chronomètre pour le score
// Main game loop, stops if max tries are reached or the word is guessed
while (tries < MAX_TRIES && guessed_correctly < letters_to_guess) {
printf("\nMot à deviner : %s\n", guessed);
display_hangman(tries);
// Get a letter guess from the player
char guess;
alarm(30); //début du compteur des 30 sec a chaque tour
printf("Entrez une lettre : ");
scanf(" %c", &guess);
int found = 0;
alarm(0); //fin du compteur et sortie du programme via le signal
int found = 0, already_revealed = 0;
// Check if the letter is in the word and update guessed word display
for (int i = 0; i < word_length; i++) {
if (word[i] == guess) {
if (chosen_word[i] == guess) {
if (guessed[i] == '_') {
guessed[i] = guess;
guessed_correctly++;
found = 1;
} else {
already_revealed = 1;
}
found = 1;
}
}
if (!found) {
// Increment tries if the letter was not found and not already revealed
if (!found && !already_revealed) {
tries++;
mistakes++;
}
}
if (guessed_correctly == word_length) {
printf("Félicitations ! Vous avez deviné le mot : %s\n", word);
score = calculate_score(mistakes, start_time); //calcul le score en fonction des erreurs et du temps écoulé
// Display win or lose message based on game outcome
if (guessed_correctly == letters_to_guess) {
apply_bonus(&score, tries);
printf("Félicitations ! Vous avez deviné le mot : %s\n", chosen_word);
} else {
printf("Désolé, vous avez perdu. Le mot était : %s\n", word);
printf("Désolé, vous avez perdu. Le mot était : %s\n", chosen_word);
display_hangman(MAX_TRIES);
}
return 0;
printf("Votre score final est : %d\n", score);
}
// Main function to start the game
int main() {
srand(time(NULL));
int max_word_length;
// Prompt user for maximum word length for the puzzle
printf("Choisissez la taille maximum du mot à deviner : ");
scanf("%d", &max_word_length);
// Select a word within the specified length
char chosen_word[max_word_length];
choose_words(chosen_word, max_word_length);
// Calculate total letters to guess (excluding spaces)
int word_length = strlen(chosen_word), letters_to_guess = 0;
for (int i = 0; i < word_length; i++)
if (chosen_word[i] != ' ') letters_to_guess++;
// Start the game with the chosen word
play_game(chosen_word, word_length, letters_to_guess);
return 0;
}

BIN
pendu.exe Normal file

Binary file not shown.