2022-11-15 17:25:25 +01:00
|
|
|
#include<stdio.h>
|
|
|
|
#include<stdlib.h>
|
|
|
|
#include<graph.h>
|
2022-11-21 16:02:49 +01:00
|
|
|
#include<math.h>
|
2022-11-30 17:13:06 +01:00
|
|
|
#include "temps.h"
|
2022-11-15 17:25:25 +01:00
|
|
|
//faire une boucle tant que le jeu n'est pas fini
|
|
|
|
//affichage de texte pour afficher le timer
|
2022-11-30 22:19:45 +01:00
|
|
|
int main(void){
|
|
|
|
char tab[50];
|
2022-11-21 16:02:49 +01:00
|
|
|
InitialiserGraphique();
|
2022-11-30 22:19:45 +01:00
|
|
|
CreerFenetre(0,0,1024,576);
|
|
|
|
couleur c=CouleurParComposante(0,0,0);
|
|
|
|
ChoisirCouleurDessin(c);
|
2022-11-21 16:02:49 +01:00
|
|
|
unsigned long temps;
|
|
|
|
unsigned long temps2;
|
2022-11-15 17:25:25 +01:00
|
|
|
temps=Microsecondes();
|
2022-11-30 22:19:45 +01:00
|
|
|
while (1){
|
2022-11-21 16:02:49 +01:00
|
|
|
temps2=(Microsecondes()-temps)/1000000;
|
2022-11-30 22:19:45 +01:00
|
|
|
snprintf(tab,50,"%ld secondes ecoulees",temps2);
|
|
|
|
c=CouleurParComposante(0,0,0);
|
|
|
|
ChoisirCouleurDessin(c);
|
|
|
|
RemplirRectangle(863,83,120,20);
|
|
|
|
c=CouleurParComposante(255,255,255);
|
|
|
|
ChoisirCouleurDessin(c);
|
|
|
|
EcrireTexte(867,100,tab,0);
|
|
|
|
if(SourisCliquee()){
|
|
|
|
printf("x %d y %d",_X,_Y);
|
|
|
|
}
|
2022-11-21 16:02:49 +01:00
|
|
|
}
|
2022-11-30 22:19:45 +01:00
|
|
|
FermerGraphique();
|
|
|
|
return EXIT_SUCCESS;
|
2022-11-15 17:25:25 +01:00
|
|
|
}
|