Quitte quand on fait Q ou ÉCHAP.

This commit is contained in:
Georges Dupéron 2010-09-26 02:36:42 +02:00
parent 3b61b3b2b6
commit 2564351a87

17
main.c
View File

@ -10,6 +10,9 @@ typedef enum {
FALSE = (0==1) FALSE = (0==1)
} bool; } bool;
// Variable globale boucle.
bool boucle = TRUE;
SDL_Surface* init() { SDL_Surface* init() {
if (SDL_Init(SDL_INIT_VIDEO) != 0) { if (SDL_Init(SDL_INIT_VIDEO) != 0) {
die("Erreur lors de l'initialisation de SDL :"); die("Erreur lors de l'initialisation de SDL :");
@ -34,6 +37,15 @@ void quit() {
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
} }
void clavier(SDL_Event* ev) {
switch (ev->key.keysym.sym) {
case SDLK_ESCAPE:
case SDLK_q:
boucle = FALSE;
break;
}
}
int main(int argc, char** argv) { int main(int argc, char** argv) {
SDL_Surface* fenetre = init(); SDL_Surface* fenetre = init();
@ -44,15 +56,16 @@ int main(int argc, char** argv) {
SDL_BlitSurface(bloc, NULL, fenetre, &position); SDL_BlitSurface(bloc, NULL, fenetre, &position);
SDL_Flip(fenetre); SDL_Flip(fenetre);
bool boucle = TRUE;
SDL_Event evenement; SDL_Event evenement;
while (boucle) { while (boucle) {
SDL_WaitEvent(&evenement); SDL_WaitEvent(&evenement);
switch (evenement.type) { switch (evenement.type) {
case SDL_QUIT: case SDL_QUIT:
case SDL_KEYDOWN:
boucle = FALSE; boucle = FALSE;
break; break;
case SDL_KEYDOWN:
clavier(&evenement);
break;
} }
} }