lab.cpp/SDL#1/main.cpp

82 lines
1.6 KiB
C++
Raw Normal View History

2016-03-10 11:06:45 +00:00
#include "main.h"
// On cree un sdl-toplevel statique
2016-03-10 20:38:15 +00:00
static sdltl *mgr = NULL;
static bool running = true;
2016-03-10 11:06:45 +00:00
int main(int argc, char* argv[]) {
2016-03-10 20:38:15 +00:00
srand(time(0));
2016-03-10 11:06:45 +00:00
/* [0] Initialisation de SDL
=========================================================*/
mgr = new sdltl("Ma fenetre SDL", WIN_WIDTH, WIN_HEIGHT);
/* [1] Creation de la fenetre
=========================================================*/
2016-03-10 20:38:15 +00:00
if( !mgr->status() ) cout << "Erreur: " << SDL_GetError() << endl;
2016-03-10 11:06:45 +00:00
/* [3] On definit le background color
=========================================================*/
2016-03-10 20:38:15 +00:00
mgr->setBackground(255, 255, 255);
// bool imageLoaded = mgr->setImage( "src/1.bmp" );
/* [4] On ajoute une sprite
=========================================================*/
SpriteGroup back;
/* (1) Bloc vide */
back.add( new Sprite( 0, 0, 200, 200 ) );
/* (2) Bloc rose */
int pink[] = {255, 0, 255};
back.add( new Sprite(pink, 200, 0, 200, 200 ) );
/* (2) Bloc image */
back.add( new Sprite("src/1.bmp", 400, 0, 200, 200 ) );
/* [5] On ajoute les elements + mise a jour affichage
=========================================================*/
back.appendTo( mgr->screen() );
2016-03-10 11:06:45 +00:00
mgr->update();
2016-03-10 20:38:15 +00:00
2016-03-10 11:06:45 +00:00
/* [n-1] Boucle infinie
=========================================================*/
2016-03-10 20:38:15 +00:00
mgr->manageFps(FPS);
running = true;
while(running){
mgr->waitEvent(SDL_QUIT, &quitEventHandler);
// Gestion des FPS (vitesse de la boucle)
mgr->manageFps();
}
2016-03-10 11:06:45 +00:00
/* [n] Fin d'execution
=========================================================*/
delete mgr;
return 0;
}
2016-03-10 20:38:15 +00:00
void quitEventHandler(SDL_Event *e){
2016-03-10 11:06:45 +00:00
cout << "Ferme" << endl;
2016-03-10 20:38:15 +00:00
running = false;
2016-03-10 11:06:45 +00:00
}