Liner.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #ifndef LINER_H_INCLUDED
  2. #define LINER_H_INCLUDED
  3. #include <iostream>
  4. #include <deque>
  5. #include <SDL.h>
  6. #include "Collisions.h"
  7. #include "traitement.h"
  8. #include "Power.h"
  9. //Mouvement
  10. #define TOURNE_DROITE 1//Quand ne tourne pas, 0
  11. #define TOURNE_GAUCHE -1
  12. /** \brief Voici la classe du Mighty Liner
  13. * \last Créer un attribut ID pour permettre au collisioneur d'afficher des murs différents
  14. * \next Réintégrer les pouvoirs
  15. *
  16. *
  17. */
  18. class Liner
  19. {
  20. public:
  21. Liner(int x, int y, int orientation, int id, SDL_Surface *screen, SDL_Surface *pseudo, Collisions *collisioneur, TableauPower *powerGetter);
  22. ~Liner();
  23. void actualiser(int direction);
  24. void collisioner();
  25. void afficher();
  26. void direEstFini(bool fin);
  27. bool estVivant() const;
  28. void avancer(int nbFois);
  29. void utiliserPouvoir();
  30. void reset( int x, int y, int orientation );
  31. int getMeurtrier();
  32. private:
  33. int m_x; //Coordonnées en nb blocs
  34. int m_y;
  35. int m_orientation; //0 à 3
  36. const int m_id;
  37. bool m_estVivant;
  38. bool m_fin; // Pour afficher les pseudos
  39. int m_meurtrier;
  40. Collisions *m_collisioneur;
  41. SDL_Surface *m_screen;
  42. SDL_Surface *m_liner;
  43. SDL_Surface *m_cercle;
  44. SDL_Surface *m_pseudo;
  45. SDL_Rect m_position;
  46. TableauPower *m_powerGetter;
  47. Power *m_power;
  48. std::deque<SDL_Rect> m_trainee;
  49. };
  50. bool initialisationPict();
  51. void fermeturePict();
  52. #endif // Liner_H_INCLUDED