Balle.h 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef BALLE_H_INCLUDED
  2. #define BALLE_H_INCLUDED
  3. #define ACCELERATEUR 1.1
  4. #define VITESSE_MAX (COTE/80)
  5. #define BLEU 2016
  6. #define NB_JOUEURS_MAX 4
  7. #define RAYON_BALLE (COTE/80)
  8. ///Dernière modif: 25/06/2013 debug angle de frappe
  9. ///Objet: amélioration de la trajectoire aléatoire
  10. ///A faire: Variation d'angle lors de la frappe
  11. #include "main.h"
  12. #include "Raquette.h"
  13. class Balle
  14. {
  15. public:
  16. Balle(int nbRqt);
  17. void ajouterRaquette(unsigned int slot, Raquette *ajoutRqt);
  18. bool bouger(SDL_Surface* screen);//rebon potentiel, renvoie true quand Ok, false quand hors zone
  19. void afficher(SDL_Surface* screen);
  20. void camenbertPerdant(SDL_Surface* screen);
  21. protected:
  22. //Attributs vectoriels
  23. Vecteur m_position;
  24. Vecteur m_trajectoire;
  25. Vecteur m_centre;
  26. float m_vitesse;
  27. //Attributs images
  28. Point m_point;
  29. //Attributs spécifiques
  30. Raquette* m_tableauRqt[NB_JOUEURS_MAX];
  31. int const m_nbRqt;
  32. };
  33. #endif // BALLE_H_INCLUDED