Power.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #ifndef POWER_H_INCLUDED
  2. #define POWER_H_INCLUDED
  3. #include <cstdlib>
  4. #include "Collisions.h"
  5. #include "SpriteLoader.h"
  6. #include "Sounderer.h"
  7. /** \brief Power
  8. * \last Surface donnée
  9. * \next
  10. */
  11. /** \brief TableauPower
  12. * \last Ajuster le nombre de pouvoirs à volonté
  13. * \next Ajouter le Trender
  14. */
  15. class Power
  16. {
  17. public:
  18. //Fonctions pour le tableau
  19. Power(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
  20. virtual ~Power();
  21. void attribuer();
  22. //Fonctions pour le joueur
  23. virtual void usePower(int orientation, int &x, int &y, int const &ID) = 0;
  24. virtual void postMortemPower(int const &x, int const &y, int const &ID) = 0;
  25. //Pour les deux
  26. void afficher(int x, int y);
  27. bool estUtilise();
  28. bool estPose();
  29. protected:
  30. void convertDir(int orientation, int &ajoutX, int &ajoutY) const;
  31. protected:
  32. SDL_Surface *m_screen;
  33. SDL_Surface *m_image;
  34. SDL_Rect m_position;
  35. Collisions *m_gestionnaireCollisions;
  36. Sounderer *m_mediaPlayer;
  37. bool m_used;
  38. bool m_estPose;
  39. };
  40. class TableauPower
  41. {
  42. public:
  43. TableauPower(SDL_Surface *screen, Collisions *gestionnaireCollisons, int nbPow );
  44. ~TableauPower();
  45. Power* chercherPouvoir(int x, int y) const;
  46. Power* randomPower();
  47. void initialiser();
  48. void actualiser(); // Nettoie les pouvoirs plus utilisés
  49. void afficher();
  50. void bruiterMort();
  51. private:
  52. SDL_Surface *m_screen;
  53. Collisions *m_gestionnaireCollisions;
  54. SpriteLoader *m_spriteGet;
  55. Sounderer *m_mediaPlayer;
  56. const int m_nbPow;
  57. Power** m_tableau;
  58. int* m_positions[2];//[coordonnee][id power]
  59. };
  60. #include "powers/Boost.h"
  61. #include "powers/Expansion.h"
  62. #include "powers/Missile.h"
  63. #include "powers/Teleport.h"
  64. #include "powers/Bouclier.h"
  65. #include "powers/Trender.h"
  66. #include "powers/Tunnel.h"
  67. #include "powers/Bomb.h"
  68. #endif // POWER_H_INCLUDED