main.cpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // Author : Jovian HERSEMEULE
  2. #include <iostream>
  3. #include <SDL/SDL.h>
  4. int main()
  5. {
  6. /// [1] Start
  7. // [1.1] Start SDL
  8. if ( SDL_Init( SDL_INIT_VIDEO ) < 0)
  9. {
  10. std::cout << "Can't initialize SDL: " << SDL_GetError() << std::endl;
  11. return 1;
  12. }
  13. // [1.2] Anticipate quit
  14. atexit(SDL_Quit);
  15. // [1.3] Set title
  16. SDL_WM_SetCaption("Application SDL", 0);
  17. /// [2] Create components
  18. // [2.1] Create window
  19. SDL_Surface* screen = SDL_SetVideoMode(640, 480, 32, SDL_HWSURFACE|SDL_DOUBLEBUF);
  20. if ( !screen )
  21. {
  22. std::cout << "Unable to set 640x480 video: " << SDL_GetError() << std::endl;
  23. return 1;
  24. }
  25. // [2.2] Other components
  26. // Nothing for now
  27. /// [3] Main loop
  28. bool done(false);
  29. while (!done)
  30. {
  31. // [3.1] Events
  32. SDL_Event event;
  33. while (SDL_PollEvent(&event))
  34. {
  35. switch (event.type)
  36. {
  37. case SDL_QUIT:
  38. done = true;
  39. break;
  40. case SDL_KEYDOWN:
  41. if (event.key.keysym.sym == SDLK_ESCAPE)
  42. done = true;
  43. break;
  44. } // end switch event type
  45. } // end of message processing
  46. // [3.2] Compute
  47. // Nothing for now
  48. // [3.3] Draw phase
  49. SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 255, 255));
  50. // other draws
  51. SDL_Flip(screen);
  52. } // end of main loop
  53. ///[4] Free components
  54. SDL_FreeSurface(screen);
  55. std::cout << "No error caught." << std::endl;
  56. return 0;
  57. }