SceneOpenGL.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #ifndef DEF_SCENEOPENGL
  2. #define DEF_SCENEOPENGL
  3. // Include Windows
  4. #ifdef WIN32
  5. #include <GL/glew.h>
  6. // Include Mac
  7. #elif __APPLE__
  8. #define GL3_PROTOTYPES 1
  9. #include <OpenGL/gl3.h>
  10. #include <CoreFoundation/CoreFoundation.h>
  11. // Include UNIX/Linux
  12. #else
  13. #define GL3_PROTOTYPES 1
  14. #include <GLES3/gl3.h>
  15. #endif
  16. // Includes GLM
  17. #include <glm/glm.hpp>
  18. #include <glm/gtx/transform.hpp>
  19. #include <glm/gtc/type_ptr.hpp>
  20. #include <glm/gtx/rotate_vector.hpp>
  21. // Autres includes
  22. #include <SDL2/SDL.h>
  23. #include <iostream>
  24. #include <string>
  25. #include "Shader.h"
  26. #include "InputAndJoy.h"
  27. #include "TexturLoader.h"
  28. #include "Camera.h"
  29. #include "FrameBuffer.h"
  30. #include "3D/OBJ.h"
  31. #include "3D/Mosaic.h"
  32. // Classe
  33. class SceneOpenGL
  34. {
  35. public:
  36. SceneOpenGL(std::string titreFenetre, int largeurFenetre, int hauteurFenetre);
  37. ~SceneOpenGL();
  38. bool initialiserFenetre();
  39. bool initGL();
  40. void bouclePrincipale();
  41. private:
  42. std::string m_titreFenetre;
  43. int m_largeurFenetre;
  44. int m_hauteurFenetre;
  45. SDL_Window* m_fenetre;
  46. SDL_GLContext m_contexteOpenGL;
  47. InputAndJoy m_input;
  48. TexturLoader m_texturLoader;
  49. Shader m_shader;
  50. Shader m_shLight;
  51. Shader m_shGris;
  52. };
  53. #endif