creation jeu.c modif images.c

This commit is contained in:
morinl 2022-11-30 17:23:59 +01:00
parent 08d3e9afe7
commit 0ad6f31c5a
4 changed files with 67 additions and 58 deletions

View File

@ -4,6 +4,7 @@
#include <time.h> #include <time.h>
#include "images.h" #include "images.h"
#include <unistd.h> #include <unistd.h>
#include "jeu.h"
int tirage_aleatoire(void){ int tirage_aleatoire(void){
InitialiserGraphique(); InitialiserGraphique();
@ -82,61 +83,7 @@ int tirage_aleatoire(void){
} }
printf("\n"); printf("\n");
}*/ }*/
jeu()
while(score<20){
for (repet=0;repet<3;repet++){
if (SourisCliquee()){
clic_x=_X;
clic_y=_Y;
im_x=0;
im_y=0;
for (pos_y=370;pos_y>=10;pos_y=pos_y-90){
if (clic_y>=pos_y){
if (clic_y<=pos_y+80){
im_y=pos_y;
break;
}
}
}
for (pos_x=640;pos_x>=10;pos_x=pos_x-90){
if (clic_x>=pos_x){
if (clic_x<=pos_x+80){
im_x=pos_x;
break;
}
}
}
if (im_x!=0 && im_y!=0){
for (i=0;i<20;i++){
for (j=0;j<2;j++){
if (positions[i][(j*2)]==im_x){
if (positions[i][(j*2+1)]==im_y){
g=i+1;
snprintf(affichage,50,"Images/image%d.png",g);
comparer[repet]=affichage;
ChargerImage(affichage,im_x,im_y,0,0,80,80);
}
}
}
}
}
}
}
if (comparer[0]==comparer[1]){
score++;
}
if (score!=20){
sleep(1);
for (pos_y=10;pos_y<=370;pos_y=pos_y+90){
for (pos_x=10;pos_x<=640;pos_x=pos_x+90){
ChargerImage("Images/image0.png",pos_x,pos_y,0,0,80,80);
}
}
}
}
Touche(); Touche();
FermerGraphique(); FermerGraphique();
printf("\n"); printf("\n");

54
jeu.c Normal file
View File

@ -0,0 +1,54 @@
#include <stdio.h>
#include <stdlib.h>
#include <graph.h>
#include <time.h>
#include "images.h"
#include "temps.h"
#include "jeu.h"
#include <unistd.h>
int jeu(void){
while(score<20){
for (repet=0;repet<3;repet++){
if (SourisCliquee()){
clic_x=_X;
clic_y=_Y;
im_x=0;
im_y=0;
for (pos_y=370;pos_y>=10;pos_y=pos_y-90){
if (clic_y>=pos_y){
if (clic_y<=pos_y+80){
im_y=pos_y;
break;
}
}
}
for (pos_x=640;pos_x>=10;pos_x=pos_x-90){
if (clic_x>=pos_x){
if (clic_x<=pos_x+80){
im_x=pos_x;
break;
}
}
}
if (im_x!=0 && im_y!=0){
for (i=0;i<20;i++){
for (j=0;j<2;j++){
if (positions[i][(j*2)]==im_x){
if (positions[i][(j*2+1)]==im_y){
g=i+1;
snprintf(affichage,50,"Images/image%d.png",g);
comparer[repet]=affichage;
ChargerImage(affichage,im_x,im_y,0,0,80,80);
}
}
}
}
}
}
}
}
}

6
jeu.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef JEU_H
#define JEU_H
int jeu(void);
#endif

6
main.c
View File

@ -9,16 +9,18 @@
int main(void){ int main(void){
int temps; int temps,coucou;
int test=menu(); int test=menu();
char tableautemps[50]; char tableautemps[50];
while(1){
coucou=tirage_aleatoire();
while(tirage_aleatoire()!=1){ while(tirage_aleatoire()!=1){
temps=timer(); temps=timer();
printf("%d",temps); printf("%d",temps);
snprintf(tableautemps,50,"%d secondes écoulées",temps); snprintf(tableautemps,50,"%d secondes écoulées",temps);
EcrireTexte(500,100,tableautemps,1); EcrireTexte(500,100,tableautemps,1);
} }
tirage_aleatoire(); }
FermerGraphique(); FermerGraphique();
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }