insert_unique(glyphs, g.code, g);
}
+void Font::set_kerning(unsigned l, unsigned r, float d)
+{
+ kerning[KerningKey(l, r)] = d;
+}
+
float Font::get_string_width(const string &str, StringCodec::Decoder &dec) const
{
float x = 0;
+ unsigned prev = 0;
for(string::const_iterator i=str.begin(); i!=str.end();)
- x += get_glyph_advance(dec.decode_char(str, i));
+ {
+ unsigned c = dec.decode_char(str, i);
+ if(prev)
+ x += get_glyph_advance(prev, c);
+ prev = c;
+ }
+ x += get_glyph_advance(prev);
return x;
}
MatrixStack::Push push_mtx(bld.matrix());
bld.begin(QUADS);
+ unsigned prev = 0;
for(string::const_iterator i=str.begin(); i!=str.end();)
{
- GlyphMap::const_iterator j = glyphs.find(dec.decode_char(str, i));
+ unsigned c = dec.decode_char(str, i);
+ GlyphMap::const_iterator j = glyphs.find(c);
if(j==glyphs.end())
continue;
+ if(prev)
+ bld.matrix() *= Matrix::translation(get_glyph_advance(prev, c), 0, 0);
+
create_glyph_vertices(j->second, bld);
- bld.matrix() *= Matrix::translation(j->second.advance, 0, 0);
+ prev = c;
}
bld.end();
}
bld.vertex(glyph.off_x, glyph.off_y+glyph.h);
}
-float Font::get_glyph_advance(unsigned code) const
+float Font::get_glyph_advance(unsigned code, unsigned next) const
{
GlyphMap::const_iterator i = glyphs.find(code);
if(i==glyphs.end())
return 0;
- return i->second.advance;
+ float advance = i->second.advance;
+
+ if(next)
+ {
+ KerningMap::const_iterator j = kerning.find(KerningKey(code, next));
+ if(j!=kerning.end())
+ advance += j->second;
+ }
+
+ return advance;
}
add("texture", &Loader::texture);
add("texture", &Loader::texture_ref);
add("glyph", &Loader::glyph);
+ add("kerning", &Loader::kerning);
}
void Font::Loader::glyph(unsigned c)
obj.glyphs.insert(GlyphMap::value_type(c, gl));
}
+void Font::Loader::kerning(unsigned l, unsigned r, float d)
+{
+ obj.kerning[KerningKey(l, r)] = d;
+}
+
void Font::Loader::texture()
{
RefPtr<Texture2D> tex = new Texture2D;
private:
void init();
void glyph(unsigned);
+ void kerning(unsigned, unsigned, float);
void texture();
void texture_ref(const std::string &);
};
private:
typedef std::map<unsigned, Glyph> GlyphMap;
+ typedef std::pair<unsigned, unsigned> KerningKey;
+ typedef std::map<KerningKey, float> KerningMap;
RefPtr<const Texture2D> texture;
float native_size;
float ascent;
float descent;
GlyphMap glyphs;
+ KerningMap kerning;
public:
Font();
void set_texture(const Texture2D &);
const Texture2D &get_texture() const;
void add_glyph(const Glyph &);
+ void set_kerning(unsigned, unsigned, float);
float get_native_size() const { return native_size; }
float get_ascent() const { return ascent; }
float get_descent() const { return descent; }
private:
void create_glyph_vertices(const Glyph &, VertexBuilder &) const;
- float get_glyph_advance(unsigned) const;
+ float get_glyph_advance(unsigned, unsigned = 0) const;
};
} // namespace GL