2003-02-16 04:01:45 +00:00
|
|
|
#include "global.h"
|
2002-03-30 20:00:13 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: FontManager
|
|
|
|
|
|
2003-01-04 07:55:42 +00:00
|
|
|
Desc: Interface for loading and releasing fonts.
|
2002-03-30 20:00:13 +00:00
|
|
|
|
2003-01-04 07:55:42 +00:00
|
|
|
Copyright (c) 2001-2003 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
|
|
|
|
Glenn Maynard
|
2002-03-30 20:00:13 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "FontManager.h"
|
|
|
|
|
#include "Font.h"
|
|
|
|
|
#include "RageUtil.h"
|
2002-05-01 19:14:55 +00:00
|
|
|
#include "RageLog.h"
|
2002-07-27 19:29:51 +00:00
|
|
|
#include "RageException.h"
|
2003-11-02 04:05:13 +00:00
|
|
|
#include <map>
|
2002-06-14 22:25:22 +00:00
|
|
|
|
2004-02-15 05:45:18 +00:00
|
|
|
FontManager* FONT = NULL; // global and accessable from anywhere in our program
|
2002-03-30 20:00:13 +00:00
|
|
|
|
2003-11-02 04:05:13 +00:00
|
|
|
// map from file name to a texture holder
|
|
|
|
|
typedef pair<CString,CString> FontName;
|
|
|
|
|
static map<FontName, Font*> g_mapPathToFont;
|
|
|
|
|
|
2002-03-30 20:00:13 +00:00
|
|
|
FontManager::FontManager()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FontManager::~FontManager()
|
|
|
|
|
{
|
2003-11-02 04:05:13 +00:00
|
|
|
for( std::map<FontName, Font*>::iterator i = g_mapPathToFont.begin();
|
|
|
|
|
i != g_mapPathToFont.end(); ++i)
|
2002-03-30 20:00:13 +00:00
|
|
|
{
|
2003-11-02 04:05:13 +00:00
|
|
|
const FontName &fn = i->first;
|
2002-09-07 08:20:10 +00:00
|
|
|
Font* pFont = i->second;
|
2003-11-02 04:05:13 +00:00
|
|
|
LOG->Trace( "FONT LEAK: '%s', RefCount = %d.", fn.first.c_str(), pFont->m_iRefCount );
|
2003-01-10 00:31:46 +00:00
|
|
|
delete pFont;
|
2002-03-30 20:00:13 +00:00
|
|
|
}
|
2003-01-06 02:50:25 +00:00
|
|
|
}
|
2002-03-30 20:00:13 +00:00
|
|
|
|
2003-01-06 02:50:25 +00:00
|
|
|
/* A longchar is at least 32 bits. If c & 0xFF000000, it's a game-custom
|
2003-01-28 00:45:01 +00:00
|
|
|
* character; game 0 is 0x0100nnnn, game 1 is 0x0200nnnn, and so on. */
|
|
|
|
|
longchar FontManager::MakeGameGlyph(wchar_t c, Game g)
|
2003-01-06 02:50:25 +00:00
|
|
|
{
|
2003-01-28 00:45:01 +00:00
|
|
|
ASSERT(c >= 0 && c <= 0xFFFF);
|
|
|
|
|
ASSERT(g >= 0 && g <= 0xFF);
|
2003-01-07 04:02:57 +00:00
|
|
|
return longchar (((g+1) << 24) + c);
|
2003-01-06 02:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
2003-01-28 00:45:01 +00:00
|
|
|
bool FontManager::ExtractGameGlyph(longchar ch, wchar_t &c, Game &g)
|
2003-01-06 02:50:25 +00:00
|
|
|
{
|
|
|
|
|
if((ch & 0xFF000000) == 0) return false; /* not a game glyph */
|
|
|
|
|
|
|
|
|
|
g = Game((ch >> 24) - 1);
|
2003-01-28 00:45:01 +00:00
|
|
|
c = wchar_t(ch & 0xFFFF);
|
2003-01-06 02:50:25 +00:00
|
|
|
|
|
|
|
|
return true;
|
2003-01-05 03:32:41 +00:00
|
|
|
}
|
2003-01-10 02:02:51 +00:00
|
|
|
|
2003-01-10 00:31:46 +00:00
|
|
|
void FontManager::ReloadFonts()
|
|
|
|
|
{
|
2003-11-02 04:05:13 +00:00
|
|
|
for(map<FontName, Font*>::iterator i = g_mapPathToFont.begin();
|
|
|
|
|
i != g_mapPathToFont.end(); ++i)
|
2003-01-10 00:31:46 +00:00
|
|
|
{
|
2003-01-10 02:02:51 +00:00
|
|
|
i->second->Reload();
|
2003-01-05 03:32:41 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Font* FontManager::LoadFont( const CString &sFontOrTextureFilePath, CString sChars )
|
|
|
|
|
{
|
|
|
|
|
// Convert the path to lowercase so that we don't load duplicates.
|
2003-01-10 00:31:46 +00:00
|
|
|
// Really, this does not solve the duplicate problem. We could have two copies
|
2003-01-05 03:32:41 +00:00
|
|
|
// of the same bitmap if there are equivalent but different paths
|
|
|
|
|
// (e.g. "graphics\blah.png" and "..\stepmania\graphics\blah.png" ).
|
|
|
|
|
|
2003-11-02 04:05:13 +00:00
|
|
|
CHECKPOINT_M( ssprintf("FontManager::LoadFont(%s).", sFontOrTextureFilePath.c_str()) );
|
|
|
|
|
const FontName NewName( sFontOrTextureFilePath, sChars );
|
|
|
|
|
map<FontName, Font*>::iterator p = g_mapPathToFont.find( NewName );
|
|
|
|
|
if( p != g_mapPathToFont.end() )
|
|
|
|
|
{
|
2003-01-05 03:32:41 +00:00
|
|
|
Font *pFont=p->second;
|
|
|
|
|
pFont->m_iRefCount++;
|
|
|
|
|
return pFont;
|
|
|
|
|
}
|
|
|
|
|
|
2003-01-10 02:02:51 +00:00
|
|
|
Font *f = new Font;
|
|
|
|
|
f->Load(sFontOrTextureFilePath, sChars);
|
2003-11-02 04:05:13 +00:00
|
|
|
g_mapPathToFont[NewName] = f;
|
2003-01-05 03:32:41 +00:00
|
|
|
return f;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-30 20:00:13 +00:00
|
|
|
|
2003-01-04 05:20:40 +00:00
|
|
|
void FontManager::UnloadFont( Font *fp )
|
2002-03-30 20:00:13 +00:00
|
|
|
{
|
2003-10-22 06:37:31 +00:00
|
|
|
CHECKPOINT_M( ssprintf("FontManager::UnloadFont(%s).", fp->path.c_str()) );
|
2002-03-30 20:00:13 +00:00
|
|
|
|
2003-11-02 04:05:13 +00:00
|
|
|
for( std::map<FontName, Font*>::iterator i = g_mapPathToFont.begin();
|
|
|
|
|
i != g_mapPathToFont.end(); ++i)
|
2002-03-30 20:00:13 +00:00
|
|
|
{
|
2003-11-02 04:05:13 +00:00
|
|
|
if(i->second != fp)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
i->second->m_iRefCount--;
|
|
|
|
|
|
|
|
|
|
if( fp->m_iRefCount == 0 )
|
2003-01-04 05:20:40 +00:00
|
|
|
{
|
2003-11-02 04:05:13 +00:00
|
|
|
delete i->second; // free the texture
|
|
|
|
|
g_mapPathToFont.erase( i ); // and remove the key in the map
|
2003-01-04 05:20:40 +00:00
|
|
|
}
|
2003-11-02 04:05:13 +00:00
|
|
|
return;
|
2002-03-30 20:00:13 +00:00
|
|
|
}
|
|
|
|
|
|
2003-01-04 05:20:40 +00:00
|
|
|
RageException::Throw( "Unloaded an unknown font (%p)", fp );
|
2002-03-30 20:00:13 +00:00
|
|
|
}
|