tibia-client/src/framework/graphics/fonts.cpp

58 lines
1.9 KiB
C++
Raw Normal View History

2011-04-06 21:46:58 +02:00
/* The MIT License
*
* Copyright (c) 2010 OTClient, https://github.com/edubart/otclient
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
2011-03-26 21:53:08 +01:00
2011-04-17 21:14:24 +02:00
#include <prerequisites.h>
#include <core/resources.h>
#include <graphics/fonts.h>
2011-03-26 21:53:08 +01:00
2011-04-06 21:46:58 +02:00
Fonts g_fonts;
2011-03-26 21:53:08 +01:00
2011-05-12 00:16:11 +02:00
void Fonts::init()
2011-03-26 21:53:08 +01:00
{
2011-04-07 17:41:49 +02:00
// load all fonts
2011-03-26 21:53:08 +01:00
std::list<std::string> files = g_resources.getDirectoryFiles("fonts");
2011-04-06 21:46:58 +02:00
foreach(const std::string& file, files) {
if(boost::ends_with(file, ".yml")) {
2011-04-07 05:13:57 +02:00
std::string name = file;
boost::erase_first(name, ".yml");
2011-04-10 22:40:44 +02:00
FontPtr font(new Font(name));
2011-05-12 00:16:11 +02:00
if(font->load("fonts/" + file))
2011-04-10 22:40:44 +02:00
m_fonts.push_back(font);
2011-04-06 21:46:58 +02:00
}
2011-03-26 21:53:08 +01:00
}
2011-04-06 21:46:58 +02:00
}
2011-03-26 21:53:08 +01:00
2011-05-12 00:16:11 +02:00
FontPtr Fonts::get(const std::string& fontName)
2011-04-06 21:46:58 +02:00
{
2011-04-07 17:41:49 +02:00
// find font by name
2011-05-12 00:16:11 +02:00
foreach(const FontPtr& font, m_fonts) {
if(font->getName() == fontName)
return font;
2011-04-07 02:58:36 +02:00
}
2011-04-07 17:41:49 +02:00
2011-05-12 00:16:11 +02:00
flogFatal("ERROR: Font \"%s\" not found", fontName.c_str());
return FontPtr();
2011-03-26 21:53:08 +01:00
}
2011-05-12 00:16:11 +02:00