Collisions.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef COLLISIONS_H_INCLUDED
  2. #define COLLISIONS_H_INCLUDED
  3. //Includes
  4. #include <iostream>
  5. #include <SDL.h>
  6. #include "traitement.h"
  7. //Orientation
  8. #define HAUT 0
  9. #define DROITE 1
  10. #define BAS 2
  11. #define GAUCHE 3
  12. //Define du mur
  13. #define VIDE -1 //Pas de mur
  14. #define NEUTRE -2 // Mur sans identification
  15. /** \brief Gestionnaire de collisions
  16. * \last Remplacement bool par int, -1 = MUR
  17. * \next
  18. *
  19. *
  20. */
  21. class Collisions
  22. {
  23. public:
  24. Collisions(SDL_Surface* screen, int const xBlocSize, int const yBlocSize);
  25. ~Collisions();
  26. void ajouter(int x, int y, int ID);
  27. void enlever(int x, int y);
  28. int tester(int x, int y) const;
  29. void afficher();
  30. void reinitialiser();
  31. void coorectPos(int &x, int &y) const;
  32. int getSize(int idCoord);// x -> 0 et y -> 1
  33. private:
  34. SDL_Surface* m_screen;
  35. SDL_Surface* m_carreStd;
  36. SDL_Surface* m_carre[12];
  37. SDL_Surface* m_sol;
  38. SDL_Surface* m_terrain;
  39. int const m_xSize;
  40. int const m_ySize;
  41. SDL_Rect m_position;
  42. int **m_tableau;
  43. };
  44. #endif // COLLISIONS_H_INCLUDED