summaryrefslogtreecommitdiff
path: root/src/guiChatConsole.cpp
diff options
context:
space:
mode:
authorIlya Zhuravlev <zhuravlevilya@ya.ru>2013-02-03 16:19:09 +0400
committerPilzAdam <PilzAdam@gmx.de>2013-02-14 18:46:08 +0100
commit30b9a4d6b479ecfcb84d4803f5d15ee9b6c7edd6 (patch)
treeb3dca27a7051ae57214c5f3c880eca8cf634b73e /src/guiChatConsole.cpp
parentdf3c925b3ccae3bdba125e6dc3ecc740739baeab (diff)
downloadminetest-30b9a4d6b479ecfcb84d4803f5d15ee9b6c7edd6.tar.gz
minetest-30b9a4d6b479ecfcb84d4803f5d15ee9b6c7edd6.tar.bz2
minetest-30b9a4d6b479ecfcb84d4803f5d15ee9b6c7edd6.zip
Add Freetype support
Diffstat (limited to 'src/guiChatConsole.cpp')
-rw-r--r--src/guiChatConsole.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/guiChatConsole.cpp b/src/guiChatConsole.cpp
index 0101b99bb..13883901e 100644
--- a/src/guiChatConsole.cpp
+++ b/src/guiChatConsole.cpp
@@ -32,6 +32,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "gettext.h"
+#if USE_FREETYPE
+#include "xCGUITTFont.h"
+#endif
+
inline u32 clamp_u8(s32 value)
{
return (u32) MYMIN(MYMAX(value, 0), 255);
@@ -90,8 +94,14 @@ GUIChatConsole::GUIChatConsole(
// load the font
// FIXME should a custom texture_path be searched too?
+ #if USE_FREETYPE
+ std::string font_name = g_settings->get("mono_font_path");
+ u16 font_size = g_settings->getU16("mono_font_size");
+ m_font = gui::CGUITTFont::createTTFont(env, font_name.c_str(), font_size);
+ #else
std::string font_name = "fontdejavusansmono.png";
m_font = env->getFont(getTexturePath(font_name).c_str());
+ #endif
if (m_font == NULL)
{
dstream << "Unable to load font: " << font_name << std::endl;