Debug system v2 -- now, it supports debug levels, there's a global level, but overrid...
[dbw.git] / src / font / manager.cpp
blobdf126888a8a03f3d6f0b33fa025dcfcd993f7fd9
1 /*
2 Copyright © 2007-2008 Kővágó Zoltán <DirtY.iCE.hu@gmail.com>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include "manager.hpp"
22 #include "console/console.hpp"
24 namespace FontEngine
27 Manager::~Manager()
29 font_map.clear();
30 size_map.clear();
33 /**
34 * Gets a font
35 * @param name Name of the font to get.
36 * @return A reference to the Font.
38 Font& Manager::GetFont(const std::string& name)
40 return font_map[name];
43 /**
44 * Loads a font.
45 * @param file_name Name of the file to open.
46 * @param name Name, under the font will stored.
48 void Manager::LoadFont(const std::string& file_name, const std::string& name)
50 debug("font", 2) << "Loading font '" << file_name << "' as '" << name << "'" << std::endl;
51 font_map.insert(std::pair<std::string, FontT>(name, FontT(file_name)));
54 /**
55 * Set the size_map for old style font sizing,
56 * @param map A FontSizeMap containig all sizes.
58 void Manager::MapOldSizes(const FontSizeMap& map)
60 debug("font", 2) << "Mapping old sizes:" << std::endl;
62 size_map = map;
64 for(FontSizeMap::iterator iter = size_map.begin(); iter != size_map.end(); iter++)
65 debug("font", 3) << "\tSet " << (int) iter->first << " to pt_size " << (int) iter->second << std::endl;