MyGL
Loading...
Searching...
No Matches
Text.hpp
1#ifndef MYGL_TEXT
2#define MYGL_TEXT
3
4#include "../mygl_export.h"
5
6#include "Font.hpp"
7#include "Rectangle.hpp"
8#include <iterator>
9#include <string_view>
10#include <utfcpp/utf8.h>
11
12namespace my
13{
14 namespace util
15 {
16 template<typename StringType>
17 inline std::string toUtf8(const StringType& text) {
18 std::basic_string_view view{std::begin(text), std::end(text)};
19
20 using CharType = typename decltype(view)::value_type;
21
22 if constexpr (sizeof(CharType) == 1) {
23 return view;
24 } else if constexpr (sizeof(CharType) == 2) {
25 std::string result;
26 result.reserve(2 * view.size());
27 utf8::utf16to8(view.begin(), view.end(), std::back_inserter(result));
28 return result;
29 } else if constexpr (sizeof(CharType) == 4) {
30 std::string result;
31 result.reserve(4 * view.size());
32 utf8::utf32to8(view.begin(), view.end(), std::back_inserter(result));
33 return result;
34 } else {
35 // Some compilers need a templated expression or they always trigger
36 // the assertion when using `static_assert(false, ...)`
37 static_assert(sizeof(CharType) == 0, "Unknown character encoding");
38 }
39 }
40 } // namespace util
41
45 class Text : public Rectangle
46 {
47 private:
48 static my::ShaderProgram textShader;
49 static my::Font defaultFont;
50
51 std::string m_text;
52 my::Font& m_font;
53 unsigned int m_size;
54
58 void init();
59
64 void setTexture(const my::Texture& texture) override;
65
66 public:
74 MYGL_EXPORT Text();
75
82 MYGL_EXPORT Text(const std::string& text, my::Font& font, unsigned int size = 30u);
83
85 MYGL_EXPORT ~Text() override;
86
91 MYGL_EXPORT void setContent(const std::string& text);
92
97 MYGL_EXPORT const std::string& getContent() const;
98
103 MYGL_EXPORT void setFont(my::Font& font);
104
109 MYGL_EXPORT void setFontSize(unsigned int size);
110 };
111
112} // namespace my
113
114#endif // MYGL_TEXT
Class for storing a font.
Definition Font.hpp:21
Class for creating rectangles.
Definition Rectangle.hpp:16
Class for creating shader programs.
Class for drawing strings of text.
Definition Text.hpp:46
MYGL_EXPORT void setFont(my::Font &font)
Changes the font.
MYGL_EXPORT Text(const std::string &text, my::Font &font, unsigned int size=30u)
Creates a text object.
MYGL_EXPORT ~Text() override
Default destructor.
MYGL_EXPORT const std::string & getContent() const
Returns the text that is currently displayed.
MYGL_EXPORT Text()
Default constructor, creates an empty string.
MYGL_EXPORT void setContent(const std::string &text)
Sets the displayed text's content.
MYGL_EXPORT void setFontSize(unsigned int size)
Changes the character size.
Class for storing textures.
Definition Texture.hpp:21
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10