Raquette.h 825 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef RAQUETTE_H_INCLUDED
  2. #define RAQUETTE_H_INCLUDED
  3. #include "main.h"
  4. #define VITESSE 1.5
  5. #define RAYON_FENETRE (COTE/2)
  6. #define RAYON_TERRAIN (RAYON_FENETRE-COTE/36)
  7. #define RAYON_RQT (COTE/12)
  8. #define ANGLE_ECART_RQT (asin((float)RAYON_RQT/RAYON_TERRAIN)*180/M_PI+1)
  9. class Raquette
  10. {
  11. public:
  12. Raquette(int identifiant, int nbJoueursTotal, Uint32 couleur);
  13. ~Raquette();
  14. void afficher(SDL_Surface* screen);
  15. void deplacer(bool droite);
  16. Vecteur getAngleActuel();
  17. private:
  18. //Attributs vectoriels
  19. Vecteur m_angleActuel;
  20. Vecteur m_angleOrigine;
  21. Vecteur m_centre;
  22. Vecteur m_position;
  23. //Autres
  24. float const m_angleEcartMax;
  25. unsigned short m_identifiant;
  26. //Attributs SDL
  27. SDL_Surface *m_pixel;
  28. };
  29. #endif // RAQUETTE_H_INCLUDED