Persos_Gest.h 973 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef PERSOS_GEST_H
  2. #define PERSOS_GEST_H
  3. #include <iostream>
  4. #include <vector>
  5. #include <cstdlib>
  6. #include "Perso.h"
  7. #include "../Structures/SpriteLoader.h"
  8. /*#include "../Control/IACtrl.h" */ class IACtrl;
  9. class Persos_Gest
  10. {
  11. public:
  12. Persos_Gest();
  13. virtual ~Persos_Gest();
  14. void allDisplay(const Vec &lookAt, SDL_Surface* screen) const;
  15. void allMove() const;
  16. void addAllie( Perso* newPerso );
  17. void addFoe( Perso* newFoe );
  18. Uint16 getNb( bool allie ) const;
  19. Vec getPos( const Uint16 &ID, bool allie ) const;
  20. bool getVivant( const Uint16 &ID, bool allie ) const;
  21. void nextWave( SpriteLoader &skinGiver, Tirs_Gest* tirsGest, Armes_Gest* armGest);
  22. IACtrl* createRandIA();
  23. protected:
  24. std::vector<Perso*> m_allies;
  25. std::vector<Perso*> m_foes;
  26. unsigned int m_nextWave;
  27. bool m_loading;
  28. Uint32 m_lastWon;
  29. };
  30. #endif // PERSOS_GEST_H