Files
itgmania212121/stepmania/src/FontManager.cpp
T

379 lines
11 KiB
C++
Raw Normal View History

#include "stdafx.h"
/*
-----------------------------------------------------------------------------
Class: FontManager
2003-01-04 07:55:42 +00:00
Desc: Interface for loading and releasing fonts.
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
-----------------------------------------------------------------------------
*/
#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"
#include "RageTimer.h"
2002-06-14 22:25:22 +00:00
2003-01-05 03:32:41 +00:00
static map <CString, int, StdStringLessNoCase> CharAliases;
FontManager* FONT = NULL;
FontManager::FontManager()
{
}
FontManager::~FontManager()
{
2002-09-07 08:20:10 +00:00
for( std::map<CString, Font*>::iterator i = m_mapPathToFont.begin();
i != m_mapPathToFont.end(); ++i)
{
2002-09-07 08:20:10 +00:00
Font* pFont = i->second;
LOG->Trace( "FONT LEAK: '%s', RefCount = %d.", i->first.GetString(), pFont->m_iRefCount );
2003-01-04 08:12:19 +00:00
delete pFont;
}
2003-01-05 03:32:41 +00:00
}
2003-01-05 03:32:41 +00:00
void FontManager::LoadFontPageSettings(FontPageSettings &cfg, IniFile &ini, const CString &PageName, int NumFrames)
{
2003-01-05 03:32:41 +00:00
if(NumFrames == 128 || NumFrames == 256)
{
/* If it's 128 or 256 frames, default to ASCII or ISO-8859-1,
* respectively. If it's anything else, we don't know what it
* is, so don't make any default mappings (the INI needs to do
* it itself). */
/*
if(NumFrames == 128)
cfg.MapRange("ASCII", 0, 127, 0);
else if(NumFrames == 256)
cfg.MapRange("ISO-8859-1", 0, 255, 0);
*/
for( int i=0; i<NumFrames; i++ )
cfg.CharToGlyphNo[i] = i;
}
ini.RenameKey("Char Widths", "main");
2003-01-05 03:32:41 +00:00
ini.GetValueI( PageName, "DrawExtraPixelsLeft", cfg.DrawExtraPixelsLeft );
ini.GetValueI( PageName, "DrawExtraPixelsRight", cfg.DrawExtraPixelsRight );
ini.GetValueI( PageName, "AddToAllWidths", cfg.AddToAllWidths );
ini.GetValueF( PageName, "ScaleAllWidthsBy", cfg.ScaleAllWidthsBy );
ini.GetValueI( PageName, "LineSpacing", cfg.LineSpacing );
2003-01-05 03:32:41 +00:00
/* Iterate over all keys. */
const IniFile::key *k = ini.GetKey(PageName);
if(k == NULL)
return;
2003-01-05 03:32:41 +00:00
for(IniFile::key::const_iterator key = k->begin(); key != k->end(); ++key)
{
CString val = key->first;
CString data = key->second;
val.MakeUpper();
/* If val is an integer, it's a width, eg. "10=27". */
if(IsAnInt(val))
{
cfg.GlyphWidths[atoi(val)] = atoi(data);
continue;
}
/* "map XXXX=frame" maps a char to a frame. */
if(val.substr(0, 4) == "MAP ")
{
/* map CODEPOINT=frame. CODEPOINT can be "U+hexval" or an alias.
* XXX: implement aliases
* map 1=2 is the same as
* range unicode #1-1=2
*/
CString codepoint = val.substr(4); /* "XXXX" */
int c = -1;
if(codepoint.substr(0, 2) == "U+" && IsHexVal(codepoint.substr(2)))
sscanf(codepoint.substr(2).c_str(), "%x", &c);
else if(CharAliases.find(codepoint) != CharAliases.end())
c = CharAliases[codepoint];
if(c == -1)
RageException::Throw( "Font definition '%s' has an invalid value '%s'.",
ini.GetPath().GetString(), val.GetString() );
int frame = atoi(data);
if(frame >= NumFrames)
RageException::Throw( "Font definition '%s' maps to frame %i, but font only has %i frames",
ini.GetPath().GetString(), frame, NumFrames );
cfg.CharToGlyphNo[c] = frame;
continue;
}
if(val.substr(0, 6) == "RANGE ")
{
/* range RANGE=first_frame
*
* RANGE is:
* CODESET or
* CODESET #start-end
* eg
* range ISO-8859-1=0 (default for 256-frame fonts)
* range ASCII=0 (default for 128-frame fonts)
*
* (Start and end are in hex.)
*
* Map two high-bit portions of ISO-8859- to one font:
* range ISO-8859-2 #80-FF=0
* range ISO-8859-3 #80-FF=128
*
* Map hiragana to 0-84:
* range Unicode #3041-3094=0
*/
CString range = val.substr(6);
unsigned first = 0, last = 0xFFFF; /* all */
unsigned space = range.find_first_of(' ');
if(space != val.npos)
{
}
continue;
}
}
2003-01-05 03:32:41 +00:00
}
/* "Normal.png", "Normal [foo].png", "Normal 16x16.png", and "Normal [foo] 16x16.png"
* are all part of the FontName "Normal". "Normal2 16x16.png" is not.
*
* So, FileName must start with FontName, followed by either " [", " DIGIT" or
* a period.
*
* This is to make sure we don't pull in textures from similarly-named fonts.
*/
bool FontManager::MatchesFont(CString FontName, CString FileName)
{
FontName.MakeLower();
FileName.MakeLower();
if(FileName.substr(0, FontName.size()) != FontName)
return false;
FileName = FileName.substr(FontName.size());
return regex("^( \\[|\\.| [0-9]+x[0-9]+)", FileName);
}
void FontManager::GetFontPaths(const CString &sFontOrTextureFilePath,
CStringArray &TexturePaths, CString &IniPath)
{
2003-01-04 05:20:40 +00:00
CString sDrive, sDir, sFName, sExt;
splitpath( false, sFontOrTextureFilePath, sDrive, sDir, sFName, sExt );
2003-01-05 03:32:41 +00:00
ASSERT(sExt.CompareNoCase("ini")); /* don't give us an INI! */
ASSERT(sExt.CompareNoCase("redir")); /* don't give us a redir! */
2003-01-04 05:20:40 +00:00
2003-01-05 03:32:41 +00:00
if(!sExt.empty())
2003-01-05 03:59:36 +00:00
{
2003-01-05 03:32:41 +00:00
TexturePaths.push_back(sFontOrTextureFilePath);
2003-01-05 03:59:36 +00:00
return;
}
2003-01-04 05:20:40 +00:00
2003-01-05 03:32:41 +00:00
/* If we have no extension, we need to search. */
GetDirListing( sFontOrTextureFilePath + "*.png", TexturePaths, false, true );
2003-01-04 05:20:40 +00:00
2003-01-05 03:32:41 +00:00
CStringArray IniPaths;
GetDirListing( sFontOrTextureFilePath + "*.ini", IniPaths, false, true );
/* Filter out texture files that aren't actually for this font. */
unsigned i = 0;
while(i < TexturePaths.size())
{
2003-01-05 03:32:41 +00:00
if(!MatchesFont(sFontOrTextureFilePath, TexturePaths[i]))
TexturePaths.erase(TexturePaths.begin()+i);
else
i++;
}
for(i = 0; i < IniPaths.size(); ++i)
if(MatchesFont(sFontOrTextureFilePath, IniPaths[i])) break;
if(i < IniPaths.size()) IniPath = IniPaths[i];
ASSERT(!TexturePaths.empty()); /* ThemeManager should have checked this */
}
/* Load the named font and return it. */
Font *FontManager::LoadFontInt(const CString &sFontOrTextureFilePath, CString sChars)
{
/* The font is not already loaded. Figure out what we have. */
// LOG->Trace( "FontManager::LoadFont(%s).", sFontFilePath.GetString() );
2003-01-04 05:20:40 +00:00
2003-01-05 03:32:41 +00:00
CStringArray TexturePaths;
CString IniPath;
GetFontPaths(sFontOrTextureFilePath, TexturePaths, IniPath);
2003-01-04 05:20:40 +00:00
2003-01-05 03:32:41 +00:00
Font* pFont = new Font;
pFont->path = sFontOrTextureFilePath;
bool CapitalsOnly = false;
IniFile ini;
if( !IniPath.empty() )
{
ini.SetPath( IniPath );
2003-01-04 05:20:40 +00:00
ini.ReadFile();
2003-01-05 03:32:41 +00:00
ini.GetValueB( "main", "CapitalsOnly", CapitalsOnly );
2003-01-04 05:20:40 +00:00
}
2003-01-05 03:32:41 +00:00
/* Load each font page. */
int expect = -1;
for(unsigned i = 0; i < TexturePaths.size(); ++i)
2003-01-04 05:20:40 +00:00
{
2003-01-05 03:32:41 +00:00
FontPage *fp = new FontPage;
int frames;
2003-01-04 05:20:40 +00:00
{
2003-01-05 03:32:41 +00:00
int wide, high;
RageTexture::GetFrameDimensionsFromFileName(TexturePaths[i], &wide, &high );
frames = wide*high;
}
/* Grab the page name, eg "foo" from "Normal [foo].png". */
CString pagename = GetPageNameFromFileName(TexturePaths[i]);
FontPageSettings cfg;
if( !sChars.empty() )
{
/* Map characters to frames. */
for( int i=0; i<sChars.GetLength(); i++ )
{
char c = sChars[i];
cfg.CharToGlyphNo[c] = i;
}
expect = sChars.GetLength();
2003-01-04 05:20:40 +00:00
}
2003-01-05 03:32:41 +00:00
LoadFontPageSettings(cfg, ini, pagename, frames);
fp->Load(TexturePaths[i], cfg);
if( expect != -1 && fp->m_pTexture->GetNumFrames() < expect )
RageException::Throw( "The font '%s' has %d frames; expected at least %i frames.",
fp->m_pTexture->GetNumFrames(), expect );
2003-01-05 03:32:41 +00:00
LOG->Trace("Adding page %s (%s) to %s; %i glyphs",
TexturePaths[i].GetString(), pagename.GetString(),
sFontOrTextureFilePath.GetString(), fp->m_iCharToGlyphNo.size());
pFont->AddPage(fp);
}
2003-01-05 03:32:41 +00:00
if(CapitalsOnly)
pFont->CapsOnly();
2003-01-04 05:20:40 +00:00
2003-01-05 03:32:41 +00:00
if(pFont->m_iCharToGlyph.empty())
LOG->Warn("Font %s has no characters", sFontOrTextureFilePath.GetString());
return pFont;
}
2003-01-05 03:32:41 +00:00
/* A font set is a set of files, eg:
*
* Normal 16x16.png
* Normal [other] 16x16.png
* Normal [more] 8x8.png
* Normal 16x16.ini (the 16x16 here is optional)
*
* Only one texture is required; the INI is optional. [1] This is
* designed to be backwards-compatible.
*
* sFontOrTextureFilePath can be a partial path, eg.
* "Themes/default/Fonts/Normal"
* or a complete path to a texture file (in which case no other
* files will be searched for).
*
* The entire font can be redirected; that's handled in ThemeManager.
* Individual font files can not be redirected.
*
* TODO:
* [main]
* import=FontName,FontName2 (load other fonts)
*
* [1] If a file has no INI and sChars is not set, it will receive a default
* mapping of ASCII or ISO-8859-1 if the font has exactly 128 or 256 frames.
* However, if it doesn't, we don't know what it is and the font will receive
* no default mapping. A font isn't useful with no characters mapped.
*/
Font* FontManager::LoadFont( const CString &sFontOrTextureFilePath, CString sChars )
{
if(CharAliases.empty())
{
/* XXX; these should be in a data file somewhere (theme metrics?)
* (The comments here are UTF-8; they won't show up in VC6.) */
CharAliases["kakumei1"] = 0x547D; /* 革 */
CharAliases["kakumei2"] = 0x9769; /* 命 */
CharAliases["matsuri"] = 0x796D; /* 祭 */
CharAliases["oni"] = 0x9B3C; /* 鬼 */
CharAliases["michi"] = 0x9053; /* 道 */
CharAliases["futatsu"] = 0x5F10; /* 弐 */
CharAliases["omega"] = 0x03a9; /* Ω */
CharAliases["whiteheart"] = 0x2661; /* ♡ */
CharAliases["blackstar"] = 0x2605; /* ★ */
}
// Convert the path to lowercase so that we don't load duplicates.
// Really, this does not solve the duplicate problem. We could have to copies
// of the same bitmap if there are equivalent but different paths
// (e.g. "graphics\blah.png" and "..\stepmania\graphics\blah.png" ).
map<CString, Font*>::iterator p = m_mapPathToFont.find(sFontOrTextureFilePath);
if(p != m_mapPathToFont.end()) {
Font *pFont=p->second;
// LOG->Trace( ssprintf("FontManager: The Font '%s' now has %d references.", sFontOrTextureFilePath.GetString(), pFont->m_iRefCount) );
pFont->m_iRefCount++;
return pFont;
}
Font *f = LoadFontInt(sFontOrTextureFilePath, sChars);
m_mapPathToFont[sFontOrTextureFilePath] = f;
return f;
}
2003-01-04 05:20:40 +00:00
void FontManager::UnloadFont( Font *fp )
{
2003-01-05 03:32:41 +00:00
LOG->Trace( "FontManager::UnloadTexture(%s).", fp->path.GetString() );
2003-01-04 05:20:40 +00:00
for( std::map<CString, Font*>::iterator i = m_mapPathToFont.begin();
i != m_mapPathToFont.end(); ++i)
{
2003-01-04 05:20:40 +00:00
if(i->second == fp)
{
i->second->m_iRefCount--;
2003-01-04 05:20:40 +00:00
if( fp->m_iRefCount == 0 )
{
delete i->second; // free the texture
m_mapPathToFont.erase( i ); // and remove the key in the map
}
// LOG->Trace( "FontManager: '%s' will be deleted. It has %d references.", sFontFilePath.GetString(), pFont->m_iRefCount );
return;
}
}
2003-01-04 05:20:40 +00:00
RageException::Throw( "Unloaded an unknown font (%p)", fp );
}
2003-01-04 07:55:42 +00:00
CString FontManager::GetPageNameFromFileName(const CString &fn)
{
unsigned begin = fn.find_first_of('[');
if(begin == fn.npos) return "main";
unsigned end = fn.find_first_of(']', begin);
if(end == fn.npos) return "main";
begin++; end--;
if(end == begin) return "main";
2003-01-05 03:32:41 +00:00
return fn.substr(begin, end-begin+1);
2003-01-04 07:55:42 +00:00
}