Texture.cpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. #include "Texture.h"
  2. // Constructeurs et Destructeur
  3. Texture::Texture() : m_id(0), m_fichierImage("")
  4. {
  5. }
  6. Texture::Texture(Texture const &textureACopier)
  7. {
  8. // Copie de la texture
  9. m_fichierImage = textureACopier.m_fichierImage;
  10. charger();
  11. }
  12. Texture::Texture(std::string fichierImage) : m_id(0), m_fichierImage(fichierImage)
  13. {
  14. }
  15. Texture::~Texture()
  16. {
  17. // Destruction de la texture
  18. glDeleteTextures(1, &m_id);
  19. }
  20. // Méthodes
  21. Texture& Texture::operator=(Texture const &textureACopier)
  22. {
  23. // Copie de la texture
  24. m_fichierImage = textureACopier.m_fichierImage;
  25. charger();
  26. // Retour du pointeur *this
  27. return *this;
  28. }
  29. bool Texture::charger()
  30. {
  31. // Chargement de l'image dans une surface SDL
  32. SDL_Surface *imageSDL = SDL_LoadBMP(m_fichierImage.c_str());
  33. if(imageSDL == 0)
  34. {
  35. std::cout << "Erreur : " << SDL_GetError() << std::endl;
  36. return false;
  37. }
  38. // Inversion de l'image
  39. SDL_Surface *imageInversee = inverserPixels(imageSDL);
  40. SDL_FreeSurface(imageSDL);
  41. // Destruction d'une éventuelle ancienne texture
  42. if(glIsTexture(m_id) == GL_TRUE)
  43. glDeleteTextures(1, &m_id);
  44. // Génération de l'ID
  45. glGenTextures(1, &m_id);
  46. // Verrouillage
  47. glBindTexture(GL_TEXTURE_2D, m_id);
  48. // Format de l'image
  49. GLenum formatInterne(0);
  50. GLenum format(0);
  51. // Détermination du format et du format interne pour les images à 3 composantes
  52. if(imageInversee->format->BytesPerPixel == 3)
  53. {
  54. // Format interne
  55. formatInterne = GL_RGB;
  56. // Format
  57. if(imageInversee->format->Rmask == 0xff)
  58. format = GL_RGB;
  59. else
  60. format = GL_BGR;
  61. }
  62. // Détermination du format et du format interne pour les images à 4 composantes
  63. else if(imageInversee->format->BytesPerPixel == 4)
  64. {
  65. // Format interne
  66. formatInterne = GL_RGBA;
  67. // Format
  68. if(imageInversee->format->Rmask == 0xff)
  69. format = GL_RGBA;
  70. else
  71. format = GL_BGRA;
  72. }
  73. // Dans les autres cas, on arrête le chargement
  74. else
  75. {
  76. std::cout << "Erreur, format interne de l'image inconnu" << std::endl;
  77. SDL_FreeSurface(imageInversee);
  78. return false;
  79. }
  80. // Copie des pixels
  81. glTexImage2D(GL_TEXTURE_2D, 0, formatInterne, imageInversee->w, imageInversee->h, 0, format, GL_UNSIGNED_BYTE, imageInversee->pixels);
  82. // Application des filtres
  83. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
  84. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
  85. // Déverrouillage
  86. glBindTexture(GL_TEXTURE_2D, 0);
  87. // Fin de la méthode
  88. SDL_FreeSurface(imageInversee);
  89. return true;
  90. }
  91. SDL_Surface* Texture::inverserPixels(SDL_Surface *imageSource) const
  92. {
  93. // Copie conforme de l'image source sans les pixels
  94. SDL_Surface *imageInversee = SDL_CreateRGBSurface(0, imageSource->w, imageSource->h, imageSource->format->BitsPerPixel, imageSource->format->Rmask,
  95. imageSource->format->Gmask, imageSource->format->Bmask, imageSource->format->Amask);
  96. // Tableau intermédiaires permettant de manipuler les pixels
  97. unsigned char* pixelsSources = (unsigned char*) imageSource->pixels;
  98. unsigned char* pixelsInverses = (unsigned char*) imageInversee->pixels;
  99. // Inversion des pixels
  100. for(int i = 0; i < imageSource->h; i++)
  101. {
  102. for(int j = 0; j < imageSource->w * imageSource->format->BytesPerPixel; j++)
  103. pixelsInverses[(imageSource->w * imageSource->format->BytesPerPixel * (imageSource->h - 1 - i)) + j] = pixelsSources[(imageSource->w * imageSource->format->BytesPerPixel * i) + j];
  104. }
  105. // Retour de l'image inversée
  106. return imageInversee;
  107. }
  108. GLuint Texture::getID() const
  109. {
  110. return m_id;
  111. }
  112. void Texture::setFichierImage(const std::string &fichierImage)
  113. {
  114. m_fichierImage = fichierImage;
  115. }