Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
correction des fautes d'ortographe et ajout du ppw
Browse files Browse the repository at this point in the history
  • Loading branch information
Juknum committed Jun 17, 2020
1 parent b03cdea commit d41eb55
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 20 deletions.
Binary file added Présentation.pptm
Binary file not shown.
2 changes: 1 addition & 1 deletion projet/bot_enchere.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ void bot_enchere(int * cartes_bot, char * bot, char * atout, int *points, int *p
}

if(strcmp(atout, atout_pre) == 0 && *points == points_pre){ // Si vrai : le bot n'a pas changer l'atout et les pts -> il passe son tour
printf(" et a choisit de passer son tours!\n");
printf(" et a choisi de passer son tours!\n");
*passe = *passe +1;
}
}
2 changes: 1 addition & 1 deletion projet/bot_plis.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void bot_plis(char* nom_bot, int* cartes_bot, int nb_cartes_jouee, int atout, in
// On tri le jeu du bot en fonction de ses valeurs non atout;
tableau_tri_slave(cartes_bot_val, cartes_bot);

// Debug : Affiche les tableau
// Debug : Affiche les tableaux
/*
printf("\nCartes bot : ");
for(int i = 0; i < 8; i++){
Expand Down
2 changes: 1 addition & 1 deletion projet/bot_surenchere.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void bot_surenchere(int * cartes_bot, char * bot, char * atout_pre, int * points
}

}else{
printf(" et a choisit de passer son tours!\n");
printf(" et a choisi de passer son tours!\n");
*passe = *passe +1;
}

Expand Down
18 changes: 9 additions & 9 deletions projet/enchere.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ void enchere(int encherisseur, char *nom_joueur, int *cartes_joueur, int *cartes
strcpy(contrat, team_north_south);
break;
case 80 ... 160 :
points = (choix_points/10) * 10; // On perd l'unité, on oblige indirectement le joueur à choisir par tranche de 10
printf(side_jeu" %s annonce une couleur de "bold"%s"nboldw" avec "bold"%d"nboldw" pts\n",nom_joueur,atout,choix_points);
points = (choix_points/10) * 10;
strcpy(contrat, team_north_south);
break;
default:
Expand All @@ -207,11 +207,11 @@ void enchere(int encherisseur, char *nom_joueur, int *cartes_joueur, int *cartes

break;
case 2: // Le joueur décide de ne pas passer de contrat, on passe au joueur suivant
printf(side_jeu" %s a choisit de passer son tours!\n",nom_joueur);
printf(side_jeu" %s a choisi de passer son tours!\n",nom_joueur);
passe++;
break;
default:
printf(side_error" switch(%d) annonce/passer joueur choix_annonce",choix_annonce);
printf(side_error" switch(%d) annoncer/passer joueur choix_annonce",choix_annonce);
break;
}

Expand Down Expand Up @@ -246,7 +246,7 @@ void enchere(int encherisseur, char *nom_joueur, int *cartes_joueur, int *cartes
}

// Si un contrat est passé, on passe à la phase de sur-enchère
if(strcmp(atout,"undefined\0") != 0){passe = 0; printf(side_jeu magenta" Phase de sur-enchère!\n"white);}
if(strcmp(atout,"undefined\0") != 0){passe = 0; printf(side_jeu magenta" Phase de surenchère!\n"white);}

// Tant qu'aucune sur-enchère n'est faite ou alors que personne a décider de sur-enchérir. Sinon on passe à plis()
while(passe < 3 && strcmp(atout,"undefined\0") != 0){
Expand All @@ -264,8 +264,8 @@ void enchere(int encherisseur, char *nom_joueur, int *cartes_joueur, int *cartes

do{
printf(side_only);
printf(side_question" Souhaitez-vous sur-encherir ou passer?\n");
printf(side_question" 1 | Sur-enchère\n");
printf(side_question" Souhaitez-vous surencherir ou passer?\n");
printf(side_question" 1 | Surenchère\n");
printf(side_question" 2 | Passer\n");
printf(side_only);
printf(side_question" Votre choix : ");
Expand Down Expand Up @@ -316,7 +316,7 @@ void enchere(int encherisseur, char *nom_joueur, int *cartes_joueur, int *cartes
printf(side red" Vous devez annoncer plus que l'enchère précédente\n");
valid = 0;
goto choix_goto_2;
}else{ valid = 1; points = choix_points_surenchere;}
}else{ valid = 1; points = (choix_points_surenchere/10) * 10;}

break;
default :
Expand Down Expand Up @@ -352,11 +352,11 @@ void enchere(int encherisseur, char *nom_joueur, int *cartes_joueur, int *cartes
strcpy(atout,"Trèfle\0");
break;
default:
printf(side_error" Switch(%d) couleur surenchere",choix_couleur);
printf(side_error" Switch(%d) couleur surenchère",choix_couleur);
break;
}

printf(side_jeu" %s sur-encherit avec une Couleur de "bold"%s"nboldw" avec "bold"%d"nboldw" pts!\n",nom_joueur,atout,points);
printf(side_jeu" %s surencherit avec une Couleur de "bold"%s"nboldw" avec "bold"%d"nboldw" pts!\n",nom_joueur,atout,points);
strcpy(contrat, team_north_south);
passe = 0;
}
Expand Down
8 changes: 2 additions & 6 deletions projet/meilleurs_score.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,12 @@ void meilleurs_score(void){

switch(choix){
case 1:
#ifdef _WIN32
system("cls");
#endif
clean;
menu();
break;
case 2:
printf(reset);
#ifdef _WIN32
system("cls");
#endif
clean;
exit(0);
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion projet/plis.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void plis(char* contrat, int points, int distributeur, char * atout, int * carte
if(nb_atout > 0){
// Il a des atouts, il doit les jouer
if(nb_atout_joueur > 0){
printf(side_question" Quelle atout voulez-vous jouer ? Entrez son emplacement : ");
printf(side_question" Quel atout voulez-vous jouer ? Entrez son emplacement : ");
scanf("%d",&choix_joueur);

// Tant que le joueur ne respecte pas ces conditions il ne joue pas
Expand Down
2 changes: 1 addition & 1 deletion projet/score_add.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void score_add(int score_gagnant, char * nom_gagnant){
strcpy(nom_0, nom_1);
strcpy(nom_1, nom_temp);

printf(side_info" Bravo, vous avez dépassé votre ancien score et passez de 2e à 1er!\n");
printf(side_info" Bravo, vous avez dépassé votre ancien score et passez 1er!\n");
}
}
}
Expand Down

0 comments on commit d41eb55

Please sign in to comment.