Input.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #ifndef INPUT_H_INCLUDED
  2. #define INPUT_H_INCLUDED
  3. #include <SDL/SDL.h>
  4. #undef main
  5. class Input
  6. {
  7. public:
  8. Input(): m_x(0), m_y(0), m_xRel(0), m_yRel(0), m_continuer(true)
  9. {
  10. for(int i = 0;i<323;i++)
  11. m_touches[i] = false;
  12. for(int i = 0;i<8;i++)
  13. m_boutonsSouris[i] = false;
  14. }
  15. ~Input()
  16. {
  17. }
  18. void updateEvenement()
  19. {
  20. m_xRel = 0;
  21. m_yRel = 0;
  22. while(SDL_PollEvent(&m_evenement))
  23. {
  24. switch(m_evenement.type)
  25. {
  26. case SDL_QUIT:
  27. m_continuer = false;
  28. break;
  29. case SDL_KEYDOWN:
  30. m_touches[m_evenement.key.keysym.sym] = true;
  31. break;
  32. case SDL_KEYUP:
  33. m_touches[m_evenement.key.keysym.sym] = false;
  34. break;
  35. case SDL_MOUSEBUTTONDOWN:
  36. m_boutonsSouris[m_evenement.button.button] = true;
  37. break;
  38. case SDL_MOUSEBUTTONUP:
  39. m_boutonsSouris[m_evenement.button.button] = false;
  40. break;
  41. case SDL_MOUSEMOTION:
  42. m_x = m_evenement.motion.x;
  43. m_y = m_evenement.motion.y;
  44. m_xRel = m_evenement.motion.xrel;
  45. m_yRel = m_evenement.motion.yrel;
  46. break;
  47. default:
  48. break;
  49. }
  50. }
  51. }
  52. bool continuer() const
  53. {
  54. return m_continuer;
  55. }
  56. bool getTouches(const SDLKey touche) const
  57. {
  58. return m_touches[touche];
  59. }
  60. bool getBoutonSouris(const Uint8 bouton) const
  61. {
  62. return m_boutonsSouris[bouton];
  63. }
  64. bool mouvementSouris() const
  65. {
  66. if(m_xRel == 0 && m_yRel == 0)
  67. return false;
  68. else
  69. return true;
  70. }
  71. int getX() const
  72. {
  73. return m_x;
  74. }
  75. int getY() const
  76. {
  77. return m_y;
  78. }
  79. int getXRel() const
  80. {
  81. return m_xRel;
  82. }
  83. int getYRel() const
  84. {
  85. return m_yRel;
  86. }
  87. void afficherPointeur(bool reponse) const
  88. {
  89. if(reponse)
  90. SDL_ShowCursor(SDL_ENABLE);
  91. else
  92. SDL_ShowCursor(SDL_DISABLE);
  93. }
  94. /*void capturerPointeur(bool reponse) const
  95. {
  96. if(reponse)
  97. SDL_SetRelativeMouseMode(SDL_TRUE);
  98. else
  99. SDL_SetRelativeMouseMode(SDL_FALSE);
  100. }*/
  101. private:
  102. SDL_Event m_evenement;
  103. bool m_touches[323];
  104. bool m_boutonsSouris[8];
  105. int m_x, m_y;
  106. int m_xRel, m_yRel;
  107. bool m_continuer;
  108. };
  109. #endif // INPUT_H_INCLUDED