main.cpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #include <iostream>
  2. #include <SDL/SDL.h>
  3. #include "retourner.h"
  4. int main ( int argc, char** argv )
  5. {
  6. /// [1] Démarrage
  7. // [1.1] Démarrages SDL
  8. if ( SDL_Init( SDL_INIT_VIDEO ) < 0)
  9. {
  10. std::cout << "Impossible d'initialiser la SDL: " << SDL_GetError() << std::endl;
  11. return 1;
  12. }
  13. // [1.2] Préparation de fermeture
  14. atexit(SDL_Quit);
  15. // [1.3] Para-fenêtre
  16. SDL_WM_SetCaption("Application SDL", 0);
  17. /// [2] Préparation des composants
  18. // [2.1] Préparation de la fenêtre
  19. SDL_Surface* screen = SDL_SetVideoMode(640, 480, 16,
  20. SDL_HWSURFACE|SDL_DOUBLEBUF);
  21. if ( !screen )
  22. {
  23. std::cout << "Unable to set 640x480 video: " << SDL_GetError() << std::endl;
  24. return 1;
  25. }
  26. // [2.2] Préparation
  27. SDL_Surface* originale = SDL_LoadBMP("cb.bmp");
  28. SDL_Surface* copie = retournement(originale,78);//Appel de la fonction
  29. SDL_Rect posOrig={20,20,0,0};
  30. //SDL_Rect posCop={620-copie->w,20,0,0};
  31. SDL_Surface* poubelle(0);
  32. /// [3] Boucle principale
  33. bool done = false;
  34. while (!done)
  35. {
  36. // [3.1] Gestion évènements
  37. SDL_Event event;
  38. while (SDL_PollEvent(&event))
  39. {
  40. switch (event.type)
  41. {
  42. case SDL_QUIT:
  43. done = true;
  44. break;
  45. case SDL_KEYDOWN:
  46. if (event.key.keysym.sym == SDLK_ESCAPE)
  47. done = true;
  48. break;
  49. } // end switch event type
  50. } // end of message processing
  51. // [3.2] Calculs
  52. poubelle = originale;
  53. originale = retournement(originale,1);
  54. SDL_FreeSurface(poubelle);
  55. posOrig.x=320-originale->w/2;
  56. posOrig.y=240-originale->h/2;
  57. // [3.3] Dessin des composants
  58. SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 255, 255));
  59. SDL_BlitSurface(originale,0,screen,&posOrig);
  60. //SDL_BlitSurface(copie,0,screen,&posCop);
  61. SDL_Flip(screen);
  62. // [3.4] 5 fois par seconde
  63. SDL_Delay(200);
  64. } //fin bcl principale
  65. ///[4] Destruction des composants
  66. SDL_FreeSurface(screen);
  67. SDL_FreeSurface(originale);
  68. SDL_FreeSurface(copie);
  69. std::cout << "Aucune erreur détectée." << std::endl;
  70. return 0;
  71. }