TextRender.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. #include "TextRender.h"
  2. /// Class TextRender > > >
  3. #define TXT_ERROR "Un problème est survenu dans la classe TextRender développée par Jovian. Type : "
  4. TextRender::TextRender( std::string folder, Uint16 nbLiteTxts, Uint16 fontSize )
  5. :m_police( 0x0 ), m_liteTabSize( nbLiteTxts )
  6. {
  7. /// Initialisation de la TTF
  8. if ( TTF_Init() < 0 ) std::cout << TXT_ERROR << "initialisation TTF." << std::endl;
  9. /// Chargement de la police
  10. m_police = TTF_OpenFont( (folder+"droid.ttf").c_str(), fontSize );
  11. if ( !m_police ) std::cout << TXT_ERROR << "chargement police." << std::endl;
  12. /// Déclaration des LiteTextes
  13. if ( nbLiteTxts != 0 ) {
  14. m_liteTab = new LiteText*[ nbLiteTxts ];
  15. for ( Uint16 i(0); i<nbLiteTxts; i++ ) {
  16. m_liteTab[i] = new LiteText( m_police, "LiteTxt" );
  17. }
  18. }
  19. }
  20. TextRender::~TextRender()
  21. {
  22. /// Destruction des surfaces LiteTxt
  23. if ( m_liteTabSize != 0 ) {
  24. for ( Uint16 i(0); i<m_liteTabSize; i++ ) {
  25. delete m_liteTab[i];
  26. }
  27. delete[] m_liteTab;
  28. }
  29. /// Destruction des surfaces Name
  30. for( m_it = m_name.begin(); m_it != m_name.end(); m_it++ )
  31. {
  32. SDL_FreeSurface(m_it->second);
  33. m_it->second = 0x0;
  34. }
  35. /// Fermeture TTF
  36. TTF_CloseFont( m_police );
  37. TTF_Quit();
  38. }
  39. SDL_Surface* TextRender::takeName( std::string nom )
  40. {
  41. // Cherche la surface dans le tableau
  42. m_it = m_name.find(nom);
  43. // Si la surface est déjà chargée, on la donne
  44. if (m_it != m_name.end())
  45. return m_it->second;
  46. // Sinon on la charge
  47. else
  48. return brutLoadName( nom );
  49. }
  50. SDL_Surface* TextRender::preLoadName( std::string nom, Uint8 r, Uint8 g, Uint8 b )
  51. {
  52. // Cherche la surface dans le tableau
  53. m_it = m_name.find(nom);
  54. // Si la surface est déjà chargée, on la détruit
  55. if (m_it != m_name.end())
  56. SDL_FreeSurface( m_it->second );
  57. // On la charge et on la donne
  58. return brutLoadName( nom , r, g, b );
  59. }
  60. SDL_Surface* TextRender::brutLoadName( std::string nom, Uint8 r, Uint8 g, Uint8 b )
  61. {
  62. SDL_Color color = {r, g, b};
  63. SDL_Color background = {255, 255, 255};
  64. m_name[nom] = TTF_RenderText_Shaded( m_police, nom.c_str(), color, background );
  65. if (m_name[nom] == 0)
  66. {
  67. m_name[nom] = SDL_CreateRGBSurface(SDL_HWSURFACE, 40, 40, 32, 0, 0, 0, 0);
  68. std::cout << TXT_ERROR << "génération de texte." << std::endl;
  69. }
  70. return m_name[nom];
  71. }
  72. SDL_Surface* TextRender::takeLite( Uint16 ID )
  73. {
  74. /// Sécurité
  75. if ( ID >= m_liteTabSize ) return 0x0;
  76. /// Renvoi
  77. return m_liteTab[ID]->get();
  78. }
  79. SDL_Surface* TextRender::tRendLite( Uint16 ID, std::string texte, Uint8 r, Uint8 g, Uint8 b )
  80. {
  81. /// Sécurité
  82. if ( ID >= m_liteTabSize ) return 0x0;
  83. /// Rendering
  84. m_liteTab[ID]->render( texte, r, g, b);
  85. /// Renvoi
  86. return m_liteTab[ID]->get();
  87. }
  88. LiteText* TextRender::takeLiteObject( Uint16 ID )
  89. {
  90. /// Sécurité
  91. if ( ID >= m_liteTabSize ) return 0x0;
  92. /// Renvoi
  93. return m_liteTab[ID];
  94. }
  95. /// Class LiteText > > >
  96. LiteText::LiteText( TTF_Font* police, std::string text )
  97. :m_text( 0x0 ), m_policeCopy( police )
  98. {
  99. render( text );
  100. }
  101. LiteText::~LiteText()
  102. {
  103. if ( m_text != 0x0 )
  104. SDL_FreeSurface( m_text );
  105. }
  106. void LiteText::render( std::string text, Uint8 r, Uint8 g, Uint8 b )
  107. {
  108. if ( !text.empty() )
  109. {
  110. if ( m_text != 0x0 )
  111. SDL_FreeSurface( m_text );
  112. /// Rendering
  113. SDL_Color color = { r, g, b };
  114. m_text = TTF_RenderText_Solid( m_policeCopy, text.c_str(), color );
  115. }
  116. }
  117. SDL_Surface* LiteText::get()
  118. {
  119. return m_text;
  120. }