1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#include "text.hpp"
#include <SDL2/SDL_opengl.h>
#include <tuple>
struct FT_Info {
std::pair<float, float> wh;
std::pair<float, float> bl;
std::pair<float, float> ad;
GLuint tex;
FT_Info(void)
: tex(0) {}
};
//FT_Library freetype;
//std::map<std::string, FT_Face> fonts;
//std::map<std::string, std::vector<FT_Info>> fontData;
void TextSystem::configure([[maybe_unused]] entityx::EntityManager& entities,
[[maybe_unused]] entityx::EventManager& events)
{
if (FT_Init_FreeType(&freetype) != 0) {
// TODO handle error
}
}
/**
* Draws the text for all entities.
*/
void TextSystem::update([[maybe_unused]] entityx::EntityManager& entites,
[[maybe_unused]] entityx::EventManager& events,
[[maybe_unused]] entityx::TimeDelta dt)
{
// TODO render each Text component's text
}
void TextSystem::loadFont(const std::string& name,
const std::string& file,
int size)
{
if (fonts.find(name) == fonts.end()) {
FT_Face face;
if (FT_New_Face(freetype, file.c_str(), 0, &face)) {
// TODO handle this error
}
fonts.emplace(name, face);
}
auto& face = fonts[name];
FT_Set_Pixel_Sizes(face, 0, size);
fontData.try_emplace(name, 95);
char c = 32;
for (auto& d : fontData[name]) {
FT_Load_Char(face, c++, FT_LOAD_RENDER);
glGenTextures(1, &d.tex);
glBindTexture(GL_TEXTURE_2D, d.tex);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER , GL_LINEAR);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER , GL_LINEAR);
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
// convert red-on-black to RGBA
auto& g = face->glyph;
std::vector<uint32_t> buf (g->bitmap.width * g->bitmap.rows, 0xFFFFFF);
for (auto j = buf.size(); j--;)
buf[j] |= g->bitmap.buffer[j] << 24;
d.wh = { g->bitmap.width, g->bitmap.rows };
d.bl = { g->bitmap_left, g->bitmap_top };
d.ad = { g->advance.x >> 6, g->advance.y >> 6 };
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, g->bitmap.width, g->bitmap.rows,
0, GL_RGBA, GL_UNSIGNED_BYTE, buf.data());
}
}
|