/* * This file is part of the Colobot: Gold Edition source code * Copyright (C) 2001-2016, Daniel Roux, EPSITEC SA & TerranovaTeam * http://epsitec.ch; http://colobot.info; http://github.com/colobot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://gnu.org/licenses */ #include "common/font_config.h" #include "common/logger.h" #include "common/make_unique.h" #include "common/resources/inputstream.h" #include "common/resources/outputstream.h" #include "common/system/system.h" #include "graphics/engine/text.h" #include #include #include #include #include #include namespace bp = boost::property_tree; CFontConfig::CFontConfig() : m_needsSave(false) , m_loaded(false) { //default fonts m_defaultFont[Gfx::FONT_COMMON] = "/fonts/dvu_sans.ttf"; m_defaultFont[Gfx::FONT_COMMON_BOLD] = "/fonts/dvu_sans_bold.ttf"; m_defaultFont[Gfx::FONT_COMMON_ITALIC] = "/fonts/dvu_sans_italic.ttf"; m_defaultFont[Gfx::FONT_STUDIO] = "/fonts/dvu_sans_mono.ttf"; m_defaultFont[Gfx::FONT_STUDIO_BOLD] = "/fonts/dvu_sans_mono_bold.ttf"; m_defaultFont[Gfx::FONT_SATCOM] = "/fonts/dvu_sans.ttf"; m_font[Gfx::FONT_COMMON] = "FontCommon"; m_font[Gfx::FONT_COMMON_BOLD] = "FontCommonBold"; m_font[Gfx::FONT_COMMON_ITALIC] = "FontCommonItalic"; m_font[Gfx::FONT_STUDIO] = "FontStudio"; m_font[Gfx::FONT_STUDIO_BOLD] = "FontStudioBold"; m_font[Gfx::FONT_SATCOM] = "FontSatCom"; } CFontConfig::~CFontConfig() { } bool CFontConfig::Init() { try { std::unique_ptr stream; bool good; auto inputStream = MakeUnique("/fonts/fonts.ini"); good = inputStream->is_open(); stream = std::move(inputStream); if (good) { bp::ini_parser::read_ini(*stream, m_propertyTree); GetLogger()->Debug("Fonts config file loaded correctly. \n"); m_loaded = true; } else { return false; } } catch (std::exception & e) { GetLogger()->Error("Error on parsing config file: %s\n", e.what()); return false; } return true; } std::string CFontConfig::GetFont(Gfx::FontType type) { try { std::string path = std::string("/fonts/") + m_propertyTree.get(m_font[type]); return path; } catch (std::exception & e) { GetLogger()->Log(m_loaded ? LOG_INFO : LOG_TRACE, "Error on parsing config file: %s. Default font will be used instead.\n", e.what()); return m_defaultFont[type]; } }