Tirs_Gest.cpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #include "Tirs_Gest.h"
  2. Tirs_Gest::Tirs_Gest(SDL_Surface* blueTir, SDL_Surface* redTir)
  3. :m_tirs(0), m_blueImg(blueTir), m_redImg(redTir)
  4. {
  5. SDL_SetColorKey(m_blueImg, SDL_SRCCOLORKEY, SDL_MapRGBA(m_blueImg->format, 0, 0, 0, 255));
  6. SDL_SetColorKey(m_redImg, SDL_SRCCOLORKEY, SDL_MapRGBA(m_redImg->format, 0, 0, 0, 255));
  7. }
  8. Tirs_Gest::~Tirs_Gest()
  9. {
  10. // Nettoyage
  11. while ( !m_tirs.empty() ) {
  12. delete m_tirs.front();
  13. m_tirs.pop_front();
  14. }
  15. }
  16. void Tirs_Gest::allDisplay(const Vec &lookAt, SDL_Surface* screen)
  17. {
  18. // Nettoyage
  19. while ( !m_tirs.empty() && !m_tirs.front()->exist() ) {
  20. delete m_tirs.front();
  21. m_tirs.pop_front();
  22. }
  23. // Affichage
  24. for (unsigned int i(0); i < m_tirs.size(); i++)
  25. m_tirs[i]->afficher(lookAt, screen);
  26. }
  27. void Tirs_Gest::allMove() const
  28. {
  29. for (unsigned int i(0); i < m_tirs.size(); i++)
  30. m_tirs[i]->move();
  31. }
  32. void Tirs_Gest::addTir(Vec pos, Vec visee, int degats, bool allie)
  33. {
  34. SDL_Surface* tirImg(0x0);
  35. m_tirs.push_back(0x0);
  36. if ( allie ) tirImg = m_blueImg;
  37. else tirImg = m_redImg;
  38. m_tirs.back() = new Tir(tirImg, pos, visee, degats, allie);
  39. }
  40. int Tirs_Gest::encaisser(Vec pos, bool allie) const
  41. {
  42. int somme(0);
  43. for (unsigned int i(0); i < m_tirs.size(); i++)
  44. somme += m_tirs[i]->encaisser(pos, allie);
  45. return somme;
  46. }