X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ffont.h;h=6ae5c6d3862426c9bbb74bfb7198fb3444fe3125;hp=b48c6445bb53a6d4136cd1d3c2b040edbf913c40;hb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;hpb=e92458a4a0e6191bff549a8b316dbbbd7c56e90f diff --git a/source/font.h b/source/font.h index b48c6445..6ae5c6d3 100644 --- a/source/font.h +++ b/source/font.h @@ -1,16 +1,9 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GL_FONT_H_ #define MSP_GL_FONT_H_ #include #include -#include +#include #include #include "vertexarray.h" @@ -23,37 +16,58 @@ class Texture2D; class Font { public: - class Loader: public DataFile::Loader + class Loader: public DataFile::CollectionObjectLoader { - private: - Font &font; - DataFile::Collection *coll; - public: - typedef DataFile::Collection Collection; - Loader(Font &); - Loader(Font &, DataFile::Collection &); - Font &get_object() { return font; } - DataFile::Collection &get_collection(); + Loader(Font &, Collection &); + private: void init(); - void texture(const std::string &); void glyph(unsigned); + void texture(); + void texture_ref(const std::string &); + }; + +private: + struct Glyph + { + class Loader: public Msp::DataFile::ObjectLoader + { + public: + Loader(Glyph &); + private: + void texcoords(float, float, float, float); + }; + + unsigned code; + float x1,y1; + float x2,y2; + float w,h; + float off_x, off_y; + float advance; }; + typedef std::map GlyphMap; + + RefPtr texture; + float native_size; + float ascent; + float descent; + GlyphMap glyphs; + +public: Font(); - void set_texture(const Texture2D &); + void set_texture(const Texture2D &); const Texture2D &get_texture() const; - void add_glyph(unsigned, float, float, float, float, float, float, float, float, float); - float get_default_size() const { return default_size; } + void add_glyph(unsigned, float, float, float, float, float, float, float, float, float); + float get_native_size() const { return native_size; } + float get_default_size() const { return native_size; } // Deprecated float get_ascent() const { return ascent; } float get_descent() const { return descent; } + float get_string_width(const std::string &, Codecs::Decoder &) const; - void draw_glyph(unsigned); - void draw_string(const std::string &, Codecs::Decoder &) const; - void draw_string(const std::string &, Codecs::Decoder &, PrimitiveBuilder &) const; template float get_string_width(const std::string &str) const @@ -65,6 +79,9 @@ public: float get_string_width(const std::string &str) const { return get_string_width(str); } + void draw_string(const std::string &, Codecs::Decoder &) const; + void draw_string(const std::string &, Codecs::Decoder &, PrimitiveBuilder &) const; + template void draw_string(const std::string &str) const { @@ -86,35 +103,7 @@ public: { return draw_string(str, pb); } private: - struct Glyph - { - class Loader: public Msp::DataFile::Loader - { - public: - Loader(Glyph &); - Glyph &get_object() { return glyph; } - private: - Glyph &glyph; - - void texcoords(float, float, float, float); - }; - - unsigned code; - float x1,y1; - float x2,y2; - float w,h; - float off_x, off_y; - float advance; - }; - typedef std::map GlyphMap; - - const Texture2D *tex; - float default_size; - float ascent; - float descent; - GlyphMap glyphs; - - void create_glyph_vertices(const Glyph &, VertexBuilder &, float) const; + void create_glyph_vertices(const Glyph &, VertexBuilder &) const; float get_glyph_advance(unsigned) const; };