Persos_Gest.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #include "Persos_Gest.h"
  2. #include "../Control/IA/Brute.h"
  3. #include "../Control/IA/Follower.h"
  4. #include "../Control/IA/Sniper.h"
  5. Persos_Gest::Persos_Gest()
  6. :m_nextWave( 1 ), m_loading( true ), m_lastWon( SDL_GetTicks() )
  7. {
  8. //ctor
  9. }
  10. Persos_Gest::~Persos_Gest()
  11. {
  12. std::cout << "Vous êtes allés juqu'à la vague : " << m_nextWave-1 << std::endl;
  13. // Destruction des alliés
  14. while ( !m_allies.empty() ) {
  15. delete m_allies.back();
  16. m_allies.pop_back();
  17. }
  18. // Destruction des ennemis
  19. while ( !m_foes.empty() ) {
  20. delete m_foes.back();
  21. m_foes.pop_back();
  22. }
  23. }
  24. void Persos_Gest::allDisplay(const Vec &lookAt, SDL_Surface* screen) const
  25. {
  26. for (unsigned int i(0); i < m_allies.size(); i++) m_allies[i]->afficher(lookAt, screen);
  27. for (unsigned int i(0); i < m_foes.size(); i++) m_foes[i]->afficher(lookAt, screen);
  28. }
  29. void Persos_Gest::allMove() const
  30. {
  31. for (unsigned int i(0); i < m_allies.size(); i++) m_allies[i]->bouger();
  32. for (unsigned int i(0); i < m_foes.size(); i++) m_foes[i]->bouger();
  33. }
  34. void Persos_Gest::addAllie(Perso* newPerso)
  35. {
  36. m_allies.push_back(newPerso);
  37. }
  38. void Persos_Gest::addFoe(Perso* newFoe)
  39. {
  40. m_foes.push_back(newFoe);
  41. }
  42. Uint16 Persos_Gest::getNb( bool allie ) const
  43. {
  44. if ( allie )
  45. return m_allies.size();
  46. else
  47. return m_foes.size();
  48. }
  49. Vec Persos_Gest::getPos( const Uint16 &ID, bool allie ) const
  50. {
  51. if ( allie && ID < m_allies.size() )
  52. return m_allies[ID]->getPos();
  53. else if ( !allie && ID < m_foes.size() )
  54. return m_foes[ID]->getPos();
  55. return Vec(0.0f, 0.0f);
  56. }
  57. bool Persos_Gest::getVivant( const Uint16 &ID, bool allie ) const
  58. {
  59. if ( allie && ID < m_allies.size() )
  60. return m_allies[ID]->estVivant();
  61. else if ( !allie && ID < m_foes.size() )
  62. return m_foes[ID]->estVivant();
  63. return false;
  64. }
  65. void Persos_Gest::nextWave( SpriteLoader &skinGiver, Tirs_Gest* tirsGest, Armes_Gest* armGest )
  66. {
  67. /// Attente
  68. if ( m_loading ) {
  69. if ( SDL_GetTicks() - m_lastWon < (Uint32)5000 )
  70. return;
  71. }
  72. else
  73. {
  74. for (unsigned int i(0); i < m_foes.size(); i++) // Teste si tous les ennemis sont morts
  75. {
  76. if ( m_foes[i]->estVivant() )
  77. return;
  78. }
  79. /// Régénerer les alliés vivants
  80. for (unsigned int i(0); i < m_allies.size(); i++)
  81. m_allies[i]->regen();
  82. m_loading = true;
  83. m_lastWon = SDL_GetTicks();
  84. return;
  85. }
  86. m_loading = false;
  87. /// Remettre les ennemis sur pieds
  88. // Destruction des ennemis
  89. while ( !m_foes.empty() ) {
  90. delete m_foes.back();
  91. m_foes.pop_back();
  92. }
  93. // Apparition des nouveaux ennemis
  94. IACtrl* IAEnemy( 0x0 );
  95. Perso* ennemi( 0x0 );
  96. unsigned int nbNewFoes( m_nextWave );
  97. float x, y;
  98. float dx(6000.0f / nbNewFoes);
  99. for (unsigned int i(0); i < nbNewFoes; i++)
  100. {
  101. x = dx*i; // Balayage des abscisses
  102. y = ( (i%2) == 0 )? -1460.0f : 1460.0f; // Haut ou bas
  103. IAEnemy = createRandIA();
  104. ennemi = new Perso( skinGiver.takeSprite("Ennemi"), skinGiver.takeSprite("Mort"), IAEnemy, tirsGest, false, armGest, x, y );
  105. IAEnemy->setPersoMoi( ennemi );
  106. addFoe( ennemi );
  107. }
  108. /// Préparer la prochaine vague
  109. m_nextWave++;
  110. }
  111. IACtrl* Persos_Gest::createRandIA()
  112. {
  113. int nbAlea( rand() % 10 );
  114. switch ( nbAlea )
  115. {
  116. case 0 :
  117. return new Follower( this );
  118. break;
  119. case 1 :
  120. return new Sniper( this );
  121. break;
  122. default :
  123. return new Brute( this );
  124. break;
  125. }
  126. }
  127. ///END FICHIER