X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FGraphic%2FText.hpp;h=ea23c6f918bdcf4dd5b876b5d6dfc3987092bc13;hb=3f8ee86c6085b5d6c7ee31b916d0e022239750ab;hp=d830af42f9d3ab158c49fe42d83cb5303fb8f714;hpb=ed3662c0852c4312a612b4fc35bd03aba8d13db7;p=lugaru.git diff --git a/Source/Graphic/Text.hpp b/Source/Graphic/Text.hpp index d830af4..ea23c6f 100644 --- a/Source/Graphic/Text.hpp +++ b/Source/Graphic/Text.hpp @@ -26,6 +26,8 @@ along with Lugaru. If not, see . #include "Math/Quaternions.hpp" #include "Utils/ImageIO.hpp" +#include + class Text { public: @@ -34,18 +36,16 @@ public: void LoadFontTexture(const std::string& fileName); void BuildFont(); - void glPrint(float x, float y, const char *string, int set, float size, float width, float height); - void glPrintOutline(float x, float y, const char *string, int set, float size, float width, float height); - void glPrint(float x, float y, const char *string, int set, float size, float width, float height, int start, int end); - void glPrintOutline(float x, float y, const char *string, int set, float size, float width, float height, int start, int end); - void glPrintOutlined(float x, float y, const char *string, int set, float size, float width, float height); - void glPrintOutlined(float r, float g, float b, float x, float y, const char *string, int set, float size, float width, float height); + void glPrint(float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1); + void glPrintOutline(float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1); + void glPrintOutlined(float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1); + void glPrintOutlined(float r, float g, float b, float a, float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1); Text(); ~Text(); private: - void _glPrint(float x, float y, const char *string, int set, float size, float width, float height, int start, int end, int offset); + void _glPrint(float x, float y, const std::string& string, int set, float size, float width, float height, int start, int end, int offset); }; #endif