fix FGFontCache and make use of it (this allows to assign bitmap fonts
in dialogs)
This commit is contained in:
parent
5441622a28
commit
e2016f9568
3 changed files with 34 additions and 72 deletions
|
@ -686,18 +686,9 @@ FGDialog::setupObject (puObject * object, SGPropertyNode * props)
|
||||||
object->setBorderThickness( props->getIntValue("border", 2) );
|
object->setBorderThickness( props->getIntValue("border", 2) );
|
||||||
|
|
||||||
if ( SGPropertyNode *nft = props->getNode("font", false) ) {
|
if ( SGPropertyNode *nft = props->getNode("font", false) ) {
|
||||||
SGPath path( _font_path );
|
FGFontCache *fc = _gui->get_fontcache();
|
||||||
const char *name = nft->getStringValue("name", "default");
|
puFont *lfnt = fc->get(nft);
|
||||||
float size = nft->getFloatValue("size", 13.0);
|
object->setLabelFont(*lfnt);
|
||||||
float slant = nft->getFloatValue("slant", 0.0);
|
|
||||||
path.append( name );
|
|
||||||
path.concat( ".txf" );
|
|
||||||
|
|
||||||
fntFont *font = new fntTexFont;
|
|
||||||
font->load( (char *)path.c_str() );
|
|
||||||
|
|
||||||
puFont lfnt(font, size, slant);
|
|
||||||
object->setLabelFont( lfnt );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (props->hasValue("property")) {
|
if (props->hasValue("property")) {
|
||||||
|
|
|
@ -26,7 +26,7 @@ extern puFont FONT_SANS_12B;
|
||||||
|
|
||||||
|
|
||||||
NewGUI::NewGUI ()
|
NewGUI::NewGUI ()
|
||||||
: _font(FONT_HELVETICA_14),
|
: _fontcache(new FGFontCache),
|
||||||
_menubar(new FGMenuBar),
|
_menubar(new FGMenuBar),
|
||||||
_active_dialog(0)
|
_active_dialog(0)
|
||||||
{
|
{
|
||||||
|
@ -346,38 +346,9 @@ static const struct {
|
||||||
void
|
void
|
||||||
NewGUI::setupFont (SGPropertyNode *node)
|
NewGUI::setupFont (SGPropertyNode *node)
|
||||||
{
|
{
|
||||||
string fontname = node->getStringValue("name", "Helvetica.txf");
|
_font = _fontcache->get(node);
|
||||||
float size = node->getFloatValue("size", 15.0);
|
puSetDefaultFonts(*_font, *_font);
|
||||||
float slant = node->getFloatValue("slant", 0.0);
|
return;
|
||||||
|
|
||||||
int i;
|
|
||||||
for (i = 0; guifonts[i].name; i++)
|
|
||||||
if (fontname == guifonts[i].name)
|
|
||||||
break;
|
|
||||||
if (guifonts[i].name)
|
|
||||||
_font = *guifonts[i].font;
|
|
||||||
else {
|
|
||||||
SGPath fontpath;
|
|
||||||
char* envp = ::getenv("FG_FONTS");
|
|
||||||
if (envp != NULL) {
|
|
||||||
fontpath.set(envp);
|
|
||||||
} else {
|
|
||||||
fontpath.set(globals->get_fg_root());
|
|
||||||
fontpath.append("Fonts");
|
|
||||||
}
|
|
||||||
|
|
||||||
SGPath path(fontpath);
|
|
||||||
path.append(fontname);
|
|
||||||
|
|
||||||
if (_tex_font.load((char *)path.c_str())) {
|
|
||||||
_font.initialize((fntFont *)&_tex_font, size, slant);
|
|
||||||
} else {
|
|
||||||
_font = *guifonts[0].font;
|
|
||||||
fontname = "default";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
puSetDefaultFonts(_font, _font);
|
|
||||||
node->setStringValue("name", fontname.c_str());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -434,7 +405,7 @@ FGFontCache::FGFontCache()
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i=0; guifonts[i].name; i++)
|
for (int i=0; guifonts[i].name; i++)
|
||||||
_fonts[guifonts[i].name] = guifonts[i].font;
|
_fonts[guifonts[i].name] = new fnt(guifonts[i].font);
|
||||||
}
|
}
|
||||||
|
|
||||||
FGFontCache::~FGFontCache()
|
FGFontCache::~FGFontCache()
|
||||||
|
@ -445,33 +416,28 @@ FGFontCache::~FGFontCache()
|
||||||
puFont *
|
puFont *
|
||||||
FGFontCache::get(const char *name, float size, float slant)
|
FGFontCache::get(const char *name, float size, float slant)
|
||||||
{
|
{
|
||||||
puFont *font;
|
|
||||||
_itt_t it;
|
_itt_t it;
|
||||||
|
|
||||||
if ((it = _fonts.find(name)) == _fonts.end())
|
if ((it = _fonts.find(name)) == _fonts.end()) {
|
||||||
{
|
|
||||||
SGPath path(_path);
|
SGPath path(_path);
|
||||||
path.append(name);
|
path.append(name);
|
||||||
|
|
||||||
fntTexFont tex_font;
|
fnt *f = new fnt();
|
||||||
if (tex_font.load((char *)path.c_str()))
|
f->texfont = new fntTexFont;
|
||||||
{
|
if (f->texfont->load((char *)path.c_str())) {
|
||||||
font = new puFont;
|
f->pufont = new puFont;
|
||||||
font->initialize((fntFont *)&tex_font, size, slant);
|
f->pufont->initialize(static_cast<fntFont *>(f->texfont), size, slant);
|
||||||
_fonts[name] = font;
|
_fonts[name] = f;
|
||||||
}
|
return f->pufont;
|
||||||
else
|
|
||||||
{
|
} else {
|
||||||
font = _fonts["default"];
|
delete f;
|
||||||
// puSetDefaultFonts(font, font);
|
return _fonts["default"]->pufont;
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
font = it->second;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return font;
|
} else {
|
||||||
|
return it->second->pufont;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
puFont *
|
puFont *
|
||||||
|
|
|
@ -174,7 +174,7 @@ public:
|
||||||
return (it != _colors.end()) ? it->second : NULL;
|
return (it != _colors.end()) ? it->second : NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual puFont *getDefaultFont() { return &_font; }
|
virtual puFont *getDefaultFont() { return _font; }
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -220,8 +220,7 @@ private:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
fntTexFont _tex_font;
|
puFont *_font;
|
||||||
puFont _font;
|
|
||||||
map<const char*,FGColor*, ltstr> _colors;
|
map<const char*,FGColor*, ltstr> _colors;
|
||||||
typedef map<const char*,FGColor*, ltstr>::iterator _itt_t;
|
typedef map<const char*,FGColor*, ltstr>::iterator _itt_t;
|
||||||
typedef map<const char*,FGColor*, ltstr>::const_iterator _citt_t;
|
typedef map<const char*,FGColor*, ltstr>::const_iterator _citt_t;
|
||||||
|
@ -292,10 +291,16 @@ private:
|
||||||
*/
|
*/
|
||||||
class FGFontCache {
|
class FGFontCache {
|
||||||
private:
|
private:
|
||||||
|
struct fnt {
|
||||||
|
fnt(puFont *pu = 0) : pufont(pu), texfont(0) {}
|
||||||
|
~fnt() { delete pufont; delete texfont; }
|
||||||
|
puFont *pufont;
|
||||||
|
fntTexFont *texfont;
|
||||||
|
};
|
||||||
SGPath _path;
|
SGPath _path;
|
||||||
|
|
||||||
map<const char*,puFont*> _fonts;
|
map<const string,fnt *> _fonts;
|
||||||
typedef map<const char*,puFont*>::iterator _itt_t;
|
typedef map<const string,fnt *>::const_iterator _itt_t;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FGFontCache();
|
FGFontCache();
|
||||||
|
|
Loading…
Add table
Reference in a new issue