Merge branch 'master' of dwarves.iut-fbleau.fr:morinl/SAE11_2021
This commit is contained in:
commit
3ed1865351
@ -5,7 +5,7 @@
|
|||||||
int graphique(int L,int H){
|
int graphique(int L,int H){
|
||||||
InitialiserGraphique();
|
InitialiserGraphique();
|
||||||
ChoisirEcran(0);
|
ChoisirEcran(0);
|
||||||
CreerFenetre(150,150,L,H);/*recuperation de L et H via */
|
CreerFenetre(150,150,L,H);/*recuperation de L et H via le reste du programme*/
|
||||||
Touche();
|
Touche();
|
||||||
FermerGraphique();
|
FermerGraphique();
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
14
temps.c
14
temps.c
@ -1,11 +1,17 @@
|
|||||||
#include<stdio.h>
|
#include<stdio.h>
|
||||||
#include<stdlib.h>
|
#include<stdlib.h>
|
||||||
#include<graph.h>
|
#include<graph.h>
|
||||||
|
#include<math.h>
|
||||||
//faire une boucle tant que le jeu n'est pas fini
|
//faire une boucle tant que le jeu n'est pas fini
|
||||||
//affichage de texte pour afficher le timer
|
//affichage de texte pour afficher le timer
|
||||||
int temps(void){
|
int timer(void){
|
||||||
int temps;
|
InitialiserGraphique();
|
||||||
int temps2;
|
unsigned long temps;
|
||||||
|
unsigned long temps2;
|
||||||
temps=Microsecondes();
|
temps=Microsecondes();
|
||||||
temps2=temps/1000;
|
while (ToucheEnAttente(XK_Escape)!=1){
|
||||||
|
temps2=(Microsecondes()-temps)/1000000;
|
||||||
|
printf("temps:%lu secondes écoulées\n",temps2);
|
||||||
|
}
|
||||||
|
FermerGraphique();
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user