diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-11 15:32:06 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-11 15:32:06 -0400 |
commit | f9aff3e20795be5ee76769fb3ecc461e9917a116 (patch) | |
tree | 84f874996201df0e22cbc81f78a777d4b1fd08f7 /src/text.hpp | |
parent | 982605ee21941358080b9e20c9b9b2c2006f2d6a (diff) |
added font loading code, untested
Diffstat (limited to 'src/text.hpp')
-rw-r--r-- | src/text.hpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/text.hpp b/src/text.hpp index 183e655..a0fd737 100644 --- a/src/text.hpp +++ b/src/text.hpp @@ -22,7 +22,15 @@ #define SYSTEM_TEXT_HPP_ #include <entityx/entityx.h> -#include <sol/sol.hpp> +#include <ft2build.h> +#include <freetype/freetype.h> + +#include <map> +#include <string> +#include <vector> + +struct FT_Info; +struct vec2 { float x; float y; }; /** * @class PhysicsSystem @@ -43,6 +51,13 @@ public: void update(entityx::EntityManager& entites, entityx::EventManager& events, entityx::TimeDelta dt) final; + + void loadFont(const std::string& name, const std::string& file, int size); + +private: + FT_Library freetype; + std::map<std::string, FT_Face> fonts; + std::map<std::string, std::vector<FT_Info>> fontData; }; #endif // SYSTEM_TEXT_HPP_ |