SceneOpenGL.h 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef SCENEOPENGL_H_INCLUDED
  2. #define SCENEOPENGL_H_INCLUDED
  3. // Includes GLM
  4. #include <glm/glm.hpp>
  5. #define GLM_ENABLE_EXPERIMENTAL
  6. #include <glm/gtx/transform.hpp>
  7. #include <glm/gtc/type_ptr.hpp>
  8. // Includes OpenGL
  9. #include <SDL2/SDL.h>
  10. #define GL3_PROTOTYPES 1
  11. #include <GLES3/gl3.h>
  12. //Includes de base
  13. #include <string>
  14. #include <iostream>
  15. //Autres includes
  16. #include "CamControl/InputAndJoy.h"
  17. #include "CamControl/Camera.h"
  18. #include "Cubes/Cube.h"
  19. class SceneOpenGL
  20. {
  21. public:
  22. SceneOpenGL(std::string titre, int largeur, int hauteur);
  23. ~SceneOpenGL();
  24. bool initialiserFenetre();
  25. bool initGL();
  26. void bouclePrincipale();
  27. private:
  28. std::string m_titreFenetre;
  29. int m_largeurFenetre;
  30. int m_hauteurFenetre;
  31. SDL_Window* m_fenetre;
  32. SDL_GLContext m_contexteOpenGL;
  33. Camera m_camera;
  34. InputAndJoy m_input;
  35. };
  36. #endif // SCENEOPENGL_H_INCLUDED