SceneOpenGL.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #include "SceneOpenGL.h"
  2. SceneOpenGL::SceneOpenGL(std::string titre, int largeur, int hauteur)
  3. : m_titreFenetre(titre), m_largeurFenetre(largeur), m_hauteurFenetre(hauteur), m_fenetre(0), m_contexteOpenGL(0),
  4. m_camera(glm::vec3(-30.0f,1.78f*2.0f,-22.2f),glm::vec3(0.0,2.6,0.0),glm::vec3(0.0,1.0,0.0),0.32,0.36)
  5. {
  6. }
  7. SceneOpenGL::~SceneOpenGL()
  8. {
  9. SDL_GL_DeleteContext(m_contexteOpenGL);
  10. SDL_DestroyWindow(m_fenetre);
  11. SDL_Quit();
  12. }
  13. bool SceneOpenGL::initialiserFenetre()
  14. {
  15. // Initialisation de la SDL
  16. if(SDL_Init(SDL_INIT_VIDEO) < 0)
  17. {
  18. std::cout << "Erreur lors de l'initialisation de la SDL : " << SDL_GetError() << std::endl;
  19. SDL_Quit();
  20. return false;
  21. }
  22. // Version d'OpenGL
  23. SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
  24. SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3);
  25. SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
  26. // Double Buffer
  27. SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
  28. SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
  29. // Création de la fenêtre
  30. m_fenetre = SDL_CreateWindow(m_titreFenetre.c_str(), SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
  31. m_largeurFenetre, m_hauteurFenetre, SDL_WINDOW_SHOWN | SDL_WINDOW_FULLSCREEN | SDL_WINDOW_OPENGL);
  32. if(m_fenetre == 0)
  33. {
  34. std::cout << "Erreur lors de la creation de la fenetre : " << SDL_GetError() << std::endl;
  35. SDL_Quit();
  36. return false;
  37. }
  38. m_input.setWindow(m_fenetre);
  39. // Création du contexte OpenGL
  40. m_contexteOpenGL = SDL_GL_CreateContext(m_fenetre);
  41. if(m_contexteOpenGL == 0)
  42. {
  43. std::cout << SDL_GetError() << std::endl;
  44. SDL_DestroyWindow(m_fenetre);
  45. SDL_Quit();
  46. return false;
  47. }
  48. return true;
  49. }
  50. bool SceneOpenGL::initGL()
  51. {
  52. glEnable(GL_DEPTH_TEST);
  53. return true;
  54. }
  55. void SceneOpenGL::bouclePrincipale()
  56. {
  57. /// Variables
  58. //Gestion du temps
  59. unsigned int frameRate (1000 / 36);//36fps
  60. Uint32 debutBoucle(0), finBoucle(0), tempsEcoule(0);
  61. //Matrices
  62. glm::mat4 projection;
  63. glm::mat4 modelView(1.0);
  64. glm::mat4 sauvegarde(1.0);//Pour sauvegarder modelView
  65. //Vecteurs
  66. glm::vec3 axeX(1.0,0.0,0.0);
  67. glm::vec3 axeY(0.0,1.0,0.0);
  68. glm::vec3 axeZ(0.0,0.0,1.0);
  69. //Objets
  70. Cube caisseBasique(2.0,"Shaders/couleur3D.vert", "Shaders/couleur3D.frag");
  71. caisseBasique.charger();
  72. float rotation(0.0);
  73. float translation(1.0);
  74. float acceleration(0.0);
  75. ///Initialisation
  76. projection = glm::perspective(70.0, (double) m_largeurFenetre / m_hauteurFenetre, 1.0, 100.0);
  77. m_input.capturerPointeur(true);
  78. m_input.afficherPointeur(false);
  79. m_input.setMoveKeys(SDL_SCANCODE_W, SDL_SCANCODE_S, SDL_SCANCODE_D, SDL_SCANCODE_A);
  80. /// Boucle principale
  81. bool terminer(false);
  82. while(!m_input.terminer() && !terminer)
  83. {
  84. // Amorce boucle
  85. debutBoucle = SDL_GetTicks();
  86. // Gestion des évènements
  87. m_input.updateEvenements();
  88. terminer = m_input.getTouche(SDL_SCANCODE_ESCAPE);
  89. m_camera.setVol(m_input.getTouche(SDL_SCANCODE_LSHIFT));
  90. if (m_input.getTouche(SDL_SCANCODE_P))
  91. m_camera.setPosition(glm::vec3(30.0,1.78*2.0,22.2));
  92. m_camera.deplacer(m_input);
  93. // Nettoyage
  94. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  95. m_camera.lookAt(modelView);
  96. // Mouvements
  97. rotation += 1.0;
  98. if (rotation >= 360.0)
  99. rotation -= 360.0;
  100. acceleration = -translation*0.004+acceleration;
  101. translation += acceleration;
  102. //Save
  103. sauvegarde = modelView;
  104. ///Cube 1
  105. //Transformations
  106. modelView = glm::translate(sauvegarde, glm::vec3(-2.5,1.0,-0.3));
  107. modelView = glm::rotate(modelView, 36.6f, axeY);
  108. //Afficher
  109. caisseBasique.afficher(projection,modelView);
  110. ///Cube 2
  111. //Transformations
  112. modelView = glm::translate(sauvegarde, glm::vec3(-0.4,1.0,-3.2));
  113. //Afficher
  114. caisseBasique.afficher(projection,modelView);
  115. ///Cube 3
  116. //Transformations
  117. modelView = glm::translate(sauvegarde, glm::vec3(2.5,1.0,0.0));
  118. //Afficher
  119. caisseBasique.afficher(projection,modelView);
  120. /// Actualisation de la fenêtre
  121. SDL_GL_SwapWindow(m_fenetre);
  122. /// Temps
  123. // Calcul du temps écoulé
  124. finBoucle = SDL_GetTicks();
  125. tempsEcoule = finBoucle - debutBoucle;
  126. // Si nécessaire, on met en pause le programme
  127. if(tempsEcoule < frameRate)
  128. SDL_Delay(frameRate - tempsEcoule);
  129. }
  130. }