TextRender.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #ifndef TEXTRENDER_H
  2. #define TEXTRENDER_H
  3. #include <iostream>
  4. #include <map>
  5. #include <string>
  6. #include <SDL.h>
  7. #include <SDL_ttf.h>
  8. class LiteText;
  9. class TextRender
  10. {
  11. /// > Fonctions
  12. public:
  13. TextRender( std::string folder = "", Uint16 nbLiteTxts = 0, Uint16 fontSize = 65 );
  14. virtual ~TextRender();
  15. SDL_Surface* takeName( std::string nom );
  16. SDL_Surface* preLoadName( std::string nom, Uint8 r=0, Uint8 g=0, Uint8 b=0 );
  17. SDL_Surface* takeLite( Uint16 ID );
  18. SDL_Surface* tRendLite( Uint16 ID, std::string texte, Uint8 r=0, Uint8 g=0, Uint8 b=0 );
  19. LiteText* takeLiteObject( Uint16 ID );
  20. protected:
  21. SDL_Surface* brutLoadName( std::string nom, Uint8 r=0, Uint8 g=0, Uint8 b=0 );
  22. /// > Attributs
  23. protected:
  24. TTF_Font* m_police;
  25. const Uint16 m_liteTabSize;
  26. LiteText** m_liteTab;
  27. std::map<std::string, SDL_Surface*>::iterator m_it;
  28. std::map<std::string, SDL_Surface*> m_name;
  29. };
  30. class LiteText
  31. {
  32. /// > Fonctions
  33. public:
  34. LiteText( TTF_Font* police, std::string text = " " );
  35. ~LiteText();
  36. void render( std::string text, Uint8 r=0, Uint8 g=0, Uint8 b=0 );
  37. SDL_Surface* get();
  38. /// > Attributs
  39. private:
  40. SDL_Surface* m_text;
  41. TTF_Font* m_policeCopy;
  42. };
  43. #endif // TEXTRENDER_H