aboutsummaryrefslogtreecommitdiffstats
path: root/src/text.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-16 12:46:44 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-16 12:46:44 -0400
commitdbb26902ed54ce308fdcec4697616e152f2894fd (patch)
tree13f6d840e6b300c10a1f6ff54051c12d9a4126e4 /src/text.cpp
parent331e858d2dd0155b54b4bf9edfbbb84d3d5a8145 (diff)
success with font loading
Diffstat (limited to 'src/text.cpp')
-rw-r--r--src/text.cpp23
1 files changed, 7 insertions, 16 deletions
diff --git a/src/text.cpp b/src/text.cpp
index 7b2eb02..85c0ceb 100644
--- a/src/text.cpp
+++ b/src/text.cpp
@@ -1,18 +1,6 @@
#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) {}
-};
+#include <iostream>
//FT_Library freetype;
//std::map<std::string, FT_Face> fonts;
@@ -41,15 +29,15 @@ void TextSystem::loadFont(const std::string& name,
int size)
{
- if (fonts.find(name) == fonts.end()) {
+ if (fonts.find(file) == fonts.end()) {
FT_Face face;
if (FT_New_Face(freetype, file.c_str(), 0, &face)) {
// TODO handle this error
}
- fonts.emplace(name, face);
+ fonts.emplace(file, face);
}
- auto& face = fonts[name];
+ auto& face = fonts[file];
FT_Set_Pixel_Sizes(face, 0, size);
fontData.try_emplace(name, 95);
@@ -77,5 +65,8 @@ void TextSystem::loadFont(const std::string& name,
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, g->bitmap.width, g->bitmap.rows,
0, GL_RGBA, GL_UNSIGNED_BYTE, buf.data());
}
+
+ std::cout << "Loaded font: " << file << " (size: " << size << ')'
+ << std::endl;
}