#include "FTGlyphContainer.h"
#include "FTGlyph.h"
#include "FTFace.h"
FTGlyphContainer::FTGlyphContainer( FTFace* f)
: face( f),
err( 0)
{
numberOfGlyphs = face->GlyphCount();
glyphs.resize( numberOfGlyphs, NULL);
}
FTGlyphContainer::~FTGlyphContainer()
{
GlyphVector::iterator iter;
for( iter = glyphs.begin(); iter != glyphs.end(); ++iter)
{
if( *iter)
{
delete *iter;
}
}
glyphs.clear();
}
bool FTGlyphContainer::Add( FTGlyph* tempGlyph, unsigned int g)
{
if( g >= numberOfGlyphs)
{
return false;
}
glyphs[g] = tempGlyph;
return true;
}
FTGlyph* FTGlyphContainer::Glyph( const unsigned int c) const
{
return glyphs[face->CharIndex( c)];
}
FTBBox FTGlyphContainer::BBox( const unsigned int index) const
{
return glyphs[face->CharIndex( index)]->BBox();
}
float FTGlyphContainer::Advance( unsigned int index, unsigned int next)
{
unsigned int left = face->CharIndex( index);
unsigned int right = face->CharIndex( next);
float width = face->KernAdvance( left, right).x;
width += glyphs[left]->Advance();
return width;
}
FTPoint FTGlyphContainer::Render( unsigned int index, unsigned int next, FTPoint pen)
{
FTPoint kernAdvance;
float advance = 0;
unsigned int left = face->CharIndex( index);
unsigned int right = face->CharIndex( next);
kernAdvance = face->KernAdvance( left, right);
if( !face->Error())
{
advance = glyphs[left]->Render( pen);
}
kernAdvance.x = advance + kernAdvance.x;
// kernAdvance.y = advance.y + kernAdvance.y;
return kernAdvance;
}