Jeu.h 972 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef JEU_H
  2. #define JEU_H
  3. #include <iostream>
  4. #include <ctime>
  5. #include "Control/ClavierCtrl.h"
  6. #include "Control/JoyCtrl.h"
  7. #include "Control/IA/Brute.h"
  8. #include "Persos/Persos_Gest.h"
  9. #include "Tirs/Tirs_Gest.h"
  10. #include "Armes/Armes_Gest.h"
  11. #include "Structures/SpriteLoader.h"
  12. #include "Terrain/Terrain.h"
  13. class Jeu
  14. {
  15. /// Fonctions - - -
  16. public:
  17. Jeu();
  18. ~Jeu();
  19. bool init();
  20. int mainLoop();
  21. protected:
  22. void afficher( const Perso* focus, SDL_Surface* support );
  23. /// Attributs - - -
  24. protected:
  25. SDL_Surface* m_screen;
  26. SpriteLoader m_sprites;
  27. SDL_Surface* m_cursor;
  28. Terrain* m_terrain;
  29. InputAndJoy* m_input;
  30. Tirs_Gest* m_tirsGest;
  31. Armes_Gest* m_armGest;
  32. Persos_Gest* m_persosGest;
  33. SDL_Surface** m_support;
  34. Perso** m_persoFocus;
  35. Uint16 m_nbJoueurs;
  36. SDL_Rect m_scinde;
  37. Vec m_look;
  38. };
  39. #endif // JEU_H