SceneOpenGL.h 955 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef DEF_SCENEOPENGL
  2. #define DEF_SCENEOPENGL
  3. // Includes
  4. #ifdef WIN32
  5. #include <glew.h>
  6. #else
  7. #define GL3_PROTOTYPES 1
  8. #include <GL3/gl3.h>
  9. #endif
  10. // Includes GLM
  11. #include <glm.hpp>
  12. #include <gtx/transform.hpp>
  13. #include <gtc/type_ptr.hpp>
  14. // Autres includes
  15. #include <SDL.h>
  16. #include <iostream>
  17. #include <string>
  18. #include "Shader.h"
  19. #include "Cube.h"
  20. #include "Input.h"
  21. #include "Texture.h"
  22. #include "Caisse.h"
  23. #include "Camera.h"
  24. #include "Cabane.h"
  25. #include "Sol.h"
  26. #include "Cristal.h"
  27. // Classe
  28. class SceneOpenGL
  29. {
  30. public:
  31. SceneOpenGL(std::string titreFenetre, int largeurFenetre, int hauteurFenetre);
  32. ~SceneOpenGL();
  33. bool initialiserFenetre();
  34. bool initGL();
  35. void bouclePrincipale();
  36. private:
  37. std::string m_titreFenetre;
  38. int m_largeurFenetre;
  39. int m_hauteurFenetre;
  40. SDL_Window* m_fenetre;
  41. SDL_GLContext m_contexteOpenGL;
  42. SDL_Event m_evenements;
  43. Input m_input;
  44. };
  45. #endif