2011-11-19 20:25:51 +00:00
|
|
|
// 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 2 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
//
|
|
|
|
#ifndef __FGFONTCACHE_HXX
|
|
|
|
#define __FGFONTCACHE_HXX
|
|
|
|
|
|
|
|
#include <simgear/misc/sg_path.hxx>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
// forward decls
|
|
|
|
class SGPropertyNode;
|
|
|
|
class puFont;
|
|
|
|
class fntTexFont;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A class to keep all fonts available for future use.
|
|
|
|
* This also assures a font isn't resident more than once.
|
|
|
|
*/
|
|
|
|
class FGFontCache {
|
|
|
|
private:
|
2016-01-01 20:33:17 +00:00
|
|
|
FGFontCache(); // private constructor, use singleton instance() accessor
|
|
|
|
|
2011-11-19 20:25:51 +00:00
|
|
|
// The parameters of a request to the cache.
|
|
|
|
struct FntParams
|
|
|
|
{
|
|
|
|
const std::string name;
|
|
|
|
const float size;
|
|
|
|
const float slant;
|
|
|
|
FntParams() : size(0.0f), slant(0.0f) {}
|
|
|
|
FntParams(const FntParams& rhs)
|
|
|
|
: name(rhs.name), size(rhs.size), slant(rhs.slant)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
FntParams(const std::string& name_, float size_, float slant_)
|
|
|
|
: name(name_), size(size_), slant(slant_)
|
|
|
|
{
|
|
|
|
}
|
2020-06-22 09:18:00 +00:00
|
|
|
|
|
|
|
bool operator<(const FntParams& other) const;
|
2011-11-19 20:25:51 +00:00
|
|
|
};
|
2020-06-12 10:26:20 +00:00
|
|
|
|
|
|
|
struct FontCacheEntry {
|
|
|
|
FontCacheEntry(puFont* pu = 0) : pufont(pu), texfont(0) {}
|
|
|
|
~FontCacheEntry();
|
|
|
|
|
2011-11-19 20:25:51 +00:00
|
|
|
// Font used by plib GUI code
|
|
|
|
puFont *pufont;
|
|
|
|
// TXF font
|
|
|
|
fntTexFont *texfont;
|
2020-06-12 10:26:20 +00:00
|
|
|
|
|
|
|
bool ownsPUFont = false;
|
2011-11-19 20:25:51 +00:00
|
|
|
};
|
2020-06-12 10:26:20 +00:00
|
|
|
|
2011-11-19 20:25:51 +00:00
|
|
|
// Path to the font directory
|
|
|
|
SGPath _path;
|
|
|
|
|
|
|
|
typedef std::map<const std::string, fntTexFont*> TexFontMap;
|
2020-06-22 09:18:00 +00:00
|
|
|
typedef std::map<const FntParams, FontCacheEntry*> PuFontMap;
|
2011-11-19 20:25:51 +00:00
|
|
|
TexFontMap _texFonts;
|
2020-06-12 10:26:20 +00:00
|
|
|
PuFontMap _cache;
|
2011-11-19 20:25:51 +00:00
|
|
|
|
|
|
|
bool _initialized;
|
2020-06-12 10:26:20 +00:00
|
|
|
FontCacheEntry* getfnt(const std::string& name, float size, float slant);
|
2011-11-19 20:25:51 +00:00
|
|
|
void init();
|
|
|
|
|
|
|
|
public:
|
2016-01-01 20:33:17 +00:00
|
|
|
// note this accesor is NOT thread-safe
|
|
|
|
static FGFontCache* instance();
|
2016-12-10 23:24:09 +00:00
|
|
|
static void shutdown();
|
2016-01-01 20:33:17 +00:00
|
|
|
|
2011-11-19 20:25:51 +00:00
|
|
|
~FGFontCache();
|
|
|
|
|
2016-01-01 20:33:17 +00:00
|
|
|
puFont *get(const std::string& name, float size=15.0, float slant=0.0);
|
2011-11-19 20:25:51 +00:00
|
|
|
puFont *get(SGPropertyNode *node);
|
|
|
|
|
2016-01-01 20:33:17 +00:00
|
|
|
fntTexFont *getTexFont(const std::string& name, float size=15.0, float slant=0.0);
|
2011-11-19 20:25:51 +00:00
|
|
|
|
2016-01-01 20:33:17 +00:00
|
|
|
SGPath getfntpath(const std::string& name);
|
2011-11-19 20:25:51 +00:00
|
|
|
/**
|
|
|
|
* Preload all the fonts in the FlightGear font directory. It is
|
|
|
|
* important to load the font textures early, with the proper
|
|
|
|
* graphics context current, so that no plib (or our own) code
|
|
|
|
* tries to load a font from disk when there's no current graphics
|
|
|
|
* context.
|
|
|
|
*/
|
|
|
|
bool initializeFonts();
|
|
|
|
};
|
|
|
|
#endif
|