Controler.h 760 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef CONTROLER_H
  2. #define CONTROLER_H
  3. // Inclusions
  4. #include <iostream>
  5. #include "../Structures/Vecteur.h"
  6. // Noms des mains
  7. #define L_HAND 0
  8. #define R_HAND 1
  9. class Controler
  10. {
  11. public:
  12. Controler();
  13. virtual ~Controler();
  14. virtual void update() = 0;
  15. Vec getMvt() const;
  16. Vec getVisee() const;
  17. bool getCraft();
  18. bool getTir( unsigned short main ) const;
  19. bool getSearch( unsigned short main );
  20. protected:
  21. Vec m_mvt; // Norme € [0 ; 1]
  22. Vec m_visee;
  23. bool m_craft;
  24. bool m_tir[2]; // Deux armes
  25. bool m_search[2];
  26. private:
  27. bool m_prevCraft;
  28. bool m_prevSearch[2]; // Pour éviter de chercher en continu
  29. };
  30. #endif // CONTROLER_H