Camera.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #ifndef DEF_CAMERA
  2. #define DEF_CAMERA
  3. ///Jovian
  4. ///Adaptation pour InputAndJoy
  5. ///Dernière modif : plaqué au sol (m_linear)
  6. // Includes GLM
  7. #include <glm/glm.hpp>
  8. #include <glm/gtx/transform.hpp>
  9. #include <glm/gtc/type_ptr.hpp>
  10. // Autres includes
  11. #include "Input.h"
  12. // Classe
  13. class Camera
  14. {
  15. public:
  16. Camera();
  17. Camera(glm::vec3 position, glm::vec3 pointCible, glm::vec3 axeVertical, float sensibilite, float vitesse);
  18. ~Camera();
  19. void orienter(float xRel, float yRel);
  20. void deplacer(Input const &input);
  21. void lookAt(glm::mat4 &modelview);
  22. void setPointcible(glm::vec3 pointCible);
  23. void setPosition(glm::vec3 position);
  24. void setSensibilite(float sensibilite);
  25. void setVitesse(float vitesse);
  26. void setVol(bool activation);
  27. float getSensibilite() const;
  28. float getVitesse() const;
  29. glm::vec3 getPos() const;
  30. glm::vec3 getDirect() const;
  31. float getTheta() const;
  32. float getPhi() const;
  33. glm::vec3 getNormale() const;
  34. private:
  35. float m_phi;
  36. float m_theta;
  37. glm::vec3 m_orientation;
  38. glm::vec3 m_axeVertical;
  39. glm::vec3 m_deplacementLateral;
  40. glm::vec3 m_deplacementLineaire;
  41. glm::vec3 m_position;
  42. glm::vec3 m_pointCible;
  43. float m_sensibilite;
  44. float m_vitesse;
  45. bool m_vol;
  46. };
  47. #endif